Skip to content

Commit 32356f2

Browse files
Merge pull request #7588 from MicrosoftDocs/main
Auto Publish – main to live - 2025-10-13 17:30 UTC
2 parents b385b06 + 15df273 commit 32356f2

6 files changed

Lines changed: 29 additions & 25 deletions

File tree

WindowsServerDocs/get-started/enable-hotpatch-azure-arc-enabled-servers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Before you can enable Hotpatch on Arc-enabled servers for Windows Server 2025, y
3232

3333
- The physical or virtual machine you intend to enable Hotpatch on needs to satisfy the requirements for [Virtualization-based security](/windows-hardware/design/device-experiences/oem-vbs) (VBS), also known as [Virtual Secure Mode](/virtualization/hyper-v-on-windows/tlfs/vsm) (VSM). At bare minimum, the machine has to use Unified extensible firmware interface (UEFI) with Secure boot enabled. Therefore, for a virtual machine (VM) on Hyper-V, it needs to be a [Generation 2 virtual machine](/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/dn282285(v=ws.11)).
3434

35-
- An Azure subscription. If you don't already have one, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
35+
- An Azure subscription. If you don't already have one, create a [free account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn) before you begin.
3636

3737
- Your server and infrastructure should satisfy the [Connected Machine agent prerequisites](/azure/azure-arc/servers/prerequisites) for enabling Azure Arc on a server.
3838

WindowsServerDocs/get-started/install-windows-server.md

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Install Windows Server from installation media
33
description: Learn how to create a bootable USB flash drive or DVD media to deploy Windows Server on physical and virtual hardware.
4-
ms.date: 01/27/2025
4+
ms.date: 10/13/2025
55
ms.topic: how-to
66
author: dknappettmsft
77
ms.author: daknappe
@@ -64,10 +64,10 @@ robocopy $source $destination /COPYALL /Z /E /SEC /R:3 /W:3
6464
6565
# Make USB drive bootable
6666
$usbDriveNumber = (Get-WmiObject -Class Win32_DiskDrive | Where-Object {$_.InterfaceType -eq "USB" -and $_.DeviceID -like "*$usbDriveLetter"}).Index
67-
bootsect /nt60 $usbDriveLetter | Out-Null
67+
bootsect /nt60 $usbDriveLetter`:
6868
6969
# Task completion notification
70-
Write-Host "Copy operation complete"
70+
Write-Host "USB Creation Complete!"
7171
Start-Sleep -Seconds 2
7272
```
7373

@@ -80,7 +80,7 @@ This script makes your USB drive bootable in FAT32 format. The FAT32 filesystem
8080
$usbDriveLetter = Read-Host "Enter USB drive letter (Ex: E)"
8181
8282
# Format USB drive
83-
Format-Volume -DriveLetter $usbDriveLetter -FileSystem FAT32 -NewFileSystemLabel "ServerUSB" -Confirm:$false
83+
Format-Volume -DriveLetter $usbDriveLetter -FileSystem FAT32 -NewFileSystemLabel "ServerUSB" -Confirm:$false -Force | Out-Null
8484
8585
# Select ISO file mount point
8686
$isoMountPointDriveLetter = Read-Host "Enter ISO mount point drive letter (Ex: F)"
@@ -92,20 +92,25 @@ robocopy $source $destination /COPYALL /Z /E /SEC /R:3 /W:3 /XF "$($isoMountPoin
9292
9393
# Split install.wim file
9494
Write-Host "[--- Splitting install.wim ---]"
95-
Start-Sleep -Seconds 2
9695
Dism /Split-Image /ImageFile:"$($isoMountPointDriveLetter):\sources\install.wim" /SWMFile:"$($usbDriveLetter):\sources\install.swm" /FileSize:3800
96+
Write-Host "" | Start-Sleep -Seconds 2
9797
98-
# Copy split install.wim files to USB drive
99-
$source = "$($isoMountPointDriveLetter):\sources\"
100-
$destination = "$($usbDriveLetter):\sources\"
101-
robocopy $source $destination /COPYALL /Z /E /SEC /R:3 /W:3 *.swm
98+
# Verify .swm files are on the USB drive
99+
Write-Host "[--- Verifying split .swm files ---]"
100+
Write-Host ""
101+
$swmFiles = Get-ChildItem "$($usbDriveLetter):\sources\*.swm"
102+
Write-Host "Number of .swm files found: $($swmFiles.Count)"
103+
$swmFiles | ForEach-Object { Write-Host $_.Name }
104+
Write-Host "" | Start-Sleep -Seconds 2
102105
103106
# Make USB drive bootable
104-
$usbDriveNumber = (Get-WmiObject -Class Win32_DiskDrive | Where-Object {$_.InterfaceType -eq "USB" -and $_.DeviceID -like "*$usbDriveLetter"}).Index
105-
bootsect /nt60 $usbDriveLetter | Out-Null
107+
Write-Host "Making USB drive bootable..."
108+
Write-Host "" | Start-Sleep -Seconds 2
109+
bootsect /nt60 $usbDriveLetter`:
110+
Write-Host ""
106111
107112
# Task completion notification
108-
Write-Host "Copy operation complete"
113+
Write-Host "USB Creation Complete!"
109114
Start-Sleep -Seconds 2
110115
```
111116

@@ -144,14 +149,14 @@ Once modifications are made to the boot order and you select to boot from either
144149
1. Under **Select keyboard settings**, select your keyboard language, then select **Next**.
145150
1. Under **Select setup option**, select **Install Windows Server**, select **I agree everything will be deleted including files, apps, and settings**, then select **Next**.
146151
1. Under **Choose a licensing method**, select the option that best serves your environment, then select **Next**:
147-
152+
148153
1. **Use a product key** - This option is for users who have an OEM, Retail, or Volume License (VL) key. If this license type is selected, proceed with the next steps.
149154

