Injust,
Glad to see the fillled out specs which helped me to eliminate some possibilities.
If you are
- automatically connecting to a router,
- to a network of any kind, including a home network,
- or to the internet
then
for testing purposes, disable, disconnect or whatever and then power on your computer. Is the problem gone?
If the problem is not gone, then restore and:
For testing purposes, turn off your anti-malware software. Is the problem gone?
If not then,
please attach the file that this script will put on your desktop please.
# **********************INSTRUCTIONS**************************
# STEP 1 ** RUN POWERSHELL AS ADMINISTRATOR ******************
# ************************************************************
#
# WIN key | type POWERSHELL | do NOT hit ENTER |
# in the PROGRAMS list, right-click on WINDOWS POWERSHELL |
# choose "Run as administrator" |
# Click on the YES button (if such appears)
#
# WIN key = key with Microsoft log on top
#
# for the guru:
# WIN | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
# ************************************************************
# STEP 2 ** COPY AND PASTE ***********************************
# ************************************************************
#
# COPY the script using CTRL+C,
# COPY every line of script down thru both EXIT statements
#
# PASTE into Powershell
#----Right-Click at the PowerShell Prompt
#----(Ctrl+V does not work)
#
# Start copying with first script line without a # at start of the line
# Note: Actually, you can paste the entire file if you rather
#-------Lines starting with a # are ignored by PowerShell
# ************************************************************
# STEP 3 ** SCRIPT OUTPUT & SCRIPT PURPOSE *******************
# ************************************************************
# --The script output and purpose is given at the very front of the script
#
# --The script output and purpose is given at the very front of the script
#
# ************************************************************
# ***************** NOTE - POWERSHELL VERSION*****************
# if you receive this error msg:
#--The system can not find the path specified
# you may need to update your PowerShell
# you must be using Powershell 2.0 or later.
#
# To determine your Powershell version:
#---Run PowerShell
#---enter $host.version
#---you should see at least:
# Major Minor Build Revision
# ----- ----- ----- --------
# 2......0......-1.....-1
#
# If you do not see the above, update your Vista/Win 7.
# ************************************************************
# *************** NOTE - EXECUTION POLICY*********************
# If you haven't set the execution policy, you may need to:
#---Run PowerShell
#---enter SET-EXECUTIONPOLICY -EXECUTIONPOLICY REMOTESIGNED
# ************************************************************
PHP:
# ******************************************************************
# List of Start Up programs, Installed Programs, and Scheduled Tasks
#
# Puts StartPgms.TXT on your Desktop
# ******************************************************************
$b = gp HKLM:\Software\Microsoft\Windows\CurrentVersion\Run | FL *
$c = gp HKCU:\Software\Microsoft\Windows\CurrentVersion\Run | fl *
$d = gp HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |
Select DisplayName, DisplayVersion, Publisher, InstallDate |
where {($_.Publisher -ne "Microsoft") -AND ($_.Publisher -ne "Microsoft Corporation")} | sort DisplayName | ft -auto -wrap
$q = schtasks.exe /query /V /FO CSV | ConvertFrom-Csv
$r = $q | where {(($_.taskname) | split-path ) -eq "\"} | select taskname, "Scheduled Task State", "Task To Run" |
sort -property @{Expression="Scheduled Task State";Descending=$true}, @{Expression="taskname";Descending=$false}
for ($i= 0; $i -lt $r.count; $i++) {
$r[$i]."Task To Run" = Split-path $r[$i]."Task To Run";
$w = ($r[$i].taskname).substring(1)
$r[$i].taskname = $w
}
$s = $r | select taskname, "Scheduled Task State" | ft -auto
$t = $r | select "Task To Run" | ft
$b + $c + $d + $s + $t > $env:userprofile\desktop\StartPgms.TXT
EXIT
EXIT