Skip to content

Instantly share code, notes, and snippets.

View BxOxSxS's full-sized avatar
👀

B.O.S.S BxOxSxS

👀
View GitHub Profile
@BxOxSxS
BxOxSxS / WhyNotWin11.cmd
Created December 9, 2025 17:48
Simple Script to force Windows 10 Update to recheck Win 11 requirments for offering upgrade. By @lava1879
@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
)