Use Web Services in MDT 2013
Applies To: Windows 8.1
In this topic, you will learn how to create a simple web service that generates computer names and then configure the Microsoft Deployment Toolkit (MDT) 2013 to use that service during your Windows 8.1 deployment. Web services provide a powerful way to assign settings during a deployment. Simply put, web services are web applications that run code on the server side, and MDT 2013 has built-in functions to call these web services.
Using a web service in MDT is straightforward, but it does require that you have enabled the Web Server (IIS) role on the server. Developing web services involves a little bit of coding, but for most web services used with MDT, you can use the free Microsoft Visual Studio Express 2013 for Web.
In this topic
Create a sample web service
Create an application pool for the web service
Install the web service
Test the web service in Internet Explorer
Test the web service in the MDT simulation environment
See also
Create a sample web service
In these steps we assume you have installed Microsoft Visual Studio Express 2013 for Web on PC0001 (the Windows 8.1 client) and downloaded the MDT Sample Web Service from the Microsoft Download Center and extracted it to C:\Projects.
On PC0001, using Visual Studio Express 2013 for Web, open the C:\Projects\MDTSample\ MDTSample.sln solution file.
On the ribbon bar, verify that Release is selected.
In the Debug menu, select the Build MDTSample action.
On MDT01, create a folder structure for E:\MDTSample\bin.
From PC0001, copy the C:\Projects\MDTSample\obj\Release\MDTSample.dll file to the E:\MDTSample\bin folder on MDT01.
From PC0001, copy the following files from C:\Projects\MDTSample file to the E:\MDTSample folder on MDT01:
Web.config
mdtsample.asmx
Figure 15. The sample project in Microsoft Visual Studio Express 2013 for Web.
Create an application pool for the web service
This section assumes that you have enabled the Web Server (IIS) role on MDT01.
On MDT01, using Server Manager, install the IIS Management Console role (available under Web Server (IIS) / Management Tools).
Using Internet Information Services (IIS) Manager, expand the MDT01 (CONTOSO\Administrator) node. If prompted with the “Do you want to get started with Microsoft Web Platform …” question, select the Do not show this message check box and then click No.
Right-click Application Pools, select Add Application Pool, and configure the new application pool with the following settings:
Name: MDTSample
.NET Framework version: .NET Framework 4.0.30319
Manage pipeline mode: Integrated
Select the Start application pool immediately check box.
Click OK.
Figure 16. The new MDTSample application.
Install the web service
On MDT01, using Internet Information Services (IIS) Manager, expand Sites, right-click Default Web Site, and select Add Application. Use the following settings for the application:
Alias: MDTSample
Application pool: MDTSample
Physical Path: E:\MDTSample
Figure 17. Adding the MDTSample web application.
In the Default Web Site node, select the MDTSample web application, and in the right pane, double-click Authentication. Use the following settings for the Authentication dialog box:
Anonymous Authentication: Enabled
ASP.NET Impersonation: Disabled
Figure 18. Configuring Authentication for the MDTSample web service.
Test the web service in Internet Explorer
On PC0001, using Internet Explorer, navigate to: http://MDT01/MDTSample/mdtsample.asmx.
Click the GetComputerName link.
Figure 19. The MDT Sample web service.
On the GetComputerName page, type in the following settings, and click Invoke:
Model: Hewlett-Packard
SerialNumber: 123456789
Figure 20. The result from the MDT Sample web service.
Test the web service in the MDT simulation environment
After verifying the web service using Internet Explorer, you are ready to do the same test in the MDT simulation environment.
On PC0001, edit the CustomSettings.ini file in the C:\MDT folder to look like the following:
[Settings] Priority=Default, GetComputerName [Default] OSInstall=YES [GetComputerName] WebService=http://mdt01/MDTSample/mdtsample.asmx/GetComputerName Parameters=Model,SerialNumber OSDComputerName=string
Figure 21. The updated CustomSettings.ini file.
Save the CustomSettings.ini file.
Using an elevated Windows PowerShell prompt (run as Administrator), run the following commands. Press Enter after each command:
Set-Location C:\MDT .\Gather.ps1
Review the ZTIGather.log in the C:\MININT\SMSOSD\OSDLOGS folder.
Figure 22. The OSDCOMPUTERNAME value obtained from the web service.