mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-16 10:53:43 +00:00
pull master, fix conflicts
This commit is contained in:
@ -1,115 +1,3 @@
|
|||||||
<<<<<<< HEAD
|
|
||||||
---
|
|
||||||
title: Perform an in-place upgrade to Windows 10 with MDT (Windows 10)
|
|
||||||
description: The simplest path to upgrade PCs that are currently running Windows 7, Windows 8, or Windows 8.1 to Windows 10 is through an in-place upgrade.
|
|
||||||
ms.assetid: B8993151-3C1E-4F22-93F4-2C5F2771A460
|
|
||||||
ms.reviewer:
|
|
||||||
manager: laurawi
|
|
||||||
ms.author: greglin
|
|
||||||
keywords: upgrade, update, task sequence, deploy
|
|
||||||
ms.prod: w10
|
|
||||||
ms.mktglfcycl: deploy
|
|
||||||
ms.localizationpriority: medium
|
|
||||||
ms.sitesec: library
|
|
||||||
ms.pagetype: mdt
|
|
||||||
audience: itpro
|
|
||||||
author: greg-lindsay
|
|
||||||
ms.topic: article
|
|
||||||
---
|
|
||||||
|
|
||||||
# Perform an in-place upgrade to Windows 10 with MDT
|
|
||||||
|
|
||||||
**Applies to**
|
|
||||||
- Windows 10
|
|
||||||
|
|
||||||
The simplest path to upgrade PCs that are currently running Windows 7, Windows 8, or Windows 8.1 to Windows 10 is through an in-place upgrade. You can use a Microsoft Deployment Toolkit (MDT) 2013 Update 2 task sequence to completely automate the process.
|
|
||||||
|
|
||||||
## Proof-of-concept environment
|
|
||||||
|
|
||||||
For the purposes of this topic, we will use four machines: DC01, MDT01, and PC0001. DC01 is a domain controller and MDT01 is a Windows Server 2012 R2 standard machine, fully patched with the latest security updates, and configured as a member server in the fictional contoso.com domain. PC0001 is a machine with Windows 7 SP1, targeted for the Windows 10 upgrade. For more details on the setup for this topic, please see [Deploy Windows 10 with the Microsoft Deployment Toolkit](../deploy-windows-mdt/deploy-windows-10-with-the-microsoft-deployment-toolkit.md).
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Figure 1. The computers used in this topic.
|
|
||||||
|
|
||||||
## Set up the upgrade task sequence
|
|
||||||
|
|
||||||
MDT adds support for Windows 10 deployment, including a new in-place upgrade task sequence template that makes the process really simple.
|
|
||||||
|
|
||||||
## Create the MDT production deployment share
|
|
||||||
|
|
||||||
The steps to create the deployment share for production are the same as when you created the deployment share to create the custom reference image:
|
|
||||||
|
|
||||||
1. On MDT01, log on as Administrator in the CONTOSO domain with a password of <strong>P@ssw0rd</strong>.
|
|
||||||
2. Using the Deployment Workbench, right-click **Deployment Shares** and select **New Deployment Share**.
|
|
||||||
3. On the **Path** page, in the **Deployment share path** text box, type **E:\\MDTProduction**, and then click **Next**.
|
|
||||||
4. On the **Share** page, in the **Share name** text box, type **MDTProduction$**, and then click **Next**.
|
|
||||||
5. On the **Descriptive Name** page, in the **Deployment share** description text box, type **MDT Production**, and then click **Next**.
|
|
||||||
6. On the **Options** page, accept the default settings and click **Next** twice, and then click **Finish**.
|
|
||||||
7. Using File Explorer, verify that you can access the **\\\\MDT01\\MDTProduction$** share.
|
|
||||||
|
|
||||||
## Add Windows 10 Enterprise x64 (full source)
|
|
||||||
|
|
||||||
In these steps we assume that you have copied the content of a Windows 10 Enterprise x64 ISO to the E:\\Downloads\\Windows 10 Enterprise x64 folder.
|
|
||||||
|
|
||||||
1. Using the Deployment Workbench, expand the **Deployment Shares** node, and then expand **MDT Production**.
|
|
||||||
2. Right-click the **Operating Systems** node, and create a new folder named **Windows 10**.
|
|
||||||
3. Expand the **Operating Systems** node, right-click the **Windows 10** folder, and select **Import Operating System**. Use the following settings for the Import Operating System Wizard:
|
|
||||||
- Full set of source files
|
|
||||||
- Source directory: E:\\Downloads\\Windows 10 Enterprise x64
|
|
||||||
- Destination directory name: W10EX64RTM
|
|
||||||
4. After you add the operating system, in the **Operating Systems / Windows 10** folder, double-click the added operating system name in the **Operating System** node and change the name to the following: **Windows 10 Enterprise x64 RTM Default Image**
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Figure 2. The imported Windows 10 operating system after you rename it.
|
|
||||||
|
|
||||||
## Create a task sequence to upgrade to Windows 10 Enterprise
|
|
||||||
|
|
||||||
1. Using the Deployment Workbench, select **Task Sequences** in the **MDT Production** node, and create a folder named **Windows 10**.
|
|
||||||
2. Right-click the new **Windows 10** folder and select **New Task Sequence**. Use the following settings for the New Task Sequence Wizard:
|
|
||||||
- Task sequence ID: W10-X64-UPG
|
|
||||||
- Task sequence name: Windows 10 Enterprise x64 RTM Upgrade
|
|
||||||
- Template: Standard Client Upgrade Task Sequence
|
|
||||||
- Select OS: Windows 10 Enterprise x64 RTM Default Image
|
|
||||||
- Specify Product Key: Do not specify a product key at this time
|
|
||||||
- Full Name: Contoso
|
|
||||||
- Organization: Contoso
|
|
||||||
- Internet Explorer home page: about:blank
|
|
||||||
- Admin Password: Do not specify an Administrator Password at this time
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Figure 3. The task sequence to upgrade to Windows 10.
|
|
||||||
|
|
||||||
## Perform the Windows 10 upgrade
|
|
||||||
|
|
||||||
To initiate the in-place upgrade, perform the following steps on PC0003 (currently running Windows 7 SP1).
|
|
||||||
|
|
||||||
1. Start the MDT deployment wizard by running the following command: **\\\\MDT01\\MDTProduction$\\Scripts\\LiteTouch.vbs**
|
|
||||||
2. Select the **Windows 10 Enterprise x64 RTM Upgrade** task sequence, and then click **Next**.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Figure 4. Upgrade task sequence.
|
|
||||||
|
|
||||||
3. On the **Credentials** tab, specify the **MDT\_BA** account, <strong>P@ssw0rd</strong> password, and **CONTOSO** for the domain. (Some or all of these values can be specified in Bootstrap.ini so they are automatically populated.)
|
|
||||||
4. On the **Ready** tab, click **Begin** to start the task sequence.
|
|
||||||
When the task sequence begins, it automatically initiates the in-place upgrade process by invoking the Windows setup program (Setup.exe) with the necessary command-line parameters to perform an automated upgrade, which preserves all data, settings, apps, and drivers.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Figure 5. Upgrade from Windows 7 to Windows 10 Enterprise x64 with a task sequence.
|
|
||||||
|
|
||||||
After the task sequence completes, the computer will be fully upgraded to Windows 10.
|
|
||||||
|
|
||||||
## Related topics
|
|
||||||
|
|
||||||
[Windows 10 deployment scenarios](../windows-10-deployment-scenarios.md)
|
|
||||||
|
|
||||||
[Microsoft Deployment Toolkit downloads and resources](https://go.microsoft.com/fwlink/p/?LinkId=618117)
|
|
||||||
|
|
||||||
=======
|
|
||||||
---
|
---
|
||||||
title: Perform an in-place upgrade to Windows 10 with MDT (Windows 10)
|
title: Perform an in-place upgrade to Windows 10 with MDT (Windows 10)
|
||||||
description: The simplest path to upgrade PCs that are currently running Windows 7, Windows 8, or Windows 8.1 to Windows 10 is through an in-place upgrade.
|
description: The simplest path to upgrade PCs that are currently running Windows 7, Windows 8, or Windows 8.1 to Windows 10 is through an in-place upgrade.
|
||||||
@ -220,4 +108,3 @@ After the task sequence completes, the computer will be fully upgraded to Window
|
|||||||
|
|
||||||
[Microsoft Deployment Toolkit downloads and resources](https://go.microsoft.com/fwlink/p/?LinkId=618117)
|
[Microsoft Deployment Toolkit downloads and resources](https://go.microsoft.com/fwlink/p/?LinkId=618117)
|
||||||
|
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
@ -1,21 +1,12 @@
|
|||||||
---
|
---
|
||||||
<<<<<<< HEAD
|
|
||||||
title: Step by step - Deploy Windows 10 using System Center Configuration Manager
|
|
||||||
description: Deploy Windows 10 in a test lab using System Center Configuration Manager
|
|
||||||
=======
|
|
||||||
title: Step by step - Deploy Windows 10 using Microsoft Endpoint Configuration Manager
|
title: Step by step - Deploy Windows 10 using Microsoft Endpoint Configuration Manager
|
||||||
description: Deploy Windows 10 in a test lab using Microsoft Endpoint Configuration Manager
|
description: Deploy Windows 10 in a test lab using Microsoft Endpoint Configuration Manager
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.mktglfcycl: deploy
|
ms.mktglfcycl: deploy
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
ms.pagetype: deploy
|
ms.pagetype: deploy
|
||||||
keywords: deployment, automate, tools, configure, sccm
|
keywords: deployment, automate, tools, configure, sccm
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
ms.date: 10/11/2017
|
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: laurawi
|
manager: laurawi
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
@ -25,11 +16,7 @@ author: greg-lindsay
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
---
|
---
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
# Deploy Windows 10 in a test lab using System Center Configuration Manager
|
|
||||||
=======
|
|
||||||
# Deploy Windows 10 in a test lab using Microsoft Endpoint Configuration Manager
|
# Deploy Windows 10 in a test lab using Microsoft Endpoint Configuration Manager
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
**Applies to**
|
**Applies to**
|
||||||
|
|
||||||
@ -51,11 +38,7 @@ This guide leverages the Hyper-V server role to perform procedures. If you do no
|
|||||||
|
|
||||||
## In this guide
|
## In this guide
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
This guide provides end-to-end instructions to install and configure System Center Configuration Manager, and use it to deploy a Windows 10 image. Depending on the speed of your Hyper-V host, the procedures in this guide will require 6-10 hours to complete.
|
|
||||||
=======
|
|
||||||
This guide provides end-to-end instructions to install and configure Microsoft Endpoint Configuration Manager, and use it to deploy a Windows 10 image. Depending on the speed of your Hyper-V host, the procedures in this guide will require 6-10 hours to complete.
|
This guide provides end-to-end instructions to install and configure Microsoft Endpoint Configuration Manager, and use it to deploy a Windows 10 image. Depending on the speed of your Hyper-V host, the procedures in this guide will require 6-10 hours to complete.
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
Topics and procedures in this guide are summarized in the following table. An estimate of the time required to complete each procedure is also provided. Time required to complete procedures will vary depending on the resources available to the Hyper-V host and assigned to VMs, such as processor speed, memory allocation, disk speed, and network speed.
|
Topics and procedures in this guide are summarized in the following table. An estimate of the time required to complete each procedure is also provided. Time required to complete procedures will vary depending on the resources available to the Hyper-V host and assigned to VMs, such as processor speed, memory allocation, disk speed, and network speed.
|
||||||
|
|
||||||
@ -66,11 +49,7 @@ Topics and procedures in this guide are summarized in the following table. An es
|
|||||||
<tr><td BGCOLOR="#a0e4fa"><b>Topic</b><td BGCOLOR="#a0e4fa"><b>Description</b><td BGCOLOR="#a0e4fa"><b>Time</b>
|
<tr><td BGCOLOR="#a0e4fa"><b>Topic</b><td BGCOLOR="#a0e4fa"><b>Description</b><td BGCOLOR="#a0e4fa"><b>Time</b>
|
||||||
|
|
||||||
<tr><td><a href="#install-prerequisites" data-raw-source="[Install prerequisites](#install-prerequisites)">Install prerequisites</a><td>Install prerequisite Windows Server roles and features, download, install and configure SQL Server, configure firewall rules, and install the Windows ADK.<td>60 minutes
|
<tr><td><a href="#install-prerequisites" data-raw-source="[Install prerequisites](#install-prerequisites)">Install prerequisites</a><td>Install prerequisite Windows Server roles and features, download, install and configure SQL Server, configure firewall rules, and install the Windows ADK.<td>60 minutes
|
||||||
<<<<<<< HEAD
|
|
||||||
<tr><td><a href="#install-system-center-configuration-manager" data-raw-source="[Install System Center Configuration Manager](#install-system-center-configuration-manager)">Install System Center Configuration Manager</a><td>Download System Center Configuration Manager, configure prerequisites, and install the package.<td>45 minutes
|
|
||||||
=======
|
|
||||||
<tr><td><a href="#install-microsoft-endpoint-configuration-manager" data-raw-source="[Install Microsoft Endpoint Configuration Manager](#install-microsoft-endpoint-configuration-manager)">Install Microsoft Endpoint Configuration Manager</a><td>Download Microsoft Endpoint Configuration Manager, configure prerequisites, and install the package.<td>45 minutes
|
<tr><td><a href="#install-microsoft-endpoint-configuration-manager" data-raw-source="[Install Microsoft Endpoint Configuration Manager](#install-microsoft-endpoint-configuration-manager)">Install Microsoft Endpoint Configuration Manager</a><td>Download Microsoft Endpoint Configuration Manager, configure prerequisites, and install the package.<td>45 minutes
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
<tr><td><a href="#download-mdop-and-install-dart" data-raw-source="[Download MDOP and install DaRT](#download-mdop-and-install-dart)">Download MDOP and install DaRT</a><td>Download the Microsoft Desktop Optimization Pack 2015 and install DaRT 10.<td>15 minutes
|
<tr><td><a href="#download-mdop-and-install-dart" data-raw-source="[Download MDOP and install DaRT](#download-mdop-and-install-dart)">Download MDOP and install DaRT</a><td>Download the Microsoft Desktop Optimization Pack 2015 and install DaRT 10.<td>15 minutes
|
||||||
<tr><td><a href="#prepare-for-zero-touch-installation" data-raw-source="[Prepare for Zero Touch installation](#prepare-for-zero-touch-installation)">Prepare for Zero Touch installation</a><td>Prerequisite procedures to support Zero Touch installation.<td>60 minutes
|
<tr><td><a href="#prepare-for-zero-touch-installation" data-raw-source="[Prepare for Zero Touch installation](#prepare-for-zero-touch-installation)">Prepare for Zero Touch installation</a><td>Prerequisite procedures to support Zero Touch installation.<td>60 minutes
|
||||||
<tr><td><a href="#create-a-boot-image-for-configuration-manager" data-raw-source="[Create a boot image for Configuration Manager](#create-a-boot-image-for-configuration-manager)">Create a boot image for Configuration Manager</a><td>Use the MDT wizard to create the boot image in Configuration Manager.<td>20 minutes
|
<tr><td><a href="#create-a-boot-image-for-configuration-manager" data-raw-source="[Create a boot image for Configuration Manager](#create-a-boot-image-for-configuration-manager)">Create a boot image for Configuration Manager</a><td>Use the MDT wizard to create the boot image in Configuration Manager.<td>20 minutes
|
||||||
@ -86,11 +65,7 @@ Topics and procedures in this guide are summarized in the following table. An es
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
## Install prerequisites
|
## Install prerequisites
|
||||||
<<<<<<< HEAD
|
|
||||||
1. Before installing System Center Configuration Manager, we must install prerequisite services and features. Type the following command at an elevated Windows PowerShell prompt on SRV1:
|
|
||||||
=======
|
|
||||||
1. Before installing Microsoft Endpoint Configuration Manager, we must install prerequisite services and features. Type the following command at an elevated Windows PowerShell prompt on SRV1:
|
1. Before installing Microsoft Endpoint Configuration Manager, we must install prerequisite services and features. Type the following command at an elevated Windows PowerShell prompt on SRV1:
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
```
|
```
|
||||||
Install-WindowsFeature Web-Windows-Auth,Web-ISAPI-Ext,Web-Metabase,Web-WMI,BITS,RDC,NET-Framework-Features,Web-Asp-Net,Web-Asp-Net45,NET-HTTP-Activation,NET-Non-HTTP-Activ
|
Install-WindowsFeature Web-Windows-Auth,Web-ISAPI-Ext,Web-Metabase,Web-WMI,BITS,RDC,NET-Framework-Features,Web-Asp-Net,Web-Asp-Net45,NET-HTTP-Activation,NET-Non-HTTP-Activ
|
||||||
@ -140,15 +115,9 @@ Topics and procedures in this guide are summarized in the following table. An es
|
|||||||
New-NetFirewallRule -DisplayName “SQL Debugger/RPC” -Direction Inbound –Protocol TCP –LocalPort 135 -Action allow
|
New-NetFirewallRule -DisplayName “SQL Debugger/RPC” -Direction Inbound –Protocol TCP –LocalPort 135 -Action allow
|
||||||
```
|
```
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
7. Download and install the latest [Windows Assessment and Deployment Kit (ADK)](https://developer.microsoft.com/windows/hardware/windows-assessment-deployment-kit) on SRV1 using the default installation settings. The current version is the ADK for Windows 10, version 1703. Installation might require several minutes to acquire all components.
|
|
||||||
|
|
||||||
## Install System Center Configuration Manager
|
|
||||||
=======
|
|
||||||
7. Download and install the latest [Windows Assessment and Deployment Kit (ADK)](https://developer.microsoft.com/en-us/windows/hardware/windows-assessment-deployment-kit) on SRV1 using the default installation settings. The current version is the ADK for Windows 10, version 1703. Installation might require several minutes to acquire all components.
|
7. Download and install the latest [Windows Assessment and Deployment Kit (ADK)](https://developer.microsoft.com/en-us/windows/hardware/windows-assessment-deployment-kit) on SRV1 using the default installation settings. The current version is the ADK for Windows 10, version 1703. Installation might require several minutes to acquire all components.
|
||||||
|
|
||||||
## Install Microsoft Endpoint Configuration Manager
|
## Install Microsoft Endpoint Configuration Manager
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
1. On SRV1, temporarily disable IE Enhanced Security Configuration for Administrators by typing the following commands at an elevated Windows PowerShell prompt:
|
1. On SRV1, temporarily disable IE Enhanced Security Configuration for Administrators by typing the following commands at an elevated Windows PowerShell prompt:
|
||||||
|
|
||||||
@ -158,11 +127,7 @@ Topics and procedures in this guide are summarized in the following table. An es
|
|||||||
Stop-Process -Name Explorer
|
Stop-Process -Name Explorer
|
||||||
```
|
```
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
2. Download [System Center Configuration Manager and Endpoint Protection](https://www.microsoft.com/evalcenter/evaluate-system-center-configuration-manager-and-endpoint-protection) on SRV1 (download the executable file anywhere on SRV1), double-click the file, enter **C:\configmgr** for **Unzip to folder**, and click **Unzip**. The C:\configmgr directory will be automatically created. Click **OK** and then close the **WinZip Self-Extractor** dialog box when finished.
|
|
||||||
=======
|
|
||||||
2. Download [Microsoft Endpoint Configuration Manager and Endpoint Protection](https://www.microsoft.com/evalcenter/evaluate-system-center-configuration-manager-and-endpoint-protection) on SRV1 (download the executable file anywhere on SRV1), double-click the file, enter **C:\configmgr** for **Unzip to folder**, and click **Unzip**. The C:\configmgr directory will be automatically created. Click **OK** and then close the **WinZip Self-Extractor** dialog box when finished.
|
2. Download [Microsoft Endpoint Configuration Manager and Endpoint Protection](https://www.microsoft.com/evalcenter/evaluate-system-center-configuration-manager-and-endpoint-protection) on SRV1 (download the executable file anywhere on SRV1), double-click the file, enter **C:\configmgr** for **Unzip to folder**, and click **Unzip**. The C:\configmgr directory will be automatically created. Click **OK** and then close the **WinZip Self-Extractor** dialog box when finished.
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
3. Before starting the installation, verify that WMI is working on SRV1. See the following examples. Verify that **Running** is displayed under **Status** and **True** is displayed next to **TcpTestSucceeded**:
|
3. Before starting the installation, verify that WMI is working on SRV1. See the following examples. Verify that **Running** is displayed under **Status** and **True** is displayed next to **TcpTestSucceeded**:
|
||||||
|
|
||||||
@ -220,11 +185,7 @@ Topics and procedures in this guide are summarized in the following table. An es
|
|||||||
```
|
```
|
||||||
cmd /c C:\configmgr\SMSSETUP\BIN\X64\Setup.exe
|
cmd /c C:\configmgr\SMSSETUP\BIN\X64\Setup.exe
|
||||||
```
|
```
|
||||||
<<<<<<< HEAD
|
|
||||||
18. Provide the following in the System Center Configuration Manager Setup Wizard:
|
|
||||||
=======
|
|
||||||
18. Provide the following in the Microsoft Endpoint Configuration Manager Setup Wizard:
|
18. Provide the following in the Microsoft Endpoint Configuration Manager Setup Wizard:
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
- **Before You Begin**: Read the text and click *Next*.
|
- **Before You Begin**: Read the text and click *Next*.
|
||||||
- **Getting Started**: Choose **Install a Configuration Manager primary site** and select the **Use typical installation options for a stand-alone primary site** checkbox.
|
- **Getting Started**: Choose **Install a Configuration Manager primary site** and select the **Use typical installation options for a stand-alone primary site** checkbox.
|
||||||
- Click **Yes** in response to the popup window.
|
- Click **Yes** in response to the popup window.
|
||||||
@ -278,11 +239,7 @@ Topics and procedures in this guide are summarized in the following table. An es
|
|||||||
|
|
||||||
## Prepare for Zero Touch installation
|
## Prepare for Zero Touch installation
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
This section contains several procedures to support Zero Touch installation with System Center Configuration Manager.
|
|
||||||
=======
|
|
||||||
This section contains several procedures to support Zero Touch installation with Microsoft Endpoint Configuration Manager.
|
This section contains several procedures to support Zero Touch installation with Microsoft Endpoint Configuration Manager.
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
### Create a folder structure
|
### Create a folder structure
|
||||||
|
|
||||||
@ -357,11 +314,7 @@ WDSUTIL /Set-Server /AnswerClients:None
|
|||||||
```
|
```
|
||||||
>If the internal network adapter, assigned an IP address of 192.168.0.2, is not named "Ethernet" then replace the name "Ethernet" in the previous command with the name of this network adapter. You can review the names of network adapters and the IP addresses assigned to them by typing **ipconfig**.
|
>If the internal network adapter, assigned an IP address of 192.168.0.2, is not named "Ethernet" then replace the name "Ethernet" in the previous command with the name of this network adapter. You can review the names of network adapters and the IP addresses assigned to them by typing **ipconfig**.
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
2. In the System Center Configuration Manager console, in the **Administration** workspace, click **Distribution Points**.
|
|
||||||
=======
|
|
||||||
2. In the Microsoft Endpoint Configuration Manager console, in the **Administration** workspace, click **Distribution Points**.
|
2. In the Microsoft Endpoint Configuration Manager console, in the **Administration** workspace, click **Distribution Points**.
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
3. In the display pane, right-click **SRV1.CONTOSO.COM** and then click **Properties**.
|
3. In the display pane, right-click **SRV1.CONTOSO.COM** and then click **Properties**.
|
||||||
4. On the PXE tab, select the following settings:
|
4. On the PXE tab, select the following settings:
|
||||||
- **Enable PXE support for clients**. Click **Yes** in the popup that appears.
|
- **Enable PXE support for clients**. Click **Yes** in the popup that appears.
|
||||||
@ -492,11 +445,7 @@ If you have already completed steps in [Deploy Windows 10 in a test lab using Mi
|
|||||||
- Summary: click **Next**
|
- Summary: click **Next**
|
||||||
- Confirmation: click **Finish**
|
- Confirmation: click **Finish**
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
9. For purposes of this test lab, we will not add applications, such as Microsoft Office, to the deployment share. For information about adding applications, see the [Add applications](deploy-windows-mdt/create-a-windows-10-reference-image.md#add-applications) section of the [Create a Windows 10 reference image](deploy-windows-mdt/create-a-windows-10-reference-image.md) topic in the TechNet library.
|
|
||||||
=======
|
|
||||||
9. For purposes of this test lab, we will not add applications, such as Microsoft Office, to the deployment share. For information about adding applications, see the [Add applications](deploy-windows-mdt/create-a-windows-10-reference-image.md#sec03) section of the [Create a Windows 10 reference image](deploy-windows-mdt/create-a-windows-10-reference-image.md) topic in the TechNet library.
|
9. For purposes of this test lab, we will not add applications, such as Microsoft Office, to the deployment share. For information about adding applications, see the [Add applications](deploy-windows-mdt/create-a-windows-10-reference-image.md#sec03) section of the [Create a Windows 10 reference image](deploy-windows-mdt/create-a-windows-10-reference-image.md) topic in the TechNet library.
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
|
|
||||||
10. The next step is to create a task sequence to reference the operating system that was imported. To create a task sequence, right-click the **Task Sequences** node under **MDT Build Lab** and then click **New Task Sequence**. Use the following settings for the New Task Sequence Wizard:
|
10. The next step is to create a task sequence to reference the operating system that was imported. To create a task sequence, right-click the **Task Sequences** node under **MDT Build Lab** and then click **New Task Sequence**. Use the following settings for the New Task Sequence Wizard:
|
||||||
- Task sequence ID: **REFW10X64-001**<br>
|
- Task sequence ID: **REFW10X64-001**<br>
|
||||||
@ -814,13 +763,8 @@ In this first deployment scenario, we will deploy Windows 10 using PXE. This sce
|
|||||||
6. The smsts.log file is critical for troubleshooting any installation problems that might be encountered. Depending on the deployment phase, the smsts.log file is created in different locations:
|
6. The smsts.log file is critical for troubleshooting any installation problems that might be encountered. Depending on the deployment phase, the smsts.log file is created in different locations:
|
||||||
- X:\windows\temp\SMSTSLog\smsts.log before disks are formatted.
|
- X:\windows\temp\SMSTSLog\smsts.log before disks are formatted.
|
||||||
- x:\smstslog\smsts.log after disks are formatted.
|
- x:\smstslog\smsts.log after disks are formatted.
|
||||||
<<<<<<< HEAD
|
|
||||||
- c:\_SMSTaskSequence\Logs\Smstslog\smsts.log before the System Center Configuration Manager client is installed.
|
|
||||||
- c:\windows\ccm\logs\Smstslog\smsts.log after the System Center Configuration Manager client is installed.
|
|
||||||
=======
|
|
||||||
- c:\_SMSTaskSequence\Logs\Smstslog\smsts.log before the Microsoft Endpoint Configuration Manager client is installed.
|
- c:\_SMSTaskSequence\Logs\Smstslog\smsts.log before the Microsoft Endpoint Configuration Manager client is installed.
|
||||||
- c:\windows\ccm\logs\Smstslog\smsts.log after the Microsoft Endpoint Configuration Manager client is installed.
|
- c:\windows\ccm\logs\Smstslog\smsts.log after the Microsoft Endpoint Configuration Manager client is installed.
|
||||||
>>>>>>> 47b65fbd6988135657e57effe9671449ed803bf6
|
|
||||||
- c:\windows\ccm\logs\smsts.log when the task sequence is complete.
|
- c:\windows\ccm\logs\smsts.log when the task sequence is complete.
|
||||||
|
|
||||||
Note: If a reboot is pending on the client, the reboot will be blocked as long as the command window is open.
|
Note: If a reboot is pending on the client, the reboot will be blocked as long as the command window is open.
|
||||||
@ -1129,10 +1073,3 @@ In the Configuration Manager console, in the Software Library workspace under Op
|
|||||||
## Related Topics
|
## Related Topics
|
||||||
|
|
||||||
[System Center 2012 Configuration Manager Survival Guide](https://social.technet.microsoft.com/wiki/contents/articles/7075.system-center-2012-configuration-manager-survival-guide.aspx#Step-by-Step_Guides)
|
[System Center 2012 Configuration Manager Survival Guide](https://social.technet.microsoft.com/wiki/contents/articles/7075.system-center-2012-configuration-manager-survival-guide.aspx#Step-by-Step_Guides)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user