amorpheus@lemmy.world to Mildly Infuriating@lemmy.worldEnglish · 2 个月前Modern Windows in a nutshelllemmy.worldimagemessage-square218linkfedilinkarrow-up11.2Karrow-down117
arrow-up11.18Karrow-down1imageModern Windows in a nutshelllemmy.worldamorpheus@lemmy.world to Mildly Infuriating@lemmy.worldEnglish · 2 个月前message-square218linkfedilink
minus-squareEtherWhack@lemmy.worldlinkfedilinkEnglisharrow-up4·2 个月前The ‘keep changing hours’ section in this article works for me whenever I have to use that partition. https://www.thewindowsclub.com/windows-updates-restart-disable You pretty much create the script and have the task scheduler run it hourly. (You should be able to make it silent, though I’ve never bothered for the hourly, half-second cmd blip)
minus-squarewetbeardhairs@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up6·2 个月前I want a script that forces the update servers at Redmond to reboot every hour on the hour
minus-squareSaltySalamander@fedia.iolinkfedilinkarrow-up3·2 个月前 You should be able to make it silent You can make it silent. Create a .vbs file, open it in a text editor, and input the following… Set WshShell = CreateObject(“WScript.Shell”) WshShell.Run chr(34) & “z:\path\to\your\script.cmd” & Chr(34), 0 Set WshShell = Nothing Have your scheduled task run the .vbs, rather than your initial script.
The ‘keep changing hours’ section in this article works for me whenever I have to use that partition.
https://www.thewindowsclub.com/windows-updates-restart-disable
You pretty much create the script and have the task scheduler run it hourly. (You should be able to make it silent, though I’ve never bothered for the hourly, half-second cmd blip)
I want a script that forces the update servers at Redmond to reboot every hour on the hour
You can make it silent. Create a .vbs file, open it in a text editor, and input the following…
Have your scheduled task run the .vbs, rather than your initial script.