Deploying Windows 10 Part 1

Size: px
Start display at page:

Download "Deploying Windows 10 Part 1"

Transcription

1 Deploying Windows 10 Part 1 System Center 2012 R2 Configuration Manager SP1 CU2 and MDT 2013 Update 2

2 Creating Windows 10 reference image In my previous post, I have installed and integrated MDT 2013 Update 2 with ConfigMgr 2012 R2 SP1 See post: Installing and Integrating MDT 2013 (Update 2) with ConfigMgr 2012 R2 SP1 In this post we will be working on Windows 10 Deployment and the followings will be covered to Create Windows 10 reference image: Creating MDT New Deployment share Adding Windows 10 Enterprise x64 Full Source Adding Applications Adding Drivers Creating and Modifying Task Sequence for Reference Image Editing the Bootstrap.ini file Configuring the MDT deployment share rules Updating Custom Background Image Update the deployment share Build the Windows 10 reference image Setting up MDT Lab Deployment Share Create the MDT Lab deployment share Open the Deployment Workbench

3 From the Deployment Workbench, right-click Deployment Shares and select New Deployment Share On Path screen, specify the Deployment share path: In my case E:\MyMDTLab and click Next On Share page, provide the UNC share name: In my case MyMDTLab$ and click Next

4 Specify the Deployment share description: My MDT Lab and click Next

5 Customize the deployment wizard behavior, select desired option. These settings can be changed later on using the Rules from deployment share and click Next

6 Review the summary page and click Next

7 Progress

8 Click on Finish once done

9 PowerShell script can be used to create the deployment share [New-SmbShare -Name "MyMDTLab$" -Path "E:\MyMDTLab" -FullAccess Administrators Import-Module "E:\Program Files\Microsoft Deployment Toolkit\bin\MicrosoftDeploymentToolkit.psd1" new-psdrive -Name "DS001" -PSProvider "MDTProvider" -Root "E:\MyMDTLab" -Description "My MDT Lab" -NetworkPath "\\SC12-CAS-01\MyMDTLab$" -Verbose add-mdtpersistentdrive -Verbose]

10 My MDT Lab share has been created, now it is ready to add Operating Systems, Applications, Drivers and Task Sequences to capture and deploy images from MDT Workbench Folder structure of MDT share Verify that you can access the \\SC12-CAS-01\MyMDTLab$ share Configure permissions for the deployment share In order to write the reference image back to the deployment share, grant/modify permissions to the MDT Admin Account (MDT.Admin) for the Captures subfolder in the E:\MyMDTLab folder

11 Modify the NTFS permissions for the E:\MyMDTLab\Captures folder by running the following command in an elevated Windows PowerShell prompt: icacls E:\MyMDTLab\Captures /grant '"MDT.Admin":(OI)(CI)(M)' Or right click on Capture folder, open properties and manually grant required permissions

12 Adding Windows 10 Source Add Windows 10 Enterprise x64 (full source) installation files I have copied the content of a Windows 10 Enterprise x64 ISO to the E:\SourceCode\Windows 10 Ent x64 folder. From Deployment Workbench, expand the Deployment Shares node Right-click the Operating Systems node and create a New folder Specify the folder name, in my case Windows 10 and type folder comment if any in comment box

13 On Summary page click Next

14 Click Finish You can view the PowerShell script by clicking on view script tab. This script can be used to perform same steps later on using PS.

15 Expend the Operating Systems node, right-click on Windows 10 folder, and select Import Operating System On OS type page choose Full set of source files and click Next

16 On Source page, specify the Source directory where Windows 10 full source files are copied. In my case E:\SourceCode\Windows 10 Ent x64 and click Next

17 Specify the Destination directory name Windows10Entx64 and click Next

18 Review the summary page and click Next to start importing the Windows 10

19 Files are being copied. Click Finish once completed

20 In case you would like to use PowerShell script. Click on view script and save it as.ps1 file for later use [Import-Module "E:\Program Files\Microsoft Deployment Toolkit\bin\MicrosoftDeploymentToolkit.psd1" New-PSDrive -Name "DS001" -PSProvider MDTProvider -Root "E:\MyMDTLab" import-mdtoperatingsystem -path "DS001:\Operating Systems\Windows 10" -SourcePath "E:\SourceCode\Windows 10 ENT X64" -DestinationFolder "Windows10Entx64" -Verbose] By default when you import the OS source the Name will be too lengthy.just rename it to short one. From Deployment Workbench, Operating Systems Node, Windows 10 folder, double-click the newly added operating system name

21 Change the name to the following: Windows 10 Enterprise Eval x64 Default Image. Click OK Adding Applications to MDT Build Lab share Before creating the MDT task sequence, add all of the applications and other sample scripts to the MDT Build Lab share. We will add the following applications to MDT Build Share Install - Microsoft Office 2013 Pro Plus - x86 Install - Microsoft Silverlight x64 Install - Microsoft Visual C SP1 - x86 Install - Microsoft Visual C SP1 - x64 Install - Microsoft Visual C SP1 - x86 Install - Microsoft Visual C SP1 - x64 Install - Microsoft Visual C SP1 - x86 Install - Microsoft Visual C SP1 - x64 Install - Microsoft Visual C Update 4 - x86 Install - Microsoft Visual C Update 4 - x64

22 I have downloaded the software source files to the E:\SourceCode\Apps folder. We will add an application using the UI; we will use Windows PowerShell to add remaining application as MDT supports PowerShell. All the Microsoft Visual C++ downloads can be downloaded from Microsoft Support page: Add the Microsoft Office Professional Plus 2013 x86 installation files From Deployment Workbench, right click on Applications, Click on New Folder Type folder name as Microsoft and click Next All MS related applications will be created under this folder.

23 Click Next on summary page

24 Click Finish

25 Create the Install: Microsoft Office Professional Plus 2013 x86 From Deployment Workbench, Expend the Applications node, right click on Microsoft Folder and click New Application On Application Type Page, choose Application with Source Files and click Next

26 On Details page, provide the Name of Application, Publisher, and Version Click Next

27 Click on Browse and specify the source directory and click Next

28 Specify the destination directory name to be created and click Next

29 Type the Installation command line to be executed while application installation during task sequence Click Next

30 Review the summary and click Next

31 Application is being created

32 Click Finish

