Rearm Windows Activation before creating MSAcc

This commit is contained in:
Manuel Thalmann 2024-08-27 03:25:19 +02:00
parent 5778f49fa1
commit acf1a49a1f

View file

@ -91,6 +91,12 @@ $null = New-Module {
Register-Setup -DefaultUser;
Enable-OneShotListener;
Enable-UAC;
# Reset Windows activation status
# Otherwise the login won't work - Windows is fricking frustrating.
slmgr /upk;
slmgr /cpky;
slmgr /rearm;
Restart-Intermediate -CurrentUser;
exit;
}