12

I want to automate the upgrade of my 2012 R2 servers from standard to datacenter.

However, there is a prompt at the end of the upgrade waiting for a user response. I have thousands of servers to do and cannot press "Y" at the end of it... any ideas how I can get the prompt to accept "Y" or "N" ?

enter image description here

Daniel
  • 7,137
lara400
  • 485

2 Answers2

14
/Quiet

Your servers will reboot automatically if no error occured.

OR

/NoRestart

You won't be prompted to reboot.

Source: MSDN

0

Or force the reboot.. at the end if you 'press' Y it equals to reboot command.. so try creating this kind of script:

shutdown -f -r -t 1
aPugLife
  • 287