33 Review the newly created MS Office 2013 Application In Deployment Workbench Customize the Office installation using a Config.xml file To Create another Application, follow the same steps as performed above. Adding - Install - Microsoft Visual C SP1 - x86 From Deployment Workbench, Expend the Applications node, right click on Microsoft Folder and click New Application On Application Type Page, choose Application with Source Files and click Next

34 On Details page, provide the Name of Application, Publisher, and Version Click Next Click on Browse and specify the source directory and click Next

35 Specify the Destination directory name to be created and click Next

36 Type the Installation command line to be executed while application installation during task sequence Click Next

37 Click Next

38 Click Finish Click on View Script to save the PS file for other applications.

39 Import Remaining Applications using PowerShell Script Import the MDT Module and Map the MDT share PSDrive using following PS command Open PowerShell window and type the PS command. This will create Install - Microsoft Visual C SP1 - x86 Application

40 Follow the same PS script for remaining applications. Just modify the application source location, name of application and command line. Install - Microsoft Visual C SP1 - x86 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x86" -ShortName "Install - Microsoft Visual C x86" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x86.exe /Q" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x86" -ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2005\x86" -DestinationFolder "Install - Microsoft Visual C x86" Verbose] Install - Microsoft Visual C x64 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x64" -ShortName "Install - Microsoft Visual C x64" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x64.exe /Q" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x64" -ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2005\x64" -DestinationFolder "Install - Microsoft Visual C x64" Verbose] Install - Microsoft Visual C x86 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x86" -ShortName "Install - Microsoft Visual C x86" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x86.exe /Q" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x86" -ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2008\x86" -DestinationFolder "Install - Microsoft Visual C x86" Verbose] Install - Microsoft Visual C x64 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x64" -ShortName "Install - Microsoft Visual C x64" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x64.exe /Q" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x64" -ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2008\x64" -DestinationFolder "Install - Microsoft Visual C x64" Verbose] Install - Microsoft Visual C x64 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x64" -ShortName "Install - Microsoft Visual C x64" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x64.exe /Q" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x64" -ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2010\x64" -DestinationFolder "Install - Microsoft Visual C x64" Verbose]

41 Install - Microsoft Visual C x86 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x86" -ShortName "Install - Microsoft Visual C x86" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x86.exe /Q" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x86" -ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2010\x86" -DestinationFolder "Install - Microsoft Visual C x86" Verbose] Install - Microsoft Visual C x86 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x86" -ShortName "Install - Microsoft Visual C x86" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x86.exe /quiet /norestart" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x86" - ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2012\x86" -DestinationFolder "Install - Microsoft Visual C x86" Verbose] Install - Microsoft Visual C x64 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x64" -ShortName "Install - Microsoft Visual C x64" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x64.exe /quiet /norestart" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x64" - ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2012\x64" -DestinationFolder "Install - Microsoft Visual C x64" Verbose] Install - Microsoft Visual C x86 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x86" -ShortName "Install - Microsoft Visual C x86" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x86.exe /quiet /norestart" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x86" - ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2013\x86" -DestinationFolder "Install - Microsoft Visual C x86" Verbose] Install - Microsoft Visual C x64 [import-mdtapplication -path "DS001:\Applications\Microsoft" -enable "True" -Name "Install - Microsoft Visual C x64" -ShortName "Install - Microsoft Visual C x64" -Version "" -Publisher "" -Language "" -CommandLine "vcredist_x64.exe /quiet /norestart" -WorkingDirectory ".\Applications\Install - Microsoft Visual C x64" - ApplicationSourcePath "E:\SourceCode\Apps\VisualC++ Source\VC2013\x64" -DestinationFolder "Install - Microsoft Visual C x64" Verbose] Now we have all required applications which will be used during our Window 10 image build

42 Adding Drivers We will add required Drivers. If you are using Hyper-V for your test environment than you don t have to add drivers when creating reference images for Windows 10. Windows Preinstallation Environment (Windows PE) already has all the needed drivers built-in for Hyper-V. From Deployment Workbench, right click on Out-of-Box Drivers and click Import Drivers Specify the source directory where drivers are copied, in my lab, driver source are copied to E:\Packages\Drivers folder. Click Next

43 Review summary and click Next

44 Click Finish

45 All required drivers have been added now

46 Create Task Sequence for Reference Image Creating the Task Sequence for Windows 10 Enterprise From Deployment Workbench in the My MDT Lab deployment share, right-click Task Sequences, and create a New Folder named Windows 10. Right-click the New Windows 10 folder and select New Task Sequence On General Settings Page Specify the Task sequence ID: REFWIN10X64-01 Task sequence name: Windows 10 Enterprise x64 Default Image Task sequence comments: Default reference Build Click Next

47 On Select Template page, select Standard Client Task Sequence template Click Next

48 On Select OS page, select the default Windows 10 Enterprise Eval x64 Default Image Click Next

49 Select Do not specify a product key at this time and click Next

50 Type the information Full Name, Organization, and Internet Explorer home page Click Next

51 Select Do not specify an Administrator Password at this time and Click Next

52 Review the summary page and click Next if all looks good

53 Click Finish

54 Our Task Sequence is ready now. Edit the Windows 10 task sequence From Deployment Workbench Right-click the Windows 10 Enterprise x64 Default Image task sequence, and select Properties

55 Task Sequence properties will open On the Task Sequence tab, configure the Windows 10 Enterprise x64 Default Image task sequence a. State Restore. Enable the Windows Update (Pre-Application Installation) action by going to the Options tab and clearing the Disable this step check box. b. State Restore. Enable the Windows Update (Post-Application Installation) action by going to the Options tab and clearing the Disable this step check box.

56 c. State Restore. After the Tattoo action, add a new Group action:

57 Group Name: Custom Tasks (Pre-Windows Update) d. State Restore. After Windows Update (Post-Application Installation) action, rename Custom Tasks to Custom Tasks (Post-Windows Update)

58 e. State Restore / Custom Tasks (Pre-Windows Update). Add a new Install Roles and Features action Click on Add, go to Roles and select Install Roles and Features Type the Name: Install - Microsoft NET Framework Select the operating system for which roles are to be installed: Windows 10 Select the roles and features that should be installed:.net Framework 3.5 (includes.net 2.0 and 3.0)

