Windows Deployment Services (WDS) is a powerful tool that allows network-based installation of Windows operating systems, which can significantly streamline the deployment process in enterprise environments. WDS enables you to deploy Windows to computers without needing physical media, making it a valuable asset for IT administrators who manage large numbers of machines. This article will guide you through the setup and usage of WDS on a Windows Server, highlighting its importance and providing practical examples.
Examples:
Step 1: Install Windows Deployment Services
- Open Server Manager.
- Click on Manage and select Add Roles and Features.
- In the Add Roles and Features Wizard, click Next until you reach the Select server roles page.
- Check the box for Windows Deployment Services and click Next.
- Follow the prompts to install the necessary features and complete the installation.
Step 2: Configure Windows Deployment Services
- Open Server Manager.
- Click on Tools and select Windows Deployment Services.
- In the WDS Management Console, right-click on Servers and select Add Server.
- Choose the local server and click OK.
- Right-click on the server name and select Configure Server.
- Follow the Windows Deployment Services Configuration Wizard:
- Choose Integrated with Active Directory.
- Specify the Remote Installation Folder (e.g.,
C:\RemoteInstall
).
- Choose Respond to all client computers (known and unknown).
Step 3: Add Boot and Install Images
- In the WDS Management Console, expand the server node.
- Right-click on Boot Images and select Add Boot Image.
- Browse to the location of the Windows installation media and select the
boot.wim
file.
- Follow the prompts to add the boot image.
- Repeat the process for Install Images by right-clicking on Install Images and selecting Add Install Image.
- Create an image group and add the
install.wim
file from the Windows installation media.
Step 4: Configure DHCP (if needed)
If your DHCP server is on the same server as WDS, you need to configure DHCP options:
- Open DHCP from Server Manager.
- Right-click on the server and select Properties.
- Go to the Advanced tab and check the box for Enable DHCP options 60.
- Click OK.
Step 5: PXE Boot a Client Machine
- Ensure the client machine is set to boot from the network (PXE boot).
- Restart the client machine and press the appropriate key to enter the boot menu (usually F12).
- Select the network boot option.
- The client machine should now connect to the WDS server and display the boot image selection screen.
- Follow the prompts to install the desired Windows operating system.