Windows 10 でvbscriptまたはレジストリを使用して Microsoft Updateを有効にできます。
次のコンテンツを含むvbsファイルを作成して実行します。
Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
ServiceManager.ClientApplicationID = "My App"
'add the Microsoft Update Service, GUID
Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
または、レジストリを使用して、次の値を追加して修正します。
HKLM \ Software \ Microsoft \ Windows \ CurrentVersion \ WindowsUpdate \ PendingServiceRegistration \ 7971f918-a847-4430-9279-4a52d1efe18d
ClientApplicationID =私のアプリ
RegisterWithAU = 1
または、昇格したコマンドプロンプトを使用して、これらのコマンドの両方を実行して修正します。
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\PendingServiceRegistration\7971f918-a847-4430-9279-4a52d1efe18d" /v "ClientApplicationID" /t REG_SZ /d "My App"
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\PendingServiceRegistration\7971f918-a847-4430-9279-4a52d1efe18d" /v "RegisterWithAU" /t REG_DWORD /d 1
My App
MS Office の価値は何ですか?