59 f. State Restore - Custom Tasks (Pre-Windows Update). After the Install - Microsoft NET Framework action, add a new Install Application action with the following settings: Click on Add, go to General and select Install Application Type the Name: Install - Microsoft Visual C SP1 - x86 Select Install a Single Application and click on Browse and choose Install - Microsoft Visual C SP1 - x86

60 Click OK g. Repeat the previous step (Click on Add, go to General and select Install Application) to add the following applications:

61 Install - Microsoft Silverlight x64 Install - Microsoft Visual C SP1 - x86 Install - Microsoft Visual C SP1 - x64 Install - Microsoft Visual C SP1 - x86 Install - Microsoft Visual C SP1 - x64 Install - Microsoft Visual C SP1 - x86 Install - Microsoft Visual C SP1 - x64 Install - Microsoft Visual C Update 4 - x86 Install - Microsoft Visual C Update 4 - x64 Install - Microsoft Office 2013 Pro Plus - x86

62 Click OK h. Add a new Restart Computer action after the Install - Microsoft Office 2013 Pro Plus - x86 action Click on Add, go to General and select Restart Computer

63 Add a Suspend action. This is an optional configuration Click on Add, go to General and select Run Command Line Type the Name: Suspend Specify the Command line: cscript.exe %SCRIPTROOT%\LTISuspend.wsf Click OK

64 The LTISuspend.wsf file can be found in Script folder in MyMDTLab share Note: If you need to do some manual configuration, you can add a little-known feature called Lite Touch Installation (LTI) Suspend. If you add the LTISuspend.wsf script as a custom action in the task sequence, it will suspend the task sequence until you click the Resume Task Sequence shortcut icon on the desktop. In addition to using the LTI Suspend feature for manual configuration or installation, you can also use it simply for verifying a reference image before you allow the task sequence to continue and use Sysprep and capture the virtual machine.

65 Edit the Unattend.xml file for Windows 10 Enterprise From Deployment Workbench Right-click the Windows 10 Enterprise x64 Default Image task sequence, and select Properties

66 In the OS Info tab, click Edit Unattend.xml. MDT now generates a catalog file This will take a few minutes, and then Windows System Image Manager (Windows SIM) will start

67

68 In Windows SIM, expand the 4 Specialize node in the Answer File pane and select the amd64_microsoft- Windows-IE-InternetExplorer_neutral entry In the right-hand window, set the required values and make the changes: DisableDevTools, Allowed Sites, Company Name and Home Page Save the Unattend.xml file, and close Windows SIM

69 On the Windows 10 Enterprise x64 Default Image Properties, click OK Configure the MDT deployment share rules From Deployment Workbench, right-click the My MDT Lab deployment share and select Properties

70 Select the Rules tab and click Edit Bootstrap.ini

71 Change the existing values as per below [Settings] Priority=Default [Default] DeployRoot=\\SC12-CAS-01\MyMDTLab$ UserDomain=XPOSURE UserID=MDT.Admin

72 UserPassword=Pas5w0rd SkipBDDWelcome=YES Save the changes in Bootstrap.ini file On the Rules tab Replace Rules with following entries

73 [Settings] Priority=Default [Default] Properties=MyCustomProperty _SMSTSORGNAME=XPOSURE UserDataLocation=NONE DoCapture=YES OSInstall=Y TimeZoneName=Pacific Standard Time JoinWorkgroup=WORKGROUP HideShell=YES FinishAction=SHUTDOWN DoNotCreateExtraPartition=YES WSUSServer= ApplyGPOPack=NO SLSHARE=\\SC12-CAS-01\OSDLogs$ SkipAdminPassword=YES SkipProductKey=YES

74 SkipComputerName=YES SkipDomainMembership=YES SkipUserData=YES SkipLocaleSelection=YES SkipTaskSequence=NO SkipTimeZone=YES SkipApplications=No SkipBitLocker=YES SkipSummary=YES SkipRoles=No SkipCapture=NO SkipFinalSummary=YES Now select Windows PE Tab In the Windows PE tab, in the Platform drop-down list, select x86 in General Tab In the Lite Touch Boot Image Settings area, Change the following configurations Image description: MDT Lite Touch Windows PE (x86) ISO file name: MDT LiteTouchPE_x86.iso

75 In the Windows PE tab, in the Platform drop-down list, select x64 in General Tab In the Lite Touch Boot Image Settings area, Change the following configurations Image description: MDT Lite Touch Windows PE (x64) ISO file name: MDT LiteTouchPE_x64.iso Click OK Updating Custom Background Image In the Windows PE tab, from Windows PE Customization Replace the Custom Background bitmap file with the one you want to display during image install and capture state Location for custom background file:.\program Files\Microsoft Deployment Toolkit\Samples

76 Update the deployment share It s time to Update the Deployment Share. This will create the Windows PE boot images. From the Deployment Workbench, right-click the My MDT Lab deployment share and click Update Deployment Share Select the default option and click Next

77 On Summary page, click Next

78 The update process will take 10 to 15 minutes

79

80 Click Finish

81 PowerShell script: to perform same action [Import-Module "E:\Program Files\Microsoft Deployment Toolkit\bin\MicrosoftDeploymentToolkit.psd1" New-PSDrive -Name "DS001" -PSProvider MDTProvider -Root "E:\MyMDTLab" update-mdtdeploymentshare -path "DS001:" Verbose] Now we have our My MDT Lab fully functional and Windows PE boot ISO images ready to boot the machines to install and capture images. Build the Windows 10 reference image Let s begin to build our test machines and boot from ISO. Copy the E:\MyMDTLab\Boot\MDT LiteTouchPE_x86.iso to your host machines Note: Remember, in MDT you can use the x86 boot image to deploy both x86 and x64 operating system images. That's why you can use the x86 boot image instead of the x64 boot image.

82 Create a virtual machine with the following settings: Name: Windows 10 Reference Build Location: D:\Virtual Machines\... Memory: 4096 MB Network: Host Only(The network that is connected to the same infrastructure as SCCM/MDT is) Hard disk: 60 GB (dynamic disk) Image file:.\my MDT ISO\MDT LiteTouchPE_x86.iso

83 Locate the Lite Touch ISO and mount it Power on the Windows 10 Reference Build Virtual Machine. This will boot into Windows PE

84 Window PE loads the Custom Background Image