150155
1. **Pay-as-you-go** - This option is for users who desire to use their Azure subscription license. This option is only available for Windows Server 2025 and has its own set of [prerequisites](windows-server-pay-as-you-go.md?tabs=gui%2Cazureportal#prerequisites). If this license type is selected, see [Set up Windows Server Pay-as-you-go](windows-server-pay-as-you-go.md?tabs=gui%2Cazureportal#set-up-windows-server-pay-as-you-go) to continue the installation process.
151-
156+
152157
1. Under **Select image**, select your Windows Server version, then select **Next**.
153158
1. Under **Applicable notices and license terms**, review the software terms, then select **Accept**.
154-
1. Under **Select location to install Windows Server**, select the disk which you want to install Windows Server, then select **Next**.
159+
1. Under **Select location to install Windows Server**, select the disk that you want to install Windows Server, then select **Next**.
155160
1. Under **Ready to install**, select **Install**.
156161
1. Once your device reboots a few times, the **License terms** appear. Select **Accept** to proceed.
157162
1. Under **Customize settings**, provide a complex password for the Administrator account, then select **Finish**.
@@ -165,14 +170,14 @@ Once modifications are made to the boot order and you select to boot from either
165170
1. Under **Select keyboard settings**, select your keyboard language, then select **Next**.
166171
1. Under **Select setup option**, select **Install Windows Server**, select **I agree everything will be deleted including files, apps, and settings**, then select **Next**.
167172
1. Under **Choose a licensing method**, select the option that best serves your environment, then select **Next**:
168-
173+
169174
1. **Use a product key** - This option is for users who have an OEM, Retail, or Volume License (VL) key. If this license type is selected, proceed with the next steps.
170175

171176
1. **Pay-as-you-go** - This option is for users who desire to use their Azure subscription license. This option is only available for Windows Server 2025 and has its own set of [prerequisites](windows-server-pay-as-you-go.md?tabs=gui%2Cazureportal#prerequisites). If this license type is selected, see [Set up Windows Server Pay-as-you-go](windows-server-pay-as-you-go.md?tabs=gui%2Cazureportal#set-up-windows-server-pay-as-you-go) to continue the installation process.
172-
177+
173178
1. Under **Select image**, select your Windows Server version, then select **Next**.
174179
1. Under **Applicable notices and license terms**, review the software terms, then select **Accept**.
175-
1. Under **Select location to install Windows Server**, select the disk which you want to install Windows Server, then select **Next**.
180+
1. Under **Select location to install Windows Server**, select the disk that you want to install Windows Server, then select **Next**.
176181
1. Under **Ready to install**, select **Install**.
177182
1. Once your device reboots a few times, you're prompted to change the Administrator password. Hit the **Enter** button.
178183
1. Provide a complex password for the Administrator account, then hit the **Tab** button.
@@ -237,4 +242,3 @@ Once modifications are made to the boot order and you select to boot from either
237242
- [Hyper-V Technology Overview](/windows-server/virtualization/hyper-v/hyper-v-overview)
238243

239244
- [Overview of file sharing using the SMB 3 protocol in Windows Server](/windows-server/storage/file-server/file-server-smb-overview)
240-

WindowsServerDocs/manage/windows-admin-center/azure/manage-arc-hybrid-machines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This section provides the requirements for using Windows Admin Center in the Azu
6666

6767
### Azure account with an active subscription
6868

69-
You'll need an Azure account with an active subscription to deploy Windows Admin Center. If you don't have one already, you can [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
69+
You'll need an Azure account with an active subscription to deploy Windows Admin Center. If you don't have one already, you can [create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
7070

7171
During the deployment of Windows Admin Center, we'll attempt to register the *Microsoft.HybridConnectivity* resource provider for your subscription.
7272

WindowsServerDocs/manage/windows-admin-center/azure/manage-hci-clusters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ This section provides the requirements for using Windows Admin Center in the Azu
7575

7676
### Azure account with an active subscription
7777

78-
You'll need an Azure account with an active subscription to deploy Windows Admin Center. If you don't have one already, you can [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
78+
You'll need an Azure account with an active subscription to deploy Windows Admin Center. If you don't have one already, you can [create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
7979

8080
During the deployment of Windows Admin Center, you'll register the *Microsoft.HybridConnectivity* resource provider for your subscription.
8181

WindowsServerDocs/manage/windows-admin-center/azure/manage-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This section provides the requirements for using Windows Admin Center in the Azu
5353

5454
### Azure account with an active subscription
5555

56-
You need an Azure account with an active subscription to deploy Windows Admin Center. If you don't have one already, you can [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
56+
You need an Azure account with an active subscription to deploy Windows Admin Center. If you don't have one already, you can [create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
5757

5858
### Azure permissions
5959

WindowsServerDocs/storage/storage-spaces/configure-azure-monitor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ To give an overview, [Azure Log Analytics](/azure/azure-monitor/platform/agent-w
7070

7171
To understand the supported configuration, review [supported Windows operating systems](/azure/azure-monitor/platform/log-analytics-agent#supported-windows-operating-systems) and [network firewall configuration](/azure/azure-monitor/platform/log-analytics-agent#network-firewall-requirements).
7272

73-
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
73+
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn) before you begin.
7474

7575
#### Login in to Azure Portal
7676

77-
Log in to the Azure portal at [https://portal.azure.com](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
77+
Log in to the Azure portal at [https://portal.azure.com](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
7878

7979
#### Create a workspace
8080

0 commit comments

Comments
 (0)