windows 7 to 10 reservation not appearing even after script execution.

  • Thread starter Thread starter hexxentanz
  • Start date Start date
H

hexxentanz

Guest
All


I have windows 7 Home Premium with service pack 1, (Lenovo Ideacentre, Genuine windows) and have automatic updates turned on, however, I do not see the windows 10 icon. I ran the below per another discussion, however I do not see the icon though. Is there any alternative way, or ideally, any way to reserve windows 10 outside of the icon?

REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\UpgradeExperienceIndicators" /v UpgEx | findstr UpgEx
if "%errorlevel%" == "0" GOTO RunGWX
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Appraiser" /v UtcOnetimeSend /t REG_DWORD /d 1 /f
schtasks /run /TN "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
:CompatCheckRunning
schtasks /query /TN "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
schtasks /query /TN "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" | findstr Ready
if NOT "%errorlevel%" == "0" ping localhost >nul &goto :CompatCheckRunning
:RunGWX
schtasks /run /TN "\Microsoft\Windows\Setup\gwx\refreshgwxconfig"

Continue reading...
 
Back
Top