update
This commit is contained in:
@ -510,7 +510,7 @@ Server hosting)</p></li>
|
||||
class="uri">https://massgrave.dev/</a> is upadated with better reabable
|
||||
format</p></li>
|
||||
<li><p>Added an option to download and execute MAS from Powershell<br />
|
||||
<code>iwr https://massgrave.dev/get | iex</code></p></li>
|
||||
<code>iwr -useb https://massgrave.dev/get | iex</code></p></li>
|
||||
</ul>
|
||||
<hr />
|
||||
</div>
|
||||
|
@ -436,9 +436,10 @@ href="https://isofiles.bd581e55.workers.dev/Windows%2010/">Link2</a> -
|
||||
</tr>
|
||||
<tr class="odd">
|
||||
<td align="left">Office 2013/2016/2019/2021/O365 C2R Retail</td>
|
||||
<td align="left"><a
|
||||
href="https://tb.rg-adguard.net/public.php">Link1</a> - <a
|
||||
href="https://pastebin.com/raw/gtua34VH">Link2</a></td>
|
||||
<td align="left"><a href="https://tb.rg-adguard.net/public.php">All</a>
|
||||
- <a href="https://pastebin.com/raw/f7Bvub9g">O365</a> - <a
|
||||
href="https://pastebin.com/raw/gtua34VH">2021</a> - <a
|
||||
href="https://pastebin.com/raw/PLhB7UnK">2019</a></td>
|
||||
</tr>
|
||||
<tr class="even">
|
||||
<td align="left">Office 2013/2016 MSI VL</td>
|
||||
|
@ -1,22 +1,3 @@
|
||||
function Exit-Script {
|
||||
|
||||
[CmdletBinding()]
|
||||
param(
|
||||
[Parameter(Position = 0)]
|
||||
[int]
|
||||
$ExitCode = 0
|
||||
)
|
||||
|
||||
process {
|
||||
if (Test-Path -Path "$env:TEMP\MAS.cmd") {
|
||||
Remove-Item -Path "$env:TEMP\MAS.cmd" -Force
|
||||
}
|
||||
|
||||
exit $ExitCode
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# Enable TLSv1.2 for compatibility with older clients
|
||||
$Tls12 = [Enum]::ToObject([System.Net.SecurityProtocolType], 3072); [System.Net.ServicePointManager]::SecurityProtocol = $Tls12;
|
||||
|
||||
@ -26,8 +7,11 @@ try {
|
||||
Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing -OutFile "$env:TEMP\MAS.cmd"
|
||||
} catch {
|
||||
Write-Error $_
|
||||
Exit-Script -ExitCode 1
|
||||
Return
|
||||
}
|
||||
|
||||
if (Test-Path -Path "$env:TEMP\MAS.cmd") {
|
||||
Start-Process -FilePath "$env:TEMP\MAS.cmd" -Wait
|
||||
Remove-Item -Path "$env:TEMP\MAS.cmd" -Force
|
||||
}
|
||||
|
||||
Start-Process -FilePath "$env:TEMP\MAS.cmd" -Wait
|
||||
Exit-Script
|
||||
|
@ -399,7 +399,7 @@ div.tocify {
|
||||
<p><strong>Microsoft Activation Scripts (MAS)</strong></p>
|
||||
<p>A collection of scripts for activating Microsoft products using HWID
|
||||
/ KMS38 / Online KMS activation methods with a focus on open-source
|
||||
code, less antivirus detection, and user-friendliness.</p>
|
||||
code, fewer antivirus detection, and user-friendliness.</p>
|
||||
<hr />
|
||||
</div>
|
||||
<div id="features" class="section level2">
|
||||
@ -415,7 +415,7 @@ code, less antivirus detection, and user-friendliness.</p>
|
||||
<li>Check Windows-Office Activation Status</li>
|
||||
<li>Available in All In One & Separate Files Version</li>
|
||||
<li>Fully Open Source</li>
|
||||
<li>Less antivirus detection’s</li>
|
||||
<li>Fewer antivirus detection</li>
|
||||
<li>Files are either transparent batch script or Official Microsoft
|
||||
file</li>
|
||||
</ul>
|
||||
@ -438,7 +438,7 @@ href="https://gitlab.com/massgrave/microsoft-activation-scripts">GitLab</a></p>
|
||||
<li>On Windows 10/11, right click on windows start menu, select
|
||||
PowerShell or Terminal.</li>
|
||||
<li>Copy-paste the below code and press enter<br />
|
||||
<code>iwr https://massgrave.dev/get | iex</code></li>
|
||||
<code>iwr -useb https://massgrave.dev/get | iex</code></li>
|
||||
<li>You will see the activation options, follow onscreen
|
||||
instructions.</li>
|
||||
<li>That’s all.</li>
|
||||
@ -467,9 +467,9 @@ instructions.</li>
|
||||
<h2>Activations Summary</h2>
|
||||
<table>
|
||||
<colgroup>
|
||||
<col width="19%" />
|
||||
<col width="25%" />
|
||||
<col width="55%" />
|
||||
<col width="23%" />
|
||||
<col width="23%" />
|
||||
<col width="52%" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr class="header">
|
||||
|
Reference in New Issue
Block a user