mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-15 10:23:37 +00:00
Merged PR 7566: AutoPilot > Autopilot case change
AutoPilot > Autopilot case change
This commit is contained in:
committed by
Liza Poggemeyer
parent
1e3aaeac05
commit
53e7647cc5
@ -1,8 +1,8 @@
|
||||
# [Overview of Windows AutoPilot](windows-10-autopilot.md)
|
||||
# [Overview of Windows Autopilot](windows-10-autopilot.md)
|
||||
|
||||
## [The Windows AutoPilot Deployment Program in Microsoft Store for Business](https://docs.microsoft.com/microsoft-store/add-profile-to-devices#manage-autopilot-deployment-profiles)
|
||||
## [The Windows AutoPilot Deployment Program in Microsoft Intune](https://docs.microsoft.com/intune/enrollment-autopilot)
|
||||
## [The Windows AutoPilot Deployment Program in Microsoft 365 Business & Office 365 Admin portal](https://support.office.com/article/Create-and-edit-AutoPilot-profiles-5cf7139e-cfa1-4765-8aad-001af1c74faa)
|
||||
## [The Windows AutoPilot Deployment Program in Partner Center](https://msdn.microsoft.com/partner-center/autopilot)
|
||||
## [Demo the Windows AutoPilot Deployment Program on a Virtual Machine](windows-10-autopilot-demo-vm.md)
|
||||
## [The Windows Autopilot Deployment Program in Microsoft Store for Business](https://docs.microsoft.com/microsoft-store/add-profile-to-devices#manage-autopilot-deployment-profiles)
|
||||
## [The Windows Autopilot Deployment Program in Microsoft Intune](https://docs.microsoft.com/intune/enrollment-autopilot)
|
||||
## [The Windows Autopilot Deployment Program in Microsoft 365 Business & Office 365 Admin portal](https://support.office.com/article/Create-and-edit-Autopilot-profiles-5cf7139e-cfa1-4765-8aad-001af1c74faa)
|
||||
## [The Windows Autopilot Deployment Program in Partner Center](https://msdn.microsoft.com/partner-center/autopilot)
|
||||
## [Demo the Windows Autopilot Deployment Program on a Virtual Machine](windows-10-autopilot-demo-vm.md)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Demo the Windows AutoPilot Deployment Program on a Virtual Machine
|
||||
description: Step-by-step instructions on how to set-up a Virtual Machine with a Windows AutoPilot deployment
|
||||
title: Demo the Windows Autopilot Deployment Program on a Virtual Machine
|
||||
description: Step-by-step instructions on how to set-up a Virtual Machine with a Windows Autopilot deployment
|
||||
keywords: mdm, setup, windows, windows 10, oobe, manage, deploy, autopilot, ztd, zero-touch, partner, msfb, intune
|
||||
ms.prod: w10
|
||||
ms.mktglfcycl: deploy
|
||||
@ -12,13 +12,13 @@ ms.author: daniha
|
||||
ms.date: 12/21/2017
|
||||
---
|
||||
|
||||
# Demo the Windows AutoPilot Deployment Program on a Virtual Machine
|
||||
# Demo the Windows Autopilot Deployment Program on a Virtual Machine
|
||||
|
||||
**Applies to**
|
||||
|
||||
- Windows 10
|
||||
|
||||
In this topic you'll learn how to set-up a Windows AutoPilot deployment for a Virtual Machine using Hyper-V.
|
||||
In this topic you'll learn how to set-up a Windows Autopilot deployment for a Virtual Machine using Hyper-V.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
@ -27,7 +27,7 @@ These are the thing you'll need on your device to get started:
|
||||
* Internet access (see [Network connectivity requirements](windows-10-autopilot.md#network-connectivity-requirements))
|
||||
* Hypervisor needs to be unoccupied, or used by Hyper-V, as we will be using Hyper-V to create the Virtual Machine
|
||||
|
||||
See additional prerequisites in the [Windows AutoPilot overview topic](windows-10-autopilot.md#prerequisites).
|
||||
See additional prerequisites in the [Windows Autopilot overview topic](windows-10-autopilot.md#prerequisites).
|
||||
|
||||
## Create your Virtual Machine
|
||||
|
||||
@ -49,10 +49,10 @@ Now that Hyper-V is enabled, proceed to create your Virtual Machine.
|
||||
|
||||
Open a PowerShell prompt **as an administrator** and run the following:
|
||||
```powershell
|
||||
New-VMSwitch -Name AutoPilotExternal -NetAdapterName <Name of Network Adapter with internet access> -AllowManagementOS $true
|
||||
New-VM -Name WindowsAutoPilot -MemoryStartupBytes 2GB -BootDevice VHD -NewVHDPath .\VMs\WindowsAutoPilot.vhdx -Path .\VMData -NewVHDSizeBytes 80GB -Generation 2 -Switch AutoPilotExternal
|
||||
Add-VMDvdDrive -Path <Path to Windows 10 ISO> -VMName WindowsAutoPilot
|
||||
Start-VM -VMName WindowsAutoPilot
|
||||
New-VMSwitch -Name AutopilotExternal -NetAdapterName <Name of Network Adapter with internet access> -AllowManagementOS $true
|
||||
New-VM -Name WindowsAutopilot -MemoryStartupBytes 2GB -BootDevice VHD -NewVHDPath .\VMs\WindowsAutopilot.vhdx -Path .\VMData -NewVHDSizeBytes 80GB -Generation 2 -Switch AutopilotExternal
|
||||
Add-VMDvdDrive -Path <Path to Windows 10 ISO> -VMName WindowsAutopilot
|
||||
Start-VM -VMName WindowsAutopilot
|
||||
```
|
||||
|
||||
>[!IMPORTANT]
|
||||
@ -61,14 +61,14 @@ Start-VM -VMName WindowsAutoPilot
|
||||
|
||||
### Install Windows 10
|
||||
|
||||
Now that the Virtual Machine was created and started, open **Hyper-V Manager** and connect to the **WindowsAutoPilot** Virtual Machine.
|
||||
Now that the Virtual Machine was created and started, open **Hyper-V Manager** and connect to the **WindowsAutopilot** Virtual Machine.
|
||||
Make sure the Virtual Machine booted from the installation media you've provided and complete the Windows installation process.
|
||||
|
||||
Once the installation is complete, create a checkpoint. You will create multiple checkpoints throughout this process, which you can later use to go through the process again.
|
||||
|
||||
To create the checkpoint, open a PowerShell prompt **as an administrator** and run the following:
|
||||
```powershell
|
||||
Checkpoint-VM -Name WindowsAutoPilot -SnapshotName "Finished Windows install"
|
||||
Checkpoint-VM -Name WindowsAutopilot -SnapshotName "Finished Windows install"
|
||||
```
|
||||
|
||||
## Capture your Virtual Machine's hardware ID
|
||||
@ -78,8 +78,8 @@ On the newly created Virtual Machine, open a PowerShell prompt **as an administr
|
||||
md c:\HWID
|
||||
Set-Location c:\HWID
|
||||
Set-ExecutionPolicy Unrestricted
|
||||
Install-Script -Name Get-WindowsAutoPilotInfo
|
||||
Get-WindowsAutoPilotInfo.ps1 -OutputFile AutoPilotHWID.csv
|
||||
Install-Script -Name Get-WindowsAutopilotInfo
|
||||
Get-WindowsAutopilotInfo.ps1 -OutputFile AutopilotHWID.csv
|
||||
```
|
||||
|
||||
>[!NOTE]
|
||||
@ -87,34 +87,34 @@ Get-WindowsAutoPilotInfo.ps1 -OutputFile AutoPilotHWID.csv
|
||||
|
||||
### Mount the Virtual Hard Drive (VHD)
|
||||
|
||||
To gain access to the AutoPilotHWID.csv that contains the hardware ID, stop the Virtual Machine to unlock the Virtual Hard Drive.
|
||||
To gain access to the AutopilotHWID.csv that contains the hardware ID, stop the Virtual Machine to unlock the Virtual Hard Drive.
|
||||
|
||||
To do that, on your device (**not** on the Virtual Machine), open a PowerShell prompt **as an administrator** and run the following:
|
||||
```powershell
|
||||
Stop-VM -VMName WindowsAutoPilot
|
||||
Stop-VM -VMName WindowsAutopilot
|
||||
```
|
||||
|
||||
Once the Virtual Machine has stopped, create a checkpoint:
|
||||
```powershell
|
||||
Checkpoint-VM -Name WindowsAutoPilot -SnapshotName "HWID captured"
|
||||
Checkpoint-VM -Name WindowsAutopilot -SnapshotName "HWID captured"
|
||||
```
|
||||
|
||||
With the checkpoint created, continue to mount the VHD:
|
||||
```powershell
|
||||
Mount-VHD -path (Get-VMHardDiskDrive -VMName WindowsAutoPilot).Path
|
||||
Mount-VHD -path (Get-VMHardDiskDrive -VMName WindowsAutopilot).Path
|
||||
```
|
||||
|
||||
Once mounted, navigate to the new drive and copy **AutoPilotHWID.csv** to a location on your device.
|
||||
Once mounted, navigate to the new drive and copy **AutopilotHWID.csv** to a location on your device.
|
||||
|
||||
Before you proceed, unmount the VHD to unlock it and start the Virtual Machine:
|
||||
```powershell
|
||||
Dismount-VHD -path (Get-VMHardDiskDrive -VMName WindowsAutoPilot).Path
|
||||
Start-VM -VMName WindowsAutoPilot
|
||||
Dismount-VHD -path (Get-VMHardDiskDrive -VMName WindowsAutopilot).Path
|
||||
Start-VM -VMName WindowsAutopilot
|
||||
```
|
||||
|
||||
## Reset Virtual Machine back to Out-Of-Box-Experience (OOBE)
|
||||
|
||||
With the hardware ID captured, prepare your Virtual Machine for Windows AutoPilot deployment by resetting it back to OOBE.
|
||||
With the hardware ID captured, prepare your Virtual Machine for Windows Autopilot deployment by resetting it back to OOBE.
|
||||
|
||||
On the Virtual Machine, go to **Settings > Update & Security > Recovery** and click on **Get started** under **Reset this PC**.
|
||||
Select **Remove everything** and **Just remove my files**. Finally, click on **Reset**.
|
||||
@ -158,11 +158,11 @@ For the purposes of this demo, select **All** under the **MDM user scope** and c
|
||||
|
||||
## Register your Virtual Machine to your organization
|
||||
|
||||
Navigate to [Microsoft Store for Business device management](https://businessstore.microsoft.com/en-us/manage/devices). Click on **Add devices** and select the **AutoPilotHWID.csv** you've saved earlier. A message will appear indicating your request is being processed. Wait a few moments before refreshing to see your Virtual Machine added.
|
||||
Navigate to [Microsoft Store for Business device management](https://businessstore.microsoft.com/en-us/manage/devices). Click on **Add devices** and select the **AutopilotHWID.csv** you've saved earlier. A message will appear indicating your request is being processed. Wait a few moments before refreshing to see your Virtual Machine added.
|
||||
|
||||

|
||||
|
||||
## Create and assign a Windows AutoPilot deployment profile
|
||||
## Create and assign a Windows Autopilot deployment profile
|
||||
|
||||
Navigate to [Windows enrollment in Microsoft Intune](https://portal.azure.com/#blade/Microsoft_Intune_Enrollment/OverviewBlade/windowsEnrollment).
|
||||
|
||||
@ -170,13 +170,13 @@ Make sure to sync the device you've just registered, by clicking on **Devices**
|
||||
|
||||

|
||||
|
||||
### Create a Windows AutoPilot deployment profile
|
||||
### Create a Windows Autopilot deployment profile
|
||||
|
||||
Click on **Deployment profiles** under **Windows Autopilot Deployment Program (Preview)** and select **Create profile**.
|
||||
|
||||

|
||||
|
||||
In the **Create profile** blade, set the name to **AutoPilot Intune Demo**, click on **Out-of-box experience (OOBE)** and configure the following:
|
||||
In the **Create profile** blade, set the name to **Autopilot Intune Demo**, click on **Out-of-box experience (OOBE)** and configure the following:
|
||||
| Setting name | Value |
|
||||
|---|---|
|
||||
|Privacy Settings|Hide|
|
||||
@ -187,15 +187,15 @@ Click on **Save** and **Create**.
|
||||
|
||||

|
||||
|
||||
### Assign a Windows AutoPilot deployment profile
|
||||
### Assign a Windows Autopilot deployment profile
|
||||
|
||||
With the deployment profile created, go back to **Devices** under **Windows Autopilot Deployment Program (Preview)** and select your Virtual Machine. Click on **Assign profile** and in the **Assign Profile** blade select **AutoPilot Intune Demo** under the **AutoPilot profile**. Click on **Assign**.
|
||||
With the deployment profile created, go back to **Devices** under **Windows Autopilot Deployment Program (Preview)** and select your Virtual Machine. Click on **Assign profile** and in the **Assign Profile** blade select **Autopilot Intune Demo** under the **Autopilot profile**. Click on **Assign**.
|
||||
|
||||

|
||||

|
||||
|
||||
Wait a few minutes for all changes to apply.
|
||||
|
||||
## See Windows AutoPilot in action
|
||||
## See Windows Autopilot in action
|
||||
|
||||
By now, your Virtual Machine should be back to OOBE. Make sure to wait at least 30 minutes from the time you've [configured company branding](#configure-company-branding)
|
||||
, otherwise those changes might not show up.
|
||||
@ -204,6 +204,6 @@ Once you select a language and a keyboard layout, your company branded sign-in s
|
||||
|
||||

|
||||
|
||||
Windows AutoPilot will now take over to automatically join your Virtual Machine into Azure Active Directory and enroll it to Microsoft Intune. Use the checkpoints you've created to go through this process again with different settings.
|
||||
Windows Autopilot will now take over to automatically join your Virtual Machine into Azure Active Directory and enroll it to Microsoft Intune. Use the checkpoints you've created to go through this process again with different settings.
|
||||
|
||||
Missing something in this topic? Windows 10 users, tell us what you want on [Feedback Hub](feedback-hub://?referrer=techDocsUcPage&tabid=2&contextid=897&newFeedback=true&topic=windows-10-autopilot-demo-vm.md).
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Overview of Windows AutoPilot
|
||||
description: This topic goes over Windows AutoPilot and how it helps setup OOBE Windows 10 devices.
|
||||
title: Overview of Windows Autopilot
|
||||
description: This topic goes over Windows Autopilot and how it helps setup OOBE Windows 10 devices.
|
||||
keywords: mdm, setup, windows, windows 10, oobe, manage, deploy, autopilot, ztd, zero-touch, partner, msfb, intune
|
||||
ms.prod: w10
|
||||
ms.mktglfcycl: deploy
|
||||
@ -12,32 +12,32 @@ ms.author: daniha
|
||||
ms.date: 12/13/2017
|
||||
---
|
||||
|
||||
# Overview of Windows AutoPilot
|
||||
# Overview of Windows Autopilot
|
||||
|
||||
**Applies to**
|
||||
|
||||
- Windows 10
|
||||
|
||||
Windows AutoPilot is a collection of technologies used to set up and pre-configure new devices, getting them ready for productive use. In addition, you can use Windows AutoPilot to reset, repurpose and recover devices.</br>
|
||||
Windows Autopilot is a collection of technologies used to set up and pre-configure new devices, getting them ready for productive use. In addition, you can use Windows Autopilot to reset, repurpose and recover devices.</br>
|
||||
This solution enables an IT department to achieve the above with little to no infrastructure to manage, with a process that's easy and simple.
|
||||
|
||||
## Benefits of Windows AutoPilot
|
||||
## Benefits of Windows Autopilot
|
||||
|
||||
Traditionally, IT pros spend a lot of time on building and customizing images that will later be deployed to devices with a perfectly good OS already installed on them. Windows AutoPilot introduces a new approach.
|
||||
Traditionally, IT pros spend a lot of time on building and customizing images that will later be deployed to devices with a perfectly good OS already installed on them. Windows Autopilot introduces a new approach.
|
||||
|
||||
From the users' perspective, it only takes a few simple operations to make their device ready to use.
|
||||
|
||||
From the IT pros' perspective, the only interaction required from the end user, is to connect to a network and to verify their credentials. Everything past that is automated.
|
||||
|
||||
## Windows AutoPilot Scenarios
|
||||
## Windows Autopilot Scenarios
|
||||
|
||||
### Cloud-Driven
|
||||
|
||||
The Cloud-Driven scenario enables you to pre-register devices through the Windows AutoPilot Deployment Program. Your devices will be fully configured with no additional intervention required on the users' side.
|
||||
The Cloud-Driven scenario enables you to pre-register devices through the Windows Autopilot Deployment Program. Your devices will be fully configured with no additional intervention required on the users' side.
|
||||
|
||||
#### The Windows AutoPilot Deployment Program experience
|
||||
#### The Windows Autopilot Deployment Program experience
|
||||
|
||||
The Windows AutoPilot Deployment Program enables you to:
|
||||
The Windows Autopilot Deployment Program enables you to:
|
||||
* Automatically join devices to Azure Active Directory (Azure AD)
|
||||
* Auto-enroll devices into MDM services, such as Microsoft Intune ([*Requires an Azure AD Premium subscription*](#prerequisites))
|
||||
* Restrict the Administrator account creation
|
||||
@ -48,7 +48,7 @@ The Windows AutoPilot Deployment Program enables you to:
|
||||
|
||||
* [Devices must be registered to the organization](#device-registration-and-oobe-customization)
|
||||
* [Company branding needs to be configured](#configure-company-branding-for-oobe)
|
||||
* [Network connectivity to cloud services used by Windows AutoPilot](#network-connectivity-requirements)
|
||||
* [Network connectivity to cloud services used by Windows Autopilot](#network-connectivity-requirements)
|
||||
* Devices have to be pre-installed with Windows 10 Professional, Enterprise or Education, of version 1703 or later
|
||||
* Devices must have access to the internet
|
||||
* [Azure AD Premium P1 or P2](https://www.microsoft.com/cloud-platform/azure-active-directory-features)
|
||||
@ -71,7 +71,7 @@ MDM enrollment ensures policies are applied, apps are installed and setting are
|
||||
|
||||
In order to register devices, you will need to acquire their hardware ID and register it. We are actively working with various hardware vendors to enable them to provide the required information to you, or upload it on your behalf.
|
||||
|
||||
If you would like to capture that information by yourself, you can use the [Get-WindowsAutoPilotInfo PowerShell script](https://www.powershellgallery.com/packages/Get-WindowsAutoPilotInfo), which will generate a .csv file with the device's hardware ID.
|
||||
If you would like to capture that information by yourself, you can use the [Get-WindowsAutopilotInfo PowerShell script](https://www.powershellgallery.com/packages/Get-WindowsAutopilotInfo), which will generate a .csv file with the device's hardware ID.
|
||||
|
||||
Once devices are registered, these are the OOBE customization options available for Windows 10, starting with version 1703:
|
||||
* Skipping Work or Home usage selection (*Automatic*)
|
||||
@ -83,7 +83,7 @@ Once devices are registered, these are the OOBE customization options available
|
||||
For guidance on how to register devices, configure and apply deployment profiles, follow one of the available administration options:
|
||||
* [Microsoft Store for Business](https://docs.microsoft.com/microsoft-store/add-profile-to-devices#manage-autopilot-deployment-profiles)
|
||||
* [Microsoft Intune](https://docs.microsoft.com/intune/enrollment-autopilot)
|
||||
* [Microsoft 365 Business & Office 365 Admin](https://support.office.com/article/Create-and-edit-AutoPilot-profiles-5cf7139e-cfa1-4765-8aad-001af1c74faa)
|
||||
* [Microsoft 365 Business & Office 365 Admin](https://support.office.com/article/Create-and-edit-Autopilot-profiles-5cf7139e-cfa1-4765-8aad-001af1c74faa)
|
||||
* [Partner Center](https://msdn.microsoft.com/partner-center/autopilot)
|
||||
|
||||
##### Configure company branding for OOBE
|
||||
@ -101,7 +101,7 @@ In order for your devices to be auto-enrolled into MDM management, MDM auto-enro
|
||||
|
||||
#### Network connectivity requirements
|
||||
|
||||
The Windows AutoPilot Deployment Program uses a number of cloud services to get your devices to a productive state. This means those services need to be accessible from devices registered as Windows Autopilot devices.
|
||||
The Windows Autopilot Deployment Program uses a number of cloud services to get your devices to a productive state. This means those services need to be accessible from devices registered as Windows Autopilot devices.
|
||||
|
||||
To manage devices behind firewalls and proxy servers, the following URLs need to be accessible:
|
||||
|
||||
|
Reference in New Issue
Block a user