ingeborgdot Posted June 3, 2013 Posted June 3, 2013 How do I know if I have a W 8 Pro Full or just the upgrade?
MagicAndre1981 Posted June 3, 2013 Posted June 3, 2013 check the value mediabootinstall in the registry under HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Setup/OOBE/. If the value is 1 you used a full version, if 0 you installed an upgrade.
DosProbie Posted August 9, 2013 Posted August 9, 2013 (edited) I was bored today so I wrote this batch based off of Magic's reply..DP @echo Off&color a&title,[ CHECK IF FULL OR UPGRADE ~DosProbie ]:: ### REG VARIABLES..set regpath=hklm\software\microsoft\windows\currentversion\setup\oobeset regvalue=MediaBootInstallset regdata=1:: ### CHECK REG VALUE FOR OS TYPE..reg query "%regpath%" /v "%regvalue%" | findstr /r "%regdata%">nul 2>&1cls:: ### OUTPUT IF FULL OR UPGRADE..if "%errorlevel%" equ "0" ( echo Your Windows OS is a Full Version!) else ( echo Your Windows OS is a Upgrade Version!):: ### DELAY THEN EXIT..timeout /t 3 /nobreak>nulexit /b /0 Edited August 9, 2013 by DosProbie
Sheldon Posted August 12, 2013 Posted August 12, 2013 You can also Install from the Upgrade Disks, but you must change the 0 to a 1 for a good activation then.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now