为什么我没有获取 Windows 10 图标?

Cho*_*ice 54 windows windows-10-upgrade

我想获得 Windows 10,但在通知区域(托盘)中没有看到此图标:

1

如何获取图标以获取 Windows 10?

Kar*_*ran 47

一如既往,来自Windows 10 常见问题解答

为什么我没有Get Windows 10应用程序?

如果您在 PC 上没有看到“获取 Windows 10”应用,可能是因为:

  1. 您的设备至少未安装最新的 Windows 7 SP1 或 Windows 8.1 更新。
  2. Windows 更新已关闭或未设置为自动接收更新。
  3. 您已阻止或卸载了必要的 Windows 更新功能
  4. 您的设备未运行正版 Windows。

运行 Windows 更新并安装任何可用的更新将解决前三个问题。需要更多帮助?转到我们的Windows 社区论坛

我们确定无法运行 Windows 10 的 PC在 2015 年 7 月 29 日之前不会看到“获取 Windows 10”应用程序。2015 年 7 月 29 日之后,我们将启用系统托盘中的图标。这是为了帮助确保您可以轻松地检查您的 PC 的兼容性(如果您愿意)。

如果您的设备作为学校或企业网络的一部分进行管理,请与您的 IT 管理员联系以了解升级到 Windows 10。

附加信息由对这个 MS 社区问题的回答提供:

如果您认为上面列出的任何条件都不适用于您,并且您仍然没有看到该图标,您还可以尝试运行下面的解决方案,这将验证您的设备是否满足所有先决条件,然后打开获取Windows 10应用程序:

  1. 复制以下文本并将其粘贴到记事本中:

    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"
    
    Run Code Online (Sandbox Code Playgroud)
  2. 将文件另存为“ReserveWin10.cmd”(引号,名称可以是任何内容)。

  3. 打开提升的(管理员)命令提示符并从保存文件的位置运行文件。例如:

    C:\Temp\ReserveWin10.cmd
    
    Run Code Online (Sandbox Code Playgroud)

脚本将一直运行,直到得到答案。

来自http://answers.microsoft.com

Microsoft Compatibility Appraiser 可能需要 10 到 30 分钟才能运行,在此期间脚本将持续提供它正在运行的状态报告。请耐心等待。

如果脚本在无限循环中失败,则您没有必要的 Windows 更新先决条件。 除了需要 Windows 7 SP1 或 Windows 8.1 更新外,您还必须安装:

对于 Windows 7 SP1:

KB3035583

KB2952664

对于 Windows 8.1 更新:

KB3035583

KB2976978

  • 在 PowerShell 中运行以下命令:Get-HotFix -Id KB3035583 如果出错,则说明您没有此更新。@DSaad,您运行的是什么 ** 版本** 的 Windows? (4认同)
  • 我的超极本符合所有要求。我也运行了你的脚本并重新启动,但图标仍然没有出现:( 脚本返回`SUCCESS: Attempted to run schedule task "\Microsoft\Windows\Setup\gwx\refreshgwxconfig"。` (3认同)
  • 我有所有的要求,我也运行了你的脚本,但我无法获得图标。我该怎么办? (2认同)