答案1
我决定将我的评论转换为答案,以防链接失效并获得更好的可见性。
如果您想关闭 Windows 10 升级窗口,您需要逐一执行以下步骤,直到它不再困扰您:
单击系统托盘中的自定义并关闭获取 Windows 10 应用程序通知。
转到 Windows 更新并卸载
KB3035583
使用“开始”搜索或按 WIN + R 并将其粘贴到字段中来打开 regedit.exe。然后向下浏览到以下键,如果不存在则创建它:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Gwx
到达那里后,在右侧创建一个名为 DisableGwx 的新 32 位 DWORD 值,并将其值设为 1
答案2
今年是 2018 年,我继续处理这个问题——因为我很贪心,我想吃蛋糕并保留它。也就是说,我想继续使用 Windows 8.1,并保持 Windows 10 升级优惠可用——没有烦人的窗口一直占据我的桌面。
我已经解决了这个问题自动热键脚本。它会捕获不需要的窗口(无论是在弹出时还是立即弹出,如果它已经存在)并自动最小化到托盘。您可以稍后随时双击它以再次显示窗口或再次隐藏它。(您可以修改此解决方案以适用于任何窗口,而不仅仅是 Windows 升级。)它的外观如下:
安装AutoHotkey,将以下脚本保存到你的启动文件夹– 只要你愿意,你可以忘记 Windows 升级无需取消它。这样你就可以两全其美了。你只需要编辑appWinTitle
并appWinText
反映你的 Windows 语言。
; win10killer.ahk
; Minimise Windows 10 upgrade notice to tray.
;
; Based on:
; https://autohotkey.com/board/topic/124024-minimize-to-tray/
; https://www.reddit.com/r/AutoHotkey/comments/33djss/help_minimize_to_tray/
; 2018-02-01
#Persistent
appPath = C:\Windows\System32\wuauclt.exe
appWinTitle = Windows Update ahk_exe wuauclt.exe ; Change this to your language.
appWinText = Start the upgrade now ; Change this to your language.
appName = Windows 10 upgrade notice ; Arbitrary description.
hwnd =
ModifyAutohotkeyTrayIconAndMenu()
CaptureWindowAndMinimizeToTray()
WinWaitClose ahk_id %hwnd% ; Intended to wait forever.
MsgBox,,, %appName% was closed. Quitting script., 1 ; Should never happen.
ExitApp ; Should never happen.
TrayClick:
OnTrayClick()
return
ModifyAutohotkeyTrayIconAndMenu() {
global appPath, appName
Menu Tray, Icon, %appPath% ; Borrow icon from the upgrade executable.
Menu Tray, Add, Show/hide %appName%, TrayClick
Menu Tray, Default, Show/hide %appName%
}
CaptureWindowAndMinimizeToTray() {
global hwnd
global appPath, appWinTitle, appWinText
DetectHiddenWindows On
WinWait,, %appWinText% ; or: WinWait, %appWinTitle%
hwnd := WinExist()
WinHide ahk_id %hwnd%
}
OnTrayClick() { ; Show/hide target window on double click
global hwnd
if DllCall("IsWindowVisible", "Ptr", hwnd)
WinHide ahk_id %hwnd%
else {
WinShow ahk_id %hwnd%
WinActivate ahk_id %hwnd%
}
}
帮助人们找到此页面的关键字:“Windows 升级 | 您的升级已准备好安装 | 保存您的工作并保持 PC 插入电源并打开。升级可能需要一段时间,但我们会在升级完成后通知您。| 安排稍后升级 / 立即开始升级。”