Tatertot,
Welcome to SevenForums.
So that your SystemSpecs travel with your posts and are always available, would you please carry out the following:
Update your SevenForums System Specs User CP (located on the top menu bar)
|
Your Profile | Edit System Spec (left-hand column)
To gather info, use
Speccy (my favorite) or SIW or
System Info
In the
System Manufacturer Block, enter: Manufacturer and Model and ADD the word
laptop, desktop, netbook or tablet.
For example:
Toshiba Satellite L305D notebook.
Provide full windows version info, for example:
MS Windows 7 Ultimate SP1 64-bit
Use the “Other Info” block for Optical Reader,
Mouse, touchpad, wifi adapter, speakers, monitor, etc
Scroll down and click on
SAVE CHANGES.
You will find that in Speccy, you can select info from the display
using your mouse/touchpad and then paste that info into your specs.
SIW is a marvelous program, but the free version does not offer
this capability.
====================================================
====================================================
Next time when your computer freezes, if possible:
CTRL + ESC keycombo | type RESMON | ENTER key
Is there an item in red?
If yes, right-click on same and choose "Analyze wait chain".
Work your way down the chain, note the name, and also choose end process.
If still hung, then repeat.
=============================================
Install SPECCY, link in my signature and use same to keep an eye on your temps.
=======================================
=======================================
Attach to your next post, the startup.txt file which the included script places on your desktop.
# **********************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
# ************************************************************
Script:
# ******************************************************************
# 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