85 Processes Bootstrap Settings

86 Processes custom settings

87 Select a Task Sequence to execute on this computer Window appears Select the Windows 10 Enterprise x64 Default Image from the list and click Next

88 On Capture Image page, Select Capture an image of this reference computer and specify the Location and File Name Location: \\SC12-CAS-01\MyMDTLab$\Captures File name: REFW10X64-01.wim Click Next

89 The setup now starts and does the following: Installs the Windows 10 operating system Installs the added applications, roles, and features Updates the operating system via local Windows Server Update Services (WSUS) server Stages Windows PE on the local disk Runs System Preparation (Sysprep) and reboots into Windows PE Captures the installation to a Windows Imaging (WIM) file Turns off the virtual machine Running Lite Touch Installation.

90

91 Computer restarts here and configures settings, this will take 10 to 15 minutes Computer will restart once again to configure Windows and prepare the windows for 1st time this will take minutes

92 Installing Added Applications

93 Computer restarts one more time after installing the applications.. Updates the operating system via local Windows Server Update Services (WSUS) server

94 Finally, Image Installation process has been completed We will get Suspend message as we have added Task Sequence Action to Suspend the Operating System Capture as soon as Installation completes so required changes/customizations can be made into new operating system Click OK Now we have Windows 10 Desktop loaded....make the required customizations/changes you like and click on Resume Task Sequence icon to start Image creation

95

96 Computer restarts here After computer restart Image Capture task starts

97 Path where reference image will be created Image Capture may take an hour or so Once Image is captured, machine will automatically shut down. We have successfully captured the Windows 10 Image and Part 1 is completes here.

98 In my next post we will cover the followings: Deploying Windows 10 Part 2 Deploy Windows 10 with System Center 2012 R2 Configuration Manager Prepare for Zero Touch Installation of Windows 10 with SCCM Create the custom Windows PE boot image Add the Captured Windows 10 image using SCCM Create an application to deploy with Windows 10 Add drivers to a Windows 10 deployment with Windows PE Create a task sequence with Configuration Manager and MDT Deploy Windows 10 using PXE and SCCM Refresh a Windows 7 SP1 client machine with Windows 10 Thank You for reading..!!

Integrating Microsoft Deployment Toolkit 2012 (MDT 2012) in the Dell Factory

Integrating Microsoft Deployment Toolkit 2012 (MDT 2012) in the Dell Factory Microsoft Deployment Toolkit 2012 () User Guide July 2012 to OSD in Dell Factories Microsoft Deployment Toolkit 2012 (MDT) provides a common console with a comprehensive toolset for Operating System Deployments

More information

Deploying Windows 8.1 with ConfigMgr 2012 R2 and MDT 2013

Deploying Windows 8.1 with ConfigMgr 2012 R2 and MDT 2013 Deploying Windows 8.1 with ConfigMgr 2012 R2 and MDT 2013 Windows 8.1 Hands-on lab In this lab, you will learn how to deploy a Windows 8.1 image with ConfigMgr 2012 R2 and MDT 2013. Produced by Deployment

More information

List of Virtual Machines Used in This Lab

List of Virtual Machines Used in This Lab INF204x Module 3 Lab1: Deploying Windows 10 to a New Computer by Using Microsoft Deployment Toolkit Lab: Using Microsoft Deployment Toolkit 2013 Update 1 Preview to Deploy Operating Systems Overview of

More information

Deploying Windows 7 Using MDT UDI

Deploying Windows 7 Using MDT UDI The Microsoft Deployment Toolkit (MDT) supports three types of deployments Zero Touch Installation (ZTI), Lite Touch Installation (LTI), and User Driven Installation (UDI). However each deployment type

More information

Managing Windows-based Dell Wyse Thin Clients using System Center Configuration Manager Administrator s Guide

Managing Windows-based Dell Wyse Thin Clients using System Center Configuration Manager Administrator s Guide Managing Windows-based Dell Wyse Thin Clients using System Center Configuration Manager 2016 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps

More information

Microsoft User Experience Virtualization Deployment Guide

Microsoft User Experience Virtualization Deployment Guide Microsoft User Experience Virtualization Deployment Guide Microsoft User Experience Virtualization (UE-V) is an enterprise-scalable user state virtualization solution that can provide users a consistent

More information

Microsoft Deployment Toolkit

Microsoft Deployment Toolkit Microsoft Deployment Toolkit Agenda MDT Prerequisites Building a Deployment Share Configure New Deployment Share Deployment Share Properties Import Applications Import The OS Image Import The drivers Import

More information

Geeks Guide to BDD 2007 Part 3, Using Zero Touch to deploy Windows Vista

Geeks Guide to BDD 2007 Part 3, Using Zero Touch to deploy Windows Vista Geeks Guide to BDD 2007 Part 3, Using Zero Touch to deploy Windows Vista Welcome BDD 2007, as you probably already know, is End-to-end guidance, best practices, and tools for planning, building, and deploying

More information

Deploying Windows Devices and Enterprise Apps

Deploying Windows Devices and Enterprise Apps Deploying Windows Devices and Enterprise Apps Course 20695B - Five days - Instructor-led - Hands-on Introduction This 5-day instructor-led course describes how to assess operating system and application

More information

20695C: DEPLOYING WINDOWS DESKTOPS AND ENTERPRISE APPLICATIONS

20695C: DEPLOYING WINDOWS DESKTOPS AND ENTERPRISE APPLICATIONS ABOUT THIS COURSE This five-day course describes how to assess operating system and application deployment options, determine the most appropriate deployment strategy, and then implement a deployment solution

More information

Deploying Windows Devices and Enterprise Apps

Deploying Windows Devices and Enterprise Apps Course 20695A: Deploying Windows Devices and Enterprise Apps Course Details Course Outline Module 1: Assessing the Network Environment for Supporting Operating System and Application Deployment This module

More information

"Charting the Course... MOC 6294 A Planning and Managing Windows 7 Desktop Deployments and Environments Course Summary

Charting the Course... MOC 6294 A Planning and Managing Windows 7 Desktop Deployments and Environments Course Summary Course Summary Description This course is intended for desktop administrators who want to specialize in desktop deployment, configuration, and management. In this course, students will learn how to plan

More information

This video is part of the Microsoft Virtual Academy.

