I want to install 10 Windows patches
I wrote the batch file as follows:
@echo off
cd c:\windowspatch
start windows-x86-0210 -p -f
start windows-x86-0211 -p -f
start windows-x86-0212 -p -f
........
start windows-x86-0220 -p -f
cd d:\
@echo Installation complete
When installing, all 10 patches run at once, so they can't be installed
How can I make these patches install one by one
Please, experts, answer
I wrote the batch file as follows:
@echo off
cd c:\windowspatch
start windows-x86-0210 -p -f
start windows-x86-0211 -p -f
start windows-x86-0212 -p -f
........
start windows-x86-0220 -p -f
cd d:\
@echo Installation complete
When installing, all 10 patches run at once, so they can't be installed
How can I make these patches install one by one
Please, experts, answer
