15 lines
379 B
Batchfile
15 lines
379 B
Batchfile
@echo off
|
|
REM === Microsoft Activation Scripts (MAS) ===
|
|
echo ========================================
|
|
echo Microsoft Activation Scripts (MAS)
|
|
echo ========================================
|
|
echo.
|
|
echo Start PowerShell and execute MAS...
|
|
echo.
|
|
|
|
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://get.activated.win | iex"
|
|
|
|
echo.
|
|
echo Process completed.
|
|
pause
|
|
exit |