REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /d "00000001" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /d "00000001" /t REG_DWORD /f
**********************************************************************
https://forum.gamer.com.tw/C.php?bsn=60030&snA=505189
在左側的服務與應用程式上左鍵連點兩下,再點選服務,至右邊服務清單中找到 Background Intelligent Transfer Service 停止服務
使用批次檔停用 Windows 更新服務
複製下方斜線中的黃色底色內容貼到記事本,存成 bat 檔,以系統管理員權限執行:
///////////////////////////////////////////////sc stop wuauserv
sc stop BITS
sc config wuauserv start= disabled
sc config BITS start= disabled
如果要恢復 Windows 更新服務,複製下方斜線中的黃色底色內容貼到記事本,存成 bat 檔,以系統管理員權限執行:
///////////////////////////////////////////////sc config wuauserv start= autosc config BITS start= autosc start wuauservsc start BITS///////////////////////////////////////////////
*************************************************************************
https://zillowtech.com/disable-automatic-updates-windows-10-home.html
navigate to the following key.
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU***************************************************************************
http://mytoregistry.blogspot.com/2018/10/wsus-server.html
開啟或關閉 WSUS server
公司如果有一台 WSUS server, 可減少電腦 update十 需要回問 微軟主機
還可以 控制電腦安裝更新, 避免有些更新會造成全面性問題
例如: 之前 win10 update 造成 Epson 點矩陣印表機無法使用
寫法:
開啟對應WSUS:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"="http://WSUS IP:8530"
"WUStatusServer"="http://WSUS IP:8530"
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoUpdate"=dword:00000000
"AUOptions"=dword:00000003
"UseWUServer"=dword:00000001
還可以 控制電腦安裝更新, 避免有些更新會造成全面性問題
例如: 之前 win10 update 造成 Epson 點矩陣印表機無法使用
寫法:
開啟對應WSUS:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"="http://WSUS IP:8530"
"WUStatusServer"="http://WSUS IP:8530"
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoUpdate"=dword:00000000
"AUOptions"=dword:00000003
"UseWUServer"=dword:00000001
-------------------------------------------------------------------------------------
關閉對應WSUS:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"=-
"WUStatusServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoUpdate"=-
"AUOptions"=-
"UseWUServer"=-
-------------------------------------------------------------------------------------
WSUS IP 是指 內部 WSUS server IP
port: 8530 (內定)
你可以用 telnet WSUS IP 8530 去測試是否開啟
****************************************************************************************************************
電腦 Windows-手動設定更新wsus主機(2)
使用cmd,讓client與WSUS更新
將以下內容存成wsus-update.cmd,在client上以系統管理者執行。
WUServer、WUStatusServer請更換成WSUS Server的IP
net stop wuauserv
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUServer" /d "http://192.168.1.1:8530" /t REG_SZ /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUStatusServer" /d "http://192.168.1.1:8530" /t REG_SZ /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "UseWUServer" /d "00000001" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /d "00000000" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /d "00000002" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallDay" /d "00000000" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallTime" /d "00000003" /t REG_DWORD /f
net start wuauserv
wuauclt /resetauthorization /detectnows
wuauclt /detectnow
wuauclt /reportnow
pause
======
參數說明:
數值名稱:NoAutoUpdate
數值資料:0 或 1
0: 啓用自動更新(預設)。
1: 禁用自動更新。
註冊表數值類型:Reg_DWORD
數值名稱:AUOptions
數值資料:1 到 4
1: 自動更新中的“保持我的電腦最新”已被禁用。
2: 提醒下載和安裝。
3: 自動下載並提醒安裝。
4: 自動下載並自動執行計劃的安裝。
註冊表數值類型:Reg_DWORD
數值名稱:ScheduledInstallDay
數值資料:0 到 7
0: 每天。
1 到 7:一周的每一天,從周日 (1) 到周六 (7)。
註冊表數值類型:Reg_DWORD
數值名稱:ScheduledInstallTime
數值資料:n,其中 n 以 24 小時形式表示的一天中的時間 (0-23)。
註冊表數值類型:Reg_DWORD
數值名稱:UseWUServer
數值資料:將此值設置爲 1,則自動更新將使用正運行軟體更新服務而不是 Windows 更新的伺服器。
註冊表數值類型:Reg_DWORD
數值名稱:RescheduleWaitTime
數值資料:m,其中 m 等於從自動更新啓動之後到它開始安裝已經錯過計劃時間的安裝之前要等待的時間(以分鐘爲單位,1-60 代表 1 分鐘到 60 分鐘)。
註冊表數值類型:Reg_DWORD
注意:用戶端更新爲 SUS SP1 用戶端版本或更高版本後,此設置僅影響用戶端行爲。
數值名稱:NoAutoRebootWithLoggedOnUsers
數值資料:Reg_DWORD:0 (false) 或 1 (true)。如果設置爲 1,當有登錄用戶時,自動更新不會自動重新啓動電腦。
註冊表數值類型:Reg_DWORD
將以下內容存成wsus-update.cmd,在client上以系統管理者執行。
WUServer、WUStatusServer請更換成WSUS Server的IP
======
@echo onnet stop wuauserv
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUServer" /d "http://192.168.1.1:8530" /t REG_SZ /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUStatusServer" /d "http://192.168.1.1:8530" /t REG_SZ /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "UseWUServer" /d "00000001" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /d "00000000" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /d "00000002" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallDay" /d "00000000" /t REG_DWORD /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallTime" /d "00000003" /t REG_DWORD /f
net start wuauserv
wuauclt /resetauthorization /detectnows
wuauclt /detectnow
wuauclt /reportnow
pause
======
參數說明:
數值名稱:NoAutoUpdate
數值資料:0 或 1
0: 啓用自動更新(預設)。
1: 禁用自動更新。
註冊表數值類型:Reg_DWORD
數值名稱:AUOptions
數值資料:1 到 4
1: 自動更新中的“保持我的電腦最新”已被禁用。
2: 提醒下載和安裝。
3: 自動下載並提醒安裝。
4: 自動下載並自動執行計劃的安裝。
註冊表數值類型:Reg_DWORD
數值名稱:ScheduledInstallDay
數值資料:0 到 7
0: 每天。
1 到 7:一周的每一天,從周日 (1) 到周六 (7)。
註冊表數值類型:Reg_DWORD
數值名稱:ScheduledInstallTime
數值資料:n,其中 n 以 24 小時形式表示的一天中的時間 (0-23)。
註冊表數值類型:Reg_DWORD
數值名稱:UseWUServer
數值資料:將此值設置爲 1,則自動更新將使用正運行軟體更新服務而不是 Windows 更新的伺服器。
註冊表數值類型:Reg_DWORD
數值名稱:RescheduleWaitTime
數值資料:m,其中 m 等於從自動更新啓動之後到它開始安裝已經錯過計劃時間的安裝之前要等待的時間(以分鐘爲單位,1-60 代表 1 分鐘到 60 分鐘)。
註冊表數值類型:Reg_DWORD
注意:用戶端更新爲 SUS SP1 用戶端版本或更高版本後,此設置僅影響用戶端行爲。
數值名稱:NoAutoRebootWithLoggedOnUsers
數值資料:Reg_DWORD:0 (false) 或 1 (true)。如果設置爲 1,當有登錄用戶時,自動更新不會自動重新啓動電腦。
註冊表數值類型:Reg_DWORD
n170s0rhglh490 sex doll,dildos,glass dildos,dildos,sex toys,dog dildo,dildos,realistic dildo,realistic dildo d728l3mxyrs406
回覆刪除