This video is part of the Microsoft Virtual Academy. This video is part of the Microsoft Virtual Academy. 1 In this session we re going to talk about building for the private cloud using the Microsoft deployment toolkit 2012, my name s Mike Niehaus, I m

More information

Deploying Windows Desktops and Enterprise Applications

Deploying Windows Desktops and Enterprise Applications Deploying Windows Desktops and Enterprise Applications 20695; 5 Days; Instructor-led Course Description This five-day course describes how to assess operating system and application deployment options,

More information

70-643: Windows Server 2008 Applications Infrastructure. Course 01 - Deploying Windows in the Enterprise

70-643: Windows Server 2008 Applications Infrastructure. Course 01 - Deploying Windows in the Enterprise 70-643: Windows Server 2008 Applications Infrastructure Course 01 - Deploying Windows in the Enterprise Slide 1 Deploying Windows in the Enterprise How to deploy Windows in the 2008 Server Environment

More information

6294A - Planning and Managing Windows 7 Desktop Deployments and Environments

6294A - Planning and Managing Windows 7 Desktop Deployments and Environments 6294A - Planning and Managing Windows 7 Desktop Deployments and Environments Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This five-day instructor-led

More information

Microsoft Plan and Manage Windows 7 Desktop Deployments and Environments

Microsoft Plan and Manage Windows 7 Desktop Deployments and Environments 1800 ULEARN (853 276) www.ddls.com.au Microsoft 6294 - Plan and Manage Windows 7 Desktop Deployments and Environments Length 5 days Price $4290.00 (inc GST) Version A Overview This five-day instructor-led

More information

SCCM 1802 Install Guide using Baseline Media

SCCM 1802 Install Guide using Baseline Media SCCM 1802 Install Guide using Baseline Media By Prajwal Desai This document is a Step-by-Step SCCM 1802 Install guide using Baseline Media. I was waiting for SCCM 1802 baseline media to be released so

More information

Lab: Deploying Operating System Images Using SMS 2003

Lab: Deploying Operating System Images Using SMS 2003 Lab: Deploying Operating System Images Using SMS 2003 Objectives After completing this lab, you will be able to: Install the OS Deployment Feature Pack. Install USMT 2.6 to capture and restore user state

More information

"Charting the Course... MOC C Deploying Windows Desktops and Enterprise Applications. Course Summary

Charting the Course... MOC C Deploying Windows Desktops and Enterprise Applications. Course Summary Course Summary Description This five-day course describes how to assess operating system and application options, determine the most appropriate strategy, and then implement a solution for Windows devices

More information

Deploying Windows 7 Lesson 3

Deploying Windows 7 Lesson 3 Deploying Windows 7 Lesson 3 Objectives Understand enterprise deployments Capture an image file Modify an image file Deploy an image file Understanding Enterprise Deployments Careful planning is required

More information

Implementing a Desktop Infrastructure

Implementing a Desktop Infrastructure Course 20415: Implementing a Desktop Infrastructure Page 1 of 7 Implementing a Desktop Infrastructure Course 20415: 4 days; Instructor-Led Introduction This 4-day instructor-led course provides you with

More information

Microsoft On Demand Courses

Microsoft On Demand Courses Microsoft On Demand Courses Deploying Windows Desktops and Enterprise Applications Who can join this course? This five-day course is for IT professionals who deploy, manage, and maintain PCs, devices,

More information

IMPLEMENTING A DESKTOP INFRASTRUCTURE. Course: 20415A Duration: 5 Days; Instructor-led

IMPLEMENTING A DESKTOP INFRASTRUCTURE. Course: 20415A Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: IMPLEMENTING A DESKTOP INFRASTRUCTURE Course: 20415A Duration: 5 Days; Instructor-led WHAT YOU WILL LEARN This 5-day instructor-led course provides you with

More information

Acronis Backup & Recovery 11 Beta Advanced Editions

Acronis Backup & Recovery 11 Beta Advanced Editions Acronis Backup & Recovery 11 Beta Advanced Editions Quick Start Guide Table of contents 1 Main components... 3 2 Supported operating systems... 3 3 Where do I install the components?... 3 4 What you need

More information

Implementing a Desktop Infrastructure

Implementing a Desktop Infrastructure 20415 - Implementing a Desktop Infrastructure Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This 5-day instructor-led training course provides you

More information

MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration. Chapter 2 Installing Windows Server 2008

MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration. Chapter 2 Installing Windows Server 2008 MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 2 Installing Windows Server 2008 Objectives Describe the improvements and key technologies in deploying Windows

More information

Deploying Windows Desktops and Enterprise Applications. Course Code: 20695D; Duration: 5 days; Instructor-led

Deploying Windows Desktops and Enterprise Applications. Course Code: 20695D; Duration: 5 days; Instructor-led Deploying Windows Desktops and Enterprise Applications Course Code: 20695D; Duration: 5 days; Instructor-led WHAT YOU WILL LEARN This five-day course is intended for IT professionals who deploy, manage,

More information

20695C: Deploying Windows Desktops and Enterprise Applications

20695C: Deploying Windows Desktops and Enterprise Applications 20695C: Deploying Windows Desktops and Enterprise Applications Course Details Course Code: Duration: Notes: 20695C 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Dell Server Deployment Pack Version 2.1 for Microsoft System Center Configuration Manager User's Guide

Dell Server Deployment Pack Version 2.1 for Microsoft System Center Configuration Manager User's Guide Dell Server Deployment Pack Version 2.1 for Microsoft System Center Configuration Manager User's Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better

More information

Geeks Guide to BDD 2007 Part 2, Using Lite Touch to deploy Windows Vista

Geeks Guide to BDD 2007 Part 2, Using Lite Touch to deploy Windows Vista Geeks Guide to BDD 2007 Part 2, Using Lite Touch to deploy Windows Vista Welcome BDD 2007, as you probably already know, is End-to-end guidance, best practices, and tools for planning, building, and deploying

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

More information

Deploying Windows Server 2008 with System Center

Deploying Windows Server 2008 with System Center Windows Server 2008 At a glance: Configuration Manager deployment features Creating and customising a server task sequence Adding server roles Setting computer-specific variables Deploying Windows Server

More information

"Charting the Course... MOC B Implementing a Desktop Infrastructure. Course Summary

