This commit is contained in:
DESKTOP-RBH716R\Admin 2022-07-27 08:06:27 +05:30
parent 9d5c2c00c5
commit 2705e216f9
8 changed files with 31 additions and 47 deletions

View File

@ -1,3 +1,2 @@
setwd("~/mas-docs") setwd("~/mas-docs")
setwd("~/mas-docs")
rmarkdown::render_site() rmarkdown::render_site()

View File

@ -510,7 +510,7 @@ Server hosting)</p></li>
class="uri">https://massgrave.dev/</a> is upadated with better reabable class="uri">https://massgrave.dev/</a> is upadated with better reabable
format</p></li> format</p></li>
<li><p>Added an option to download and execute MAS from Powershell<br /> <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> </ul>
<hr /> <hr />
</div> </div>

View File

@ -436,9 +436,10 @@ href="https://isofiles.bd581e55.workers.dev/Windows%2010/">Link2</a> -
</tr> </tr>
<tr class="odd"> <tr class="odd">
<td align="left">Office 2013/2016/2019/2021/O365 C2R Retail</td> <td align="left">Office 2013/2016/2019/2021/O365 C2R Retail</td>
<td align="left"><a <td align="left"><a href="https://tb.rg-adguard.net/public.php">All</a>
href="https://tb.rg-adguard.net/public.php">Link1</a> - <a - <a href="https://pastebin.com/raw/f7Bvub9g">O365</a> - <a
href="https://pastebin.com/raw/gtua34VH">Link2</a></td> href="https://pastebin.com/raw/gtua34VH">2021</a> - <a
href="https://pastebin.com/raw/PLhB7UnK">2019</a></td>
</tr> </tr>
<tr class="even"> <tr class="even">
<td align="left">Office 2013/2016 MSI VL</td> <td align="left">Office 2013/2016 MSI VL</td>

View File

