I run nighly .bat files which handle needed tasks. Will windows 10 eventually interrupt them while they are running for an automatic restart in order to install updates? Or is it smart enough to see something is going on and waits for a better moment?
Asked
Active
Viewed 315 times
1 Answers
1
It will absolutely interrupt and restart! There are always processes running on computers, so it interrupts all of those as well without a care in the world. The workaround is add 2 lines to your batch file to temporarily turn off the Update service..
net stop “windows update” (at the beginning of the batch) net start “windows update” (at the end of the batch)
Joshua Shourds
- 152
- 6