Charting the Course... MOC B Implementing a Desktop Infrastructure. Course Summary Course Summary Description This 5-day instructor-led course provides you with the skills and knowledge needed to plan, design, and implement a Windows 8 desktop infrastructure. The course provides guidance

More information

Using System Center 2012 R2 Configuration Manager SP1 to Manage Windows-based HP Thin Clients

Using System Center 2012 R2 Configuration Manager SP1 to Manage Windows-based HP Thin Clients Technical white paper Using System Center 2012 R2 Configuration Manager SP1 to Manage Windows-based HP Thin Clients Windows 10 IoT Enterprise Windows Embedded 8 Standard Windows Embedded Standard 7 Table

More information

Geeks Guide to BDD 2007 Part 4, Deploying XP using Lite Touch

Geeks Guide to BDD 2007 Part 4, Deploying XP using Lite Touch Geeks Guide to BDD 2007 Part 4, Deploying XP using Lite Touch Welcome BDD 2007, as you probably already know, is End-to-end guidance, best practices, and tools for planning, building, and deploying Windows

More information

Microsoft Deploying Windows Desktops and Enterprise Applications

Microsoft Deploying Windows Desktops and Enterprise Applications 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20695 - Deploying Windows Desktops and Enterprise Applications Length 5 days Price $4290.00 (inc GST) Version C Overview This five-day course describes how

More information

6294: Troubleshooting and Supporting Windows 7 in the Enterprise

6294: Troubleshooting and Supporting Windows 7 in the Enterprise Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

Implementing a Desktop Infrastructure

Implementing a Desktop Infrastructure Implementing a Desktop Infrastructure Duration: 5 Days Course Code: 20415 About this course This 5-day instructor-led course provides you with the skills and knowledge needed to plan, design, and implement

More information

Configure Windows Server 2003 Release 2 Server Network File Share (NFS) as an authenticated storage repository for XenServer

Configure Windows Server 2003 Release 2 Server Network File Share (NFS) as an authenticated storage repository for XenServer Summary This document outlines the process to perform the following tasks. 1. Configure Windows Server 2003 Release 2 Server Network File Share (NFS) as an authenticated storage repository for XenServer.

More information

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

Farstone TotalDeploy User Guide

Farstone TotalDeploy User Guide Farstone TotalDeploy User Guide 1 Introduction to TotalDeploy...3 1.1 Overview...3 1.1.1 What is TotalDeploy...3 1.1.2 Who needs TotalDeploy?...3 1.1.3 TotalDeploy infrastructure...3 1.2 What you can do

More information

Martin Vittrup Senior Technology Specialist Windows Client Microsoft Danmark

Martin Vittrup Senior Technology Specialist Windows Client Microsoft Danmark Martin Vittrup Senior Technology Specialist Windows Client Microsoft Danmark mvittrup@microsoft.com SOLUTIONS IMAGING DELIVERY MIGRATION Microsoft Deployment Toolkit Application Compatibility Toolkit

More information

Course Outline. Deploying Windows Devices and Enterprise Apps Course 20695C: 5 days Instructor Led

Course Outline. Deploying Windows Devices and Enterprise Apps Course 20695C: 5 days Instructor Led Deploying Windows Devices and Enterprise Apps Course 20695C: 5 days Instructor Led About this course This five-day course describes how to assess operating system and application deployment options, determine

More information

20695D: Deploying Windows Desktops and Enterprise Applications

20695D: Deploying Windows Desktops and Enterprise Applications 20695D: Deploying Windows Desktops and Enterprise Applications Course Details Course Code: Duration: Notes: 20695D 5 days This course syllabus should be used to determine whether the course is appropriate

More information

AutomaTech Application Note July 2015

AutomaTech Application Note July 2015 Installing Active Directory Domain Services (AD DS), Remote Desktop Services (RDS), GE Advantage Licensing, and GE Proficy SCADA Thin Clients on Windows Server 2012 R2 SUMMARY This application note provides

More information

Automating the Windows 2000 Installation

Automating the Windows 2000 Installation Chapter 2 Automating the Windows 2000 Installation MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER Perform an unattended installation of Windows 2000 Professional. Install Windows 2000 Professional by

More information

List all out-of-the-box drivers currently installed in online WIM

List all out-of-the-box drivers currently installed in online WIM Chapter 3 Deploying System Images Lesson 1: Managing a System Image Before Deployment Retrieving WIM information dism /get-wiminfo /wimfile:w:\myimage.wim imagex /info w:\myimage.wim Mounting/Unmounting

More information

CIS 231 Windows 10 Install Lab # 3

CIS 231 Windows 10 Install Lab # 3 CIS 231 Windows 10 Install Lab # 3 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in

More information

Imaging the HP Z240 Workstation

Imaging the HP Z240 Workstation Technical white paper Imaging the HP Z240 Workstation with Windows 10 Pro (64-bit) and Microsoft Deployment Toolkit (MDT) 2013 v1.2 A system image enables you to automate the deployment of computers in

More information

Lead2pass v12.39

Lead2pass v12.39 Lead2pass.70-681.v12.39 Number: 70-681 Passing Score: 800 Time Limit: 120 min File Version: 12.39 http://www.gratisexam.com/ Copyright @2006-2011 Lead2pass.com, All Rights Reserved. Vendor: Microsoft Exam

More information

MCSE Mobility. A Success Guide to Prepare- Deploying Windows Desktops and Enterprise Applications. edusum.com

MCSE Mobility. A Success Guide to Prepare- Deploying Windows Desktops and Enterprise Applications. edusum.com 70-695 MCSE Mobility A Success Guide to Prepare- Deploying Windows Desktops and Enterprise Applications edusum.com Table of Contents Introduction to 70-695 Exam on Deploying Windows Desktops and Enterprise

More information

ImageAssist Dynamic. User s Guide for Multiple Platforms

ImageAssist Dynamic. User s Guide for Multiple Platforms ImageAssist Dynamic User s Guide for Multiple Platforms Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

INSTALL APP-V 5.1 ON WINDOWS SERVER 2016

