ewu,
We are all very active people with very full lives. In a little while, I'll be able to look at your upload.
In the meantime, help us to help you by carrying out, precisely as written:
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 OR Custom build. Ř 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.
With
Speccy, you can select with your mouse/touchpad info from the display
and paste that info into your specs.
SIW is a marvelous program, but the free version does not offer
this capability.
====================================
====================================
Run this little script which will put a file called MySystem.TXT on your desktop. This will help you "fill in some info blanks".
# 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)
# STEP 2 ** COPY AND PASTE
COPY the script using CTRL+C,
PASTE into Powershell
---Right-Click at the PowerShell Prompt
---(Ctrl+V does not work)
WIN key = key with Microsoft logo on top
===============================
================================
Script:
$obj = new-object -typename PSobject
$bios = gwmi win32_bios
$cs = gwmi Win32_ComputerSystem
$CSprod = gwmi Win32_ComputerSystemProduct
$os = gwmi win32_operatingsystem
$obj | add-member -membertype noteproperty -name "Operating System" -value ($os.caption + " " + $os.csdversion + " " + $os.osarchitecture) -passthru |
add-member -membertype noteproperty -name "Computer" -value ($cs.manufacturer + " " + $cs.model + " || " + $csprod.version + " || " + $cs.systemtype) -passthru |
add-member -membertype noteproperty -name "BIOS Version, date, name" -value ($bios.smbiosbiosversion + "--" + $bios.converttodatetime($bios.releasedate) + "--" + $bios.name) -passthru |
fl > $env:userprofile\desktop\MySystem.txt
EXIT
EXIT
========================