Manually Trigger a Windows Feature Upgrade

Warning: Proceed only if you understand the risks. Manually forcing a Windows Feature Upgrade can bypass important compatibility checks, potentially leading to system instability or hardware issues. Always back up your data beforehand. This process requires administrative privileges and is recommended only for advanced users in testing or controlled environments. Do not use on critical production systems.

Sometimes, Windows Feature Updates fail due to Group Policies, Windows Hello for Business (WHfB), or unknown errors. In such cases, manually triggering the upgrade can help standardize versions, fix issues, or bypass restrictions. This guide shows how to do that using PowerShell.

Use Cases

PowerShell Script

This script downloads the official Windows Upgrade tool to a temp folder and silently starts the upgrade in the background with logging enabled — no user input required.

  1. Open PowerShell as Administrator

  2. Paste and run the script

$dir = "$($env:Temp)\FU"
if (Test-Path $dir) {
    Remove-Item "$($dir)\Win11Upgrade.exe" -Force
} else {
    New-Item -Path $dir -ItemType Directory
}

$webClient = New-Object System.Net.WebClient
$url = 'https://go.microsoft.com/fwlink/?linkid=2171764'
$file = "$($dir)\Win11Upgrade.exe"


$webClient.DownloadFile($url, $file)

Start-Process -FilePath $file -ArgumentList "/quietinstall /skipeula /auto upgrade /copylogs $($dir)"

After the script was deployed to the clients, you can get the status of the process using the following command:

Get-Process Windows10UpgraderApp

 


Revision #2
Created 11 June 2025 09:21:35 by Luca Noah Caprez
Updated 19 June 2025 13:58:25 by Luca Noah Caprez