INSTALL APP-V 5.1 ON WINDOWS SERVER 2016 INSTALL APP-V 5.1 ON WINDOWS SERVER 2016 In this exercise, I will walk you through the process of installing App-V 5.1 SP1 on Windows Server 2016. I will be installing these roles (Management, Publishing

More information

When Microsoft releases new updates to firmware and drivers, the firmware and driver pack is updated for all Surface models.

When Microsoft releases new updates to firmware and drivers, the firmware and driver pack is updated for all Surface models. Managing Surface Devices in the Enterprise Firmware/Driver Management with System Center Configuration Manager 2012 This article describes how to deploy enterprise-managed firmware and drivers to Surface

More information

Introduction. Implement an operating system deployment infrastructure 1

Introduction. Implement an operating system deployment infrastructure 1 Contents Introduction Microsoft certifications Acknowledgments Free ebooks from Microsoft Press Microsoft Virtual Academy Errata, updates, & book support We want to hear from you Stay in touch Preparing

More information

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client.

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client. CIS 231 Windows 10 Install Lab # 3 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager. User's Guide

Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager. User's Guide Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make

More information

How to Integrate SmartDeploy Enterprise with System Center Configuration Manager

How to Integrate SmartDeploy Enterprise with System Center Configuration Manager How to Integrate SmartDeploy Enterprise with System Center Configuration Manager SmartDeploy Revised: March 2017 Integrating SmartDeploy Enterprise with Microsoft System Center Configuration Manager expands

More information

Deploying the Core Optimized Desktop Using the Microsoft Deployment Toolkit 2010

Deploying the Core Optimized Desktop Using the Microsoft Deployment Toolkit 2010 Deploying the Core Optimized Desktop Using the Microsoft Deployment Toolkit 2010 Microsoft Corporation Published: December 2010 Abstract The optimized desktop enables flexible provisioning and management

More information

Pearson System of Courses

Pearson System of Courses Pearson System of Courses Deploy with Windows Imaging Last updated: June 2018 Copyright 2018 Pearson, Inc. or its affiliates. All rights reserved. Table of Contents Deployment Process Overview 3 Prerequisites

More information

TS: Windows 7 and Office 2010, Deploying

TS: Windows 7 and Office 2010, Deploying 70-681 TS: Windows 7 and Office 2010, Deploying Version 3.1 QUESTION NO: 1 Windows Server 2008 R2. You install Microsoft Deployment Toolkit (MDT) 2010 on a server named Server1. You install Microsoft SQL

More information

This ebook contains affiliate links. Enjoy.

This ebook contains affiliate links. Enjoy. You may distribute this ebook freely, and/or bundle it as a free bonus with other products, as long as it is left completely intact, unaltered and delivered via this PDF file. You may also republish excerpts

More information

Sccm 2012 Manually Copy The Content In This. This Package To The Distribution Point

Sccm 2012 Manually Copy The Content In This. This Package To The Distribution Point Sccm 2012 Manually Copy The Content In This Package To The Distribution Point Documentation Library for System Center 2012 Configuration Manager You must distribute content to distribution points, before

More information

EML10 Best Practces for Implementing Deployment Solution Hands-On Lab

EML10 Best Practces for Implementing Deployment Solution Hands-On Lab EML10 Best Practces for Implementing Deployment Solution Hands-On Lab Description This hands-on lab demonstrates the steps necessary to configure and use the latest version of Deployment Solution. You

More information

Mastering Windows8 7 Deployment

Mastering Windows8 7 Deployment Mastering Windows8 7 Deployment AidanFinn Darril Gibson Kenneth van Surksum WILEY Wiley Publishing, Inc. Contents Introduction xix Chapter l Does Your Hardware Measure Up? l Meet Windows 7 1 Windows 7

More information

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017 Netwrix Auditor Virtual Appliance and Cloud Deployment Guide Version: 9.5 10/25/2017 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide

IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide IBM System x IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide Version 1.0 IBM System x IBM Deployment Pack for Microsoft System Center Configuration

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Site License Installation Guide

Site License Installation Guide Site License Installation Guide Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

Software Center Update Publisher (SCUP) / Software Update Point (SUP) APSCNLAN Support

Software Center Update Publisher (SCUP) / Software Update Point (SUP) APSCNLAN Support Software Center Update Publisher (SCUP) / Software Update Point (SUP) APSCNLAN Support Table of Contents Setup WSUS and SCUP... 1 Setup WSUS for System Center Software Update Point (SUP)... 1 Installing

More information

Exam Questions

Exam Questions Exam Questions 70-686 Pro: Windows https://www.2passeasy.com/dumps/70-686/ 1.u are designing a Windows 7 virtual desktop infrastructure. You have the following requirements:. Provide access to Remote Desktop

More information

Upgrade to Office 365 ProPlus

Upgrade to Office 365 ProPlus Upgrade to Office 365 ProPlus Page 1 Index 1 Purpose of this document... 3 2 Assumptions... 3 3 Create and Distribute Office 365 ProPlus 2016... 5 3.1 Prepare the Office 365 ProPlus installation files

More information

Geeks Guide to BDD 2007 Part 1, Core Configuration

Geeks Guide to BDD 2007 Part 1, Core Configuration Geeks Guide to BDD 2007 Part 1, Core Configuration Welcome BDD 2007, as you probably already know, is End-to-end guidance, best practices, and tools for planning, building, and deploying Windows and Office.

More information

Sccm Manually Restart Pxe Service Point

Sccm Manually Restart Pxe Service Point Sccm Manually Restart Pxe Service Point In my case an unexpected restart was done on a Windows Server 2008 R2 system. When removing PXE service point, clean up disk space, and wait a while (or are migrated

More information

Workshop on Windows Server 2012

Workshop on Windows Server 2012 Workshop on Windows Server 2012 Topics covered on Workshop DHCP Scope Splitting. A Dynamic Host Configuration Protocol (DHCP) split-scope configuration using multiple DHCP servers allows for increased

More information

Optional Lab. Identifying the Requirements. Configuring Windows 7 with virtualization. Installing Windows Server 2008 on a virtual machine

Optional Lab. Identifying the Requirements. Configuring Windows 7 with virtualization. Installing Windows Server 2008 on a virtual machine Optional Lab Appendix D As you go through Microsoft Windows Networking Essentials for the 98-366 exam, you may want to get your hands on Windows Server 2008 and dig a little deeper. That makes sense. While

More information

S/MIME on Good for Enterprise MS Online Certificate Status Protocol. Installation and Configuration Notes. Updated: November 10, 2011

S/MIME on Good for Enterprise MS Online Certificate Status Protocol. Installation and Configuration Notes. Updated: November 10, 2011 S/MIME on Good for Enterprise MS Online Certificate Status Protocol Installation and Configuration Notes Updated: November 10, 2011 Installing the Online Responder service... 1 Preparing the environment...

More information

Set-up Server Features and Roles Once the users are created we will move on to setting up the Internet Information Services (IIS) role on the server.

Set-up Server Features and Roles Once the users are created we will move on to setting up the Internet Information Services (IIS) role on the server. HOW TO: Install and Setup System Center Configuration Manager (SCCM) 2012 SP1 on a Windows Server 2012 Part 1 - Prerequisites In the following three part guide we will be going over how to install and

More information

Deploying a System Center 2012 R2 Configuration Manager Hierarchy

Deploying a System Center 2012 R2 Configuration Manager Hierarchy Deploying a System Center 2012 R2 Configuration Manager Hierarchy This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION

More information

Dell Flexible Computing Solutions: Deploying On-Demand Desktop Streaming

Dell Flexible Computing Solutions: Deploying On-Demand Desktop Streaming Dell Flexible Computing Solutions: Deploying On-Demand Desktop Streaming Product Group November 2007 Dell White Paper November 2007 Contents Introduction... 3 Overview... 4 Planning the Deployment... 5

More information

Install and Manage Windows Nano Server 2016 Step by Step

Install and Manage Windows Nano Server 2016 Step by Step Complete Lab (V2.0) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Table of Contents Lab Objective... 3 Windows Nano Server 2016 overview... 3 Current infrastructure environment...

More information

IBM Endpoint Manager. OS Deployment V3.5 User's Guide

IBM Endpoint Manager. OS Deployment V3.5 User's Guide IBM Endpoint Manager OS Deployment V3.5 User's Guide IBM Endpoint Manager OS Deployment V3.5 User's Guide Note Before using this information and the product it supports, read the information in Notices

More information

Course Outline. Deploying and Managing Windows 10 Using Enterprise Services Course B: 5 days Instructor Led

Course Outline. Deploying and Managing Windows 10 Using Enterprise Services Course B: 5 days Instructor Led Deploying and Managing Windows 10 Using Enterprise Services Course 20697-2B: 5 days Instructor Led Prerequisites: Students should have at least two years of experience in the IT field and should already

More information

Printed and bound in the United States of America. First Printing

Printed and bound in the United States of America. First Printing PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright 2015 by Brian Svidergol No part of the contents of this book may be reproduced

More information

Dell Command Integration Suite for System Center

Dell Command Integration Suite for System Center Dell Command Integration Suite for System Center Version 5.0 User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

Installation Guide. NSi AutoStore TM 6.0

Installation Guide. NSi AutoStore TM 6.0 Installation Guide NSi AutoStore TM 6.0 TABLE OF CONTENTS PREREQUISITES... 3 INSTALLATION: UPGRADING FROM AUTOSTORE 5.0... 4 INSTALLATION: NEW INSTALLATION... 8 LICENSING... 17 GETTING STARTED... 34 2012

More information

Pearson System of Courses (PSC) Deploying PSC with System Center Configuration Manager (SCCM) for Windows

Pearson System of Courses (PSC) Deploying PSC with System Center Configuration Manager (SCCM) for Windows Pearson System of Courses (PSC) Deploying PSC with System Center Configuration Manager (SCCM) for Windows Table of Contents Deployment Process Overview...3 Prerequisites and Assumptions:...4 1. PSC Prerequisites...

More information

Identify Windows Editions and Upgrade Paths

Identify Windows Editions and Upgrade Paths L E S S O N 2. 1 Identify Windows Editions and Upgrade Paths L E S S O N 2. 1 Lesson Overview Identifying Windows editions and upgrade paths. In this lesson, you will: Identify Windows editions Identify

More information

Status Web Evaluator s Guide Software Pursuits, Inc.

Status Web Evaluator s Guide Software Pursuits, Inc. Status Web Evaluator s Guide 2018 Table of Contents Introduction... 2 System Requirements... 2 Contact Information... 2 Installing Microsoft IIS... 2 Verifying Microsoft IIS Features... 9 Installing the

More information

Exam Questions

Exam Questions Exam Questions 70-695 Deploying Windows Devices and Enterprise Apps https://www.2passeasy.com/dumps/70-695/ NEW QUESTION 1 DRAG DROP You need to identify which issue prevents App1 from running. Which four

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

Dell Lifecycle Controller Integration Version 3.0 For Microsoft System Center Configuration Manager User's Guide

Dell Lifecycle Controller Integration Version 3.0 For Microsoft System Center Configuration Manager User's Guide Dell Lifecycle Controller Integration Version 3.0 For Microsoft System Center Configuration Manager User's Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you

More information

Autodesk DirectConnect 2010

Autodesk DirectConnect 2010 Autodesk DirectConnect 2010 Contents Chapter 2 Installing and Licensing...................... 3 Installing Autodesk DirectConnect..................... 3 Software deployment using group policies for Windows.........

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2 VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

Secure Mobile Access Module

Secure Mobile Access Module Secure Mobile Access Module Administration Guide Version 1.0 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800)

More information

Pearson System of Courses (PSC) Deploying PSC with Windows Imaging

Pearson System of Courses (PSC) Deploying PSC with Windows Imaging Pearson System of Courses (PSC) Deploying PSC with Windows Imaging Table of Contents Deployment Process Overview... 3 Prerequisites and Assumptions... 4 Process Blueprint... 4 1. PSC Deployment... 4 a)

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 1 Document Versions: Date Version Description June, 14, 2014 1.0 Initial Release March, 14, 2016 1.1 Minor Changes 2 Installing SCUP 2011: Install WSUS (If needed).

More information

Microsoft Exam Recertification for MCSE: Desktop Infrastructure Version: 5.0 [ Total Questions: 180 ]

Microsoft Exam Recertification for MCSE: Desktop Infrastructure Version: 5.0 [ Total Questions: 180 ] s@lm@n Microsoft Exam 70-982 Recertification for MCSE: Desktop Infrastructure Version: 5.0 [ Total Questions: 180 ] Topic 1, Proseware Inc Microsoft 70-982 : Practice Test Overview Proseware, Inc. is an

More information