English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

7 answers

Right click on MY COMPUTER and pick PROPERTIES. It will indicate what version of WIndows XP and what Service Pack is installed.

Good luck and Happy Computing!

2007-06-15 14:37:46 · answer #1 · answered by Anonymous · 0 0

If you right click on "My Computer" and select "Properties" from the drop down menu, the window that opens up will tell you what OS you are running and what service pack you are running. It will also show you how much RAM is on your system and what type of processor you have.

You can also go to and type WINVER and press enter. A window will pop up giving you the information that you are looking for.

Good Luck,
Captain Computer

2007-06-15 14:43:01 · answer #2 · answered by Captain Computer 4 · 0 0

dont worry about commands, just click start, control panel, system, then the info is displayed. including all hardware info and what version of windows or w/e you are running and the service pack in use.

2007-06-15 14:33:31 · answer #3 · answered by Anonymous · 0 0

Right click on my computer, then click properties. It'll list your os and what service pack version you have.

2007-06-15 14:33:14 · answer #4 · answered by Ice 6 · 0 0

go to start, control panel, and double click on system it will tell you there...cheers

2007-06-15 14:32:38 · answer #5 · answered by skippa 5 · 0 0

Save this as a .bat file , Like Hotfix.bat, it will show you all the service packs and hot fixes installed.

@ECHO OFF
ECHO.

:: Check command line parameter
IF NOT "%1"=="" IF /I NOT "%1"=="/V" GOTO Syntax

:: Check for correct Windows version
IF NOT "%OS%"=="Windows_NT" GOTO Syntax

:: Keep variables local
SETLOCAL

:: /V parameter set verbose display
IF /I "%1"=="/V" SET Verbose=1

:: Gather info from the registry
REGEDIT /E "%Temp%.\Hotfixes.dat" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix"

:: Display header
ECHO Hotfixes installed on this PC:
ECHO.

:: Summarize all hotfixes gathered from registry
FOR /F "tokens=7 delims=\" %%a IN ('TYPE "%Temp%.\Hotfixes.dat" ^| FIND "[HKEY_"') DO FOR /F "tokens=1 delims=]" %%A IN ('ECHO.%%a ^| FIND "]"') DO CALL :Summarize "%%A"

:: Remove temporary file
IF EXIST "%Temp%.\Hotfixes.dat" DEL "%Temp%.\Hotfixes.dat"

:: Done
ENDLOCAL
GOTO:EOF

:Summarize
SETLOCAL
SET Hotfix=%~1
:: No more details required
IF NOT "%Verbose%"=="1" (
ECHO.%Hotfix%
GOTO:EOF
)>> %computername%-Installed-Hotfixs.txt
:: Gather more details from the registry
REGEDIT /E "%Temp%.\Hotfixes.dat" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix\%~1"
:: Retrieve the hotfix description from the temporary file we just created
FOR /F "tokens=1* delims==" %%a IN ('TYPE "%Temp%.\Hotfixes.dat" ^| FIND /I "Fix Description"') DO SET Description=%%~b
:: Escape brackets in the description, otherwise the ECHO command will fail
IF DEFINED Description SET Description=%Description:(=^^^(%
IF DEFINED Description SET Description=%Description:)=^^^)%
:: The whitespace in the following line is a tab
ECHO.%Hotfix% %Description%
ENDLOCAL
GOTO:EOF

:Syntax
ECHO Hotfixes.bat, Version 2.00 for Windows NT 4 / 2000
ECHO Displays a list of hotfixes installed locally
ECHO.
ECHO Usage: HOTFIXES [ /V ]
ECHO.
ECHO /V list both hotfix numbers and descriptions
ECHO.
ECHO
ECHO
GOTO:EOF

2007-06-15 15:10:12 · answer #6 · answered by Andrew-MCSE-MCSA-CCEA-CCA-C|EH 3 · 0 0

go to system in control panel it can tell you there

2007-06-15 14:35:01 · answer #7 · answered by raist64 1 · 0 0

fedest.com, questions and answers