0

I am working on the project in which I have decided to install operating system from server PC to all the client PC. I have one windows iso file on the server PC which is shared on the network.

  1. This iso file will be first transfered or copied to all the client pc.
  2. Once the iso file is copied to a specific folder in the client machine I have a batch file which is scheduled to run the setup.exe of the windows.
  3. The setup is started but once the setup is started the windows will be restart.

my problem is once the windows is started how do I control that setup window the setup asks for which language to choose, partition, and other operations....

How should I automate this process without choosing any of the message or how should I pass commands from server to the client so that the I can continue the windows installation.

Is there any way to edit windows file so that it will be take the default language and other options.

Thank-you

LotPings
  • 1,015
  • 7
  • 12
DKB
  • 27
  • 2
  • for windows 10 / Server 2016 look here: https://www.windowscentral.com/how-create-unattended-media-do-automated-installation-windows-10 – marsh-wiggle Jan 10 '19 at 10:22
  • Will it work if I am not using USB. Just simply copying the autounattend.xml in the folder of setup and double click on the setup and start the setup. – DKB Jan 10 '19 at 10:48

1 Answers1

0

In your situation, you should use the Windows Setup Command-Line Options.

In particular, the /unattend switch allows you to specify an answer file to provide the information the Windows Setup GUI would otherwise need to ask for.

Harry Johnston
  • 5,875
  • 4
  • 35
  • 52