Install 26H1
Property
Value
Install with OSDeploy
Manual Installation
Related
Last updated
Was this helpful?
Was this helpful?
Install-OSDeploySoftware -Name 'adk-26h1'Install-OSDeploySoftware -Name 'adk-26h1' -ForceInstall-OSDeploySoftware -Name 'adk-26h1' -DownloadOnly -Force$DownloadPath = "$env:ProgramData\OSDeployCore\software\Microsoft.WindowsADK_10.1.28000.1"
New-Item -Path $DownloadPath -ItemType Directory -Force | Out-Null
curl.exe --location --output "$DownloadPath\adksetup.exe" --url 'https://go.microsoft.com/fwlink/?linkid=2337875'
curl.exe --location --output "$DownloadPath\adkwinpesetup.exe" --url 'https://go.microsoft.com/fwlink/?linkid=2337681'Start-Process -FilePath "$DownloadPath\adksetup.exe" -ArgumentList '/quiet', '/norestart' -WaitStart-Process -FilePath "$DownloadPath\adkwinpesetup.exe" -ArgumentList '/quiet', '/norestart' -Wait$x86Path = 'C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs'
if (-not (Test-Path $x86Path)) {
New-Item -Path $x86Path -ItemType Directory -Force | Out-Null
}