Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pub:mas_activation [2022/05/16 05:58] – [MAS 1.5] derekpub:mas_activation [2023/03/29 08:32] (current) – [MAS 1.6] derek
Line 1: Line 1:
 == MAS Activation == MAS Activation
 +  * [[https://github.com/massgravel/Microsoft-Activation-Scripts|MAS]]
 +  * [[https://github.com/abbodi1406/KMS_VL_ALL_AIO|KMS_VL]]
 +  * [[https://github.com/luzeadev/winactivate|Winactivate]]
 +  * use HWID for Win10 only (permanent); KMS38 for Servers; KMS for office
  
 +=== bin
 +<code powershell>
 +mkdir -Force c:\drv 
 +cd c:\drv
 +$download_url = "https://repo.sxl.net/win/bin/curl.exe"
 +$local_path = "c:\drv\curl.exe"
 +$WebClient = New-Object System.Net.WebClient
 +$WebClient.DownloadFile($download_url, $local_path)
 +
 +.\curl.exe -o wget.exe -L http://repo.sxl.net/win/bin/wget.exe
 +.\curl.exe -o 7za.exe -L http://repo.sxl.net/win/bin/7za.exe
 +dir
 +
 +
 +</code>
 +
 +=== MAS 1.8
 +
 +  irm https://massgrave.dev/get | iex
 +
 +=== MAS 1.6
 +
 +  iwr -useb https://massgrave.dev/get | iex
 +
 +* Office: 3 2 .. 0 4 .. 0 7 8
 === MAS 1.5 === MAS 1.5
 <code powershell> <code powershell>
-administrator +admin powershell 
-# MAS 1.5+
 mkdir -force c:\drv\mas ; sl c:\drv\mas mkdir -force c:\drv\mas ; sl c:\drv\mas
-curl.exe -o mas.7z -L "https://github.com/massgravel/Microsoft-Activation-Scripts/releases/download/1.5/MAS_1.5_Password_1234.7z" +$WebClient = New-Object System.Net.WebClient 
-7z x -p1234 mas.7z+$WebClient.DownloadFile("http://repo.sxl.net/win/bin/curl.exe", "C:\drv\mas\curl.exe"
 +curl.exe -o 7za.exe -L http://repo.sxl.net/win/bin/7za.exe 
 + 
 +# MAS 1.5 
 +curl.exe -o mas.7z -L "http://repo.sxl.net/win/bin/MAS_1.5_Password_1234.7z" 
 +7za.exe x -p1234 mas.7z
  
 # run the menu # run the menu
 cd c:\drv\mas\MAS_1.5\All-In-One-Version cd c:\drv\mas\MAS_1.5\All-In-One-Version
-.\MAS_1.5_AIO_CRC32_21D20776.cmd+MAS_1.5_AIO_CRC32_21D20776.cmd
  
-# win only - 1 1+# win only - 1 1 2 8
 # office only - 3 2 x i x 9 8 # office only - 3 2 x i x 9 8
 </code> </code>