@ -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 # Enable TLSv1.2 for compatibility with older clients
$Tls12 = [Enum]::ToObject([System.Net.SecurityProtocolType], 3072); [System.Net.ServicePointManager]::SecurityProtocol = $Tls12; $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" Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing -OutFile "$env:TEMP\MAS.cmd"
} catch { } catch {
Write-Error $_ 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

View File

@ -399,7 +399,7 @@ div.tocify {
<p><strong>Microsoft Activation Scripts (MAS)</strong></p> <p><strong>Microsoft Activation Scripts (MAS)</strong></p>
<p>A collection of scripts for activating Microsoft products using HWID <p>A collection of scripts for activating Microsoft products using HWID
/ KMS38 / Online KMS activation methods with a focus on open-source / 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 /> <hr />
</div> </div>
<div id="features" class="section level2"> <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>Check Windows-Office Activation Status</li>
<li>Available in All In One &amp; Separate Files Version</li> <li>Available in All In One &amp; Separate Files Version</li>
<li>Fully Open Source</li> <li>Fully Open Source</li>
<li>Less antivirus detections</li> <li>Fewer antivirus detection</li>
<li>Files are either transparent batch script or Official Microsoft <li>Files are either transparent batch script or Official Microsoft
file</li> file</li>
</ul> </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 <li>On Windows 10/11, right click on windows start menu, select
PowerShell or Terminal.</li> PowerShell or Terminal.</li>
<li>Copy-paste the below code and press enter<br /> <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 <li>You will see the activation options, follow onscreen
instructions.</li> instructions.</li>
<li>Thats all.</li> <li>Thats all.</li>
@ -467,9 +467,9 @@ instructions.</li>
<h2>Activations Summary</h2> <h2>Activations Summary</h2>
<table> <table>
<colgroup> <colgroup>
<col width="19%" /> <col width="23%" />
<col width="25%" /> <col width="23%" />
<col width="55%" /> <col width="52%" />
</colgroup> </colgroup>
<thead> <thead>
<tr class="header"> <tr class="header">

View File

@ -87,7 +87,7 @@
- Homepage <https://massgrave.dev/> is upadated with better reabable format - Homepage <https://massgrave.dev/> is upadated with better reabable format
- Added an option to download and execute MAS from Powershell\ - Added an option to download and execute MAS from Powershell\
`iwr https://massgrave.dev/get | iex` `iwr -useb https://massgrave.dev/get | iex`
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@ -2,16 +2,16 @@
All download links leads to genuine files only. All download links leads to genuine files only.
| | | | | |
|:--------------------------------------|:--------------------------------| |:--------------------------------------|:--------------------------------|
| **Windows** | | | **Windows** | |
| Windows 11/10/8.1 | [Link1](https://www.microsoft.com/software-download) - [Link2](https://tb.rg-adguard.net/) | | Windows 11/10/8.1 | [Link1](https://www.microsoft.com/software-download) - [Link2](https://tb.rg-adguard.net/) |
| Windows 7 | [Link1](https://stuff.mtt-m1.workers.dev/Windows%207/) - [Link2](https://isofiles.bd581e55.workers.dev/Windows%207/) | | Windows 7 | [Link1](https://stuff.mtt-m1.workers.dev/Windows%207/) - [Link2](https://isofiles.bd581e55.workers.dev/Windows%207/) |
| Windows 10 Enterprise LTSB/LTSC | [Link1](https://stuff.mtt-m1.workers.dev/Windows%2010/) - [Link2](https://isofiles.bd581e55.workers.dev/Windows%2010/) - [Link3](https://cloud.mail.ru/public/SVLy/hAp8JqCQD) | | Windows 10 Enterprise LTSB/LTSC | [Link1](https://stuff.mtt-m1.workers.dev/Windows%2010/) - [Link2](https://isofiles.bd581e55.workers.dev/Windows%2010/) - [Link3](https://cloud.mail.ru/public/SVLy/hAp8JqCQD) |
| **Office** | | | **Office** | |
| Office 2019/2021 C2R VL | No .ISO available, check below guide | | Office 2019/2021 C2R VL | No .ISO available, check below guide |
| Office 2013/2016/2019/2021/O365 C2R Retail | [Link1](https://tb.rg-adguard.net/public.php) - [Link2](https://pastebin.com/raw/gtua34VH) | | Office 2013/2016/2019/2021/O365 C2R Retail | [All](https://tb.rg-adguard.net/public.php) - [O365](https://pastebin.com/raw/f7Bvub9g) - [2021](https://pastebin.com/raw/gtua34VH) - [2019](https://pastebin.com/raw/PLhB7UnK) |
| Office 2013/2016 MSI VL | [Link1](https://opendirectory.luzea.de/Enthousiast/Office/) | | Office 2013/2016 MSI VL | [Link1](https://opendirectory.luzea.de/Enthousiast/Office/) |
Full Collection Through SVF Files can be found [here](https://opendirectory.luzea.de/GezoeSloog/).\ Full Collection Through SVF Files can be found [here](https://opendirectory.luzea.de/GezoeSloog/).\
Thanks to GezoeSloog, microtechton, Luzea, Enthousiast, rg-adguard for providing download links. Thanks to GezoeSloog, microtechton, Luzea, Enthousiast, rg-adguard for providing download links.

View File

@ -2,7 +2,7 @@
**Microsoft Activation Scripts (MAS)** **Microsoft Activation Scripts (MAS)**
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. A collection of scripts for activating Microsoft products using HWID / KMS38 / Online KMS activation methods with a focus on open-source code, fewer antivirus detection, and user-friendliness.
------------------------------------------------------------------------ ------------------------------------------------------------------------
@ -18,7 +18,7 @@ A collection of scripts for activating Microsoft products using HWID / KMS38 / O
- Check Windows-Office Activation Status - Check Windows-Office Activation Status
- Available in All In One & Separate Files Version - Available in All In One & Separate Files Version
- Fully Open Source - Fully Open Source
- Less antivirus detection's - Fewer antivirus detection
- Files are either transparent batch script or Official Microsoft file - Files are either transparent batch script or Official Microsoft file
------------------------------------------------------------------------ ------------------------------------------------------------------------
@ -36,7 +36,7 @@ Last Release - v1.6 (25-July-2022)\
- On Windows 10/11, right click on windows start menu, select PowerShell or Terminal. - On Windows 10/11, right click on windows start menu, select PowerShell or Terminal.
- Copy-paste the below code and press enter\ - Copy-paste the below code and press enter\
`iwr https://massgrave.dev/get | iex` `iwr -useb https://massgrave.dev/get | iex`
- You will see the activation options, follow onscreen instructions. - You will see the activation options, follow onscreen instructions.
- That's all. - That's all.
@ -55,7 +55,7 @@ Last Release - v1.6 (25-July-2022)\
## Activations Summary ## Activations Summary
| Activation Type | Supported Product | Activation Period | | Activation Type | Supported Product | Activation Period |
|:----------------|:---------------------|:------------------------------------------------| |:----------------|:----------------|:-------------------------------------|
| HWID | Windows 10-11 | Permanent | | HWID | Windows 10-11 | Permanent |
| KMS38 | Windows 10-11-Server | Until the year 2038 | | KMS38 | Windows 10-11-Server | Until the year 2038 |
| Online KMS | Windows / Office | 180 Days. Lifetime Activation With Renewal Task | | Online KMS | Windows / Office | 180 Days. Lifetime Activation With Renewal Task |