Skip to content

Instantly share code, notes, and snippets.

@lava1879
lava1879 / WhyNotWin11.cmd
Last active December 20, 2025 17:23 — forked from BxOxSxS/WhyNotWin11.cmd
Simple script to force Windows Update on Windows 10 to recheck Windows 11 upgrade eligibility.
@echo off
setlocal EnableDelayedExpansion
fltmc >nul 2>&1
if errorlevel 1 (
echo This script needs admin rights.
powershell -Command "Start-Process cmd -ArgumentList '/c \"%~f0\"' -Verb RunAs"
exit /b
)