Jump to content

Ok for those who have installed every single update, and didn't get the Windows 10 icon in the taskbar? 

I'll show you how to get it

1) Make sure you have this update install: KB3035583

2) Download this http://download1282.mediafire.com/h30cczl0dljg/c0yvv9tar9wod8r/ReserveWin10.cmddirect link

3) Open an elevated Command prompt

4) Put the directory of were the ReserveWin10.cmd is at ex. C:\Users\(UserName ex. John)\Downloads\ReserveWin10.cmd

5) CMD should run and the icon should just appear on the taskbar

 

 

 

Hope this helps!!!!! Good luck!!! :)  :)  :)  :)  :)  :)  :)  :)  :)  :)

 

 

 

Source: http://answers.microsoft.com/en-us/windows/forum/windows_10-win_upgrade/i-want-to-reserve-my-free-copy-of-windows-10-but-i/848b5cce-958b-49ae-a132-a999a883265b

 

 

Credits go to Yaqub_K http://answers.microsoft.com/en-us/profile/9e54c054-5aef-4a17-8cc4-126af45254c7

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/
Share on other sites

Link to post
Share on other sites

Source? or did you come up with this yourself?

Having problems with your fresh Windows 10 install? PM Me!
Windows 10- Want To Disable Telemetry, Disable Cortana, Disable Windows Updates? Look at my guide HERE
LTT Beginners Guide  | Community Standards | TN&R Posting Guidelines

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5122070
Share on other sites

Link to post
Share on other sites

Fixed

Thanks for sharing!

Having problems with your fresh Windows 10 install? PM Me!
Windows 10- Want To Disable Telemetry, Disable Cortana, Disable Windows Updates? Look at my guide HERE
LTT Beginners Guide  | Community Standards | TN&R Posting Guidelines

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5122124
Share on other sites

Link to post
Share on other sites

Still did not fix it for me I ran it and it just got stuck in a loop

from:http://answers.microsoft.com/en-us/windows/forum/windows_10-win_upgrade/i-want-to-reserve-my-free-copy-of-windows-10-but-i/848b5cce-958b-49ae-a132-a999a883265b

 

The Microsoft Compatibility Appraiser can take 10 – 30 minutes to run, during which the script will continuously provide status reports that it is running.  Please be patient.

If the script is failing in an infinite loop, then you don’t have the necessary prerequisite Windows Updates.  Besides requiring Windows 7 SP1 or Windows 8.1 Update, you must also have installed:

For Windows 7 SP1:

KB3035583

KB2952664

For Windows 8.1 Update:

KB3035583

KB2976978

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5122152
Share on other sites

Link to post
Share on other sites

this may fix the loop

from:http://answers.microsoft.com/en-us/windows/forum/windows_10-win_upgrade/i-want-to-reserve-my-free-copy-of-windows-10-but-i/848b5cce-958b-49ae-a132-a999a883265b

 

DavidGX replied on June 1, 2015icon_down.png?ver=5.6.0.67
  • icon_closeicon.png?ver=5.6.0.67
 

icon_reply.png?ver=5.6.0.67 In reply to NathanRB's post on June 1, 2015

Ditto...going round and round

I don't know if mine worked but I changed if NOT "%errorlevel%" == "0" ping localhost >nul &goto :CompatCheckRunning with if NOT "%errorlevel%" == "1" ping localhost >nul &goto :CompatCheckRunning and it CMD said SUCCESS : Attempted to run....and so on

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5122166
Share on other sites

Link to post
Share on other sites

 

this may fix the loop

from:http://answers.microsoft.com/en-us/windows/forum/windows_10-win_upgrade/i-want-to-reserve-my-free-copy-of-windows-10-but-i/848b5cce-958b-49ae-a132-a999a883265b

 

DavidGX replied on June 1, 2015icon_down.png?ver=5.6.0.67
  • icon_closeicon.png?ver=5.6.0.67
 

icon_reply.png?ver=5.6.0.67 In reply to NathanRB's post on June 1, 2015

 

Ditto...going round and round

I don't know if mine worked but I changed if NOT "%errorlevel%" == "0" ping localhost >nul &goto :CompatCheckRunning with if NOT "%errorlevel%" == "1" ping localhost >nul &goto :CompatCheckRunning and it CMD said SUCCESS : Attempted to run....and so on

 

For the second update KB2976978 it says there are two packages

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5122282
Share on other sites

Link to post
Share on other sites

I found the problem put this in as the cmd file I found a fix for it on that forum link:

 

 

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
NOT "%errorlevel%" == "1" ping localhost >nul &goto :CompatCheckRunning 
:RunGWX
schtasks /run /TN "\Microsoft\Windows\Setup\gwx\refreshgwxconfig"
Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5122971
Share on other sites

Link to post
Share on other sites

 

I found the problem put this in as the cmd file I found a fix for it on that forum link:

 

 

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
NOT "%errorlevel%" == "1" ping localhost >nul &goto :CompatCheckRunning 
:RunGWX
schtasks /run /TN "\Microsoft\Windows\Setup\gwx\refreshgwxconfig"

 

so this worked for you and you got the icon?

1st one worked fine for me 

Link to comment
https://linustechtips.com/topic/379028-windows-10-icon-fix/#findComment-5124361
Share on other sites

Link to post
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now

×