diff options
| author | DESKTOP-V026VQF\Home | 2023-01-09 08:19:51 +0000 |
|---|---|---|
| committer | DESKTOP-V026VQF\Home | 2023-01-09 08:19:51 +0000 |
| commit | e4022303c0b96007a65fa64d67db70bf9135906b (patch) | |
| tree | 427b30e1c73fa58470c5ebb669e8d5224df635c6 | |
| parent | 48cc759920f59260fe3f9a3a79ff0be277174cc9 (diff) | |
| download | massgrave.dev-e4022303c0b96007a65fa64d67db70bf9135906b.zip | |
Rmarkdown and TB link update
| -rw-r--r-- | .Rhistory | 2 | ||||
| -rw-r--r-- | _site/change_edition.html | 31 | ||||
| -rw-r--r-- | _site/changelog.html | 31 | ||||
| -rw-r--r-- | _site/check_activation_status.html | 31 | ||||
| -rw-r--r-- | _site/command_line_switches.html | 31 | ||||
| -rw-r--r-- | _site/contactus.html | 31 | ||||
| -rw-r--r-- | _site/credits.html | 31 | ||||
| -rw-r--r-- | _site/faq.html | 31 | ||||
| -rw-r--r-- | _site/genuine-installation-media.html | 41 | ||||
| -rw-r--r-- | _site/hwid.html | 31 | ||||
| -rw-r--r-- | _site/index.html | 31 | ||||
| -rw-r--r-- | _site/install_hwid_key.html | 31 | ||||
| -rw-r--r-- | _site/kms38.html | 31 | ||||
| -rw-r--r-- | _site/oem-folder.html | 31 | ||||
| -rw-r--r-- | _site/office-license-is-not-genuine.html | 31 | ||||
| -rw-r--r-- | _site/online_kms.html | 31 | ||||
| -rw-r--r-- | _site/site_libs/header-attrs-2.18/header-attrs.js (renamed from _site/site_libs/header-attrs-2.14/header-attrs.js) | 0 | ||||
| -rw-r--r-- | _site/troubleshoot.html | 31 | ||||
| -rw-r--r-- | _site/unreadable-codes-in-mas-aio.html | 31 | ||||
| -rw-r--r-- | _site/unsupported_products_activation.html | 31 | ||||
| -rw-r--r-- | genuine-installation-media.md | 18 |
21 files changed, 268 insertions, 320 deletions
@@ -1,2 +1,4 @@ setwd("~/mas-docs") rmarkdown::render_site() +setwd("~/mas-docs") +rmarkdown::render_site() diff --git a/_site/change_edition.html b/_site/change_edition.html index 68d91c0..9cd15fc 100644 --- a/_site/change_edition.html +++ b/_site/change_edition.html @@ -13,7 +13,7 @@ <title>change_edition</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/changelog.html b/_site/changelog.html index 6c592d5..14a1908 100644 --- a/_site/changelog.html +++ b/_site/changelog.html @@ -13,7 +13,7 @@ <title>changelog</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/check_activation_status.html b/_site/check_activation_status.html index 83de367..198d1d5 100644 --- a/_site/check_activation_status.html +++ b/_site/check_activation_status.html @@ -13,7 +13,7 @@ <title>check_activation_status</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/command_line_switches.html b/_site/command_line_switches.html index 015cb42..7e8b189 100644 --- a/_site/command_line_switches.html +++ b/_site/command_line_switches.html @@ -13,7 +13,7 @@ <title>command_line_switches</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/contactus.html b/_site/contactus.html index 52aafd8..1c9a3d1 100644 --- a/_site/contactus.html +++ b/_site/contactus.html @@ -13,7 +13,7 @@ <title>contactus</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/credits.html b/_site/credits.html index 55b7023..b4e4326 100644 --- a/_site/credits.html +++ b/_site/credits.html @@ -13,7 +13,7 @@ <title>credits</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/faq.html b/_site/faq.html index 1bfb877..15f6701 100644 --- a/_site/faq.html +++ b/_site/faq.html @@ -13,7 +13,7 @@ <title>faq</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/genuine-installation-media.html b/_site/genuine-installation-media.html index 07417ef..5d7ca2e 100644 --- a/_site/genuine-installation-media.html +++ b/_site/genuine-installation-media.html @@ -13,7 +13,7 @@ <title>genuine-installation-media</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
@@ -406,8 +403,8 @@ div.tocify { <p>All download links leads to genuine files only.</p>
<table>
<colgroup>
-<col width="51%" />
-<col width="48%" />
+<col width="40%" />
+<col width="60%" />
</colgroup>
<thead>
<tr class="header">
@@ -420,7 +417,7 @@ div.tocify { <td align="left">Windows 11/10/8.1</td>
<td align="left"><a
href="https://www.microsoft.com/software-download">Link1</a> - <a
-href="https://eraseyourknees.github.io/msdl/">Link2</a></td>
+href="https://ave9858.github.io/msdl/">Link2</a></td>
</tr>
<tr class="even">
<td align="left">Windows 7</td>
@@ -433,8 +430,8 @@ href="https://isofiles.bd581e55.workers.dev/Windows%207/">Link2</a></td> <td align="left"><a
href="https://opendirectory.luzea.de/luzea/Windows_10_Enterprise_LTSC_2021/">Link1</a>
- <a href="https://stuff.mtt-m1.workers.dev/Windows%2010/">Link2</a> -
-<a
-href="https://isofiles.bd581e55.workers.dev/Windows%2010/">Link3</a></td>
+<a href="https://isofiles.bd581e55.workers.dev/Windows%2010/">Link3</a>
+(Refresh if it doesn’t load)</td>
</tr>
<tr class="even">
<td align="left"><strong>Office</strong></td>
diff --git a/_site/hwid.html b/_site/hwid.html index 6282019..b099c14 100644 --- a/_site/hwid.html +++ b/_site/hwid.html @@ -13,7 +13,7 @@ <title>hwid</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/index.html b/_site/index.html index 31f1aa5..33c6555 100644 --- a/_site/index.html +++ b/_site/index.html @@ -13,7 +13,7 @@ <title>index</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/install_hwid_key.html b/_site/install_hwid_key.html index d5a111f..c4c6001 100644 --- a/_site/install_hwid_key.html +++ b/_site/install_hwid_key.html @@ -13,7 +13,7 @@ <title>install_hwid_key</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/kms38.html b/_site/kms38.html index e39d821..24070b7 100644 --- a/_site/kms38.html +++ b/_site/kms38.html @@ -13,7 +13,7 @@ <title>kms38</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/oem-folder.html b/_site/oem-folder.html index 105b786..6cd15ab 100644 --- a/_site/oem-folder.html +++ b/_site/oem-folder.html @@ -13,7 +13,7 @@ <title>oem-folder</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/office-license-is-not-genuine.html b/_site/office-license-is-not-genuine.html index 3b52996..0e265f3 100644 --- a/_site/office-license-is-not-genuine.html +++ b/_site/office-license-is-not-genuine.html @@ -13,7 +13,7 @@ <title>office-license-is-not-genuine</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/online_kms.html b/_site/online_kms.html index 021cb56..4969d67 100644 --- a/_site/online_kms.html +++ b/_site/online_kms.html @@ -13,7 +13,7 @@ <title>online_kms</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/site_libs/header-attrs-2.14/header-attrs.js b/_site/site_libs/header-attrs-2.18/header-attrs.js index dd57d92..dd57d92 100644 --- a/_site/site_libs/header-attrs-2.14/header-attrs.js +++ b/_site/site_libs/header-attrs-2.18/header-attrs.js diff --git a/_site/troubleshoot.html b/_site/troubleshoot.html index 0253d8e..82811d3 100644 --- a/_site/troubleshoot.html +++ b/_site/troubleshoot.html @@ -13,7 +13,7 @@ <title>troubleshoot</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/unreadable-codes-in-mas-aio.html b/_site/unreadable-codes-in-mas-aio.html index f16d24b..f12c402 100644 --- a/_site/unreadable-codes-in-mas-aio.html +++ b/_site/unreadable-codes-in-mas-aio.html @@ -13,7 +13,7 @@ <title>unreadable-codes-in-mas-aio</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/_site/unsupported_products_activation.html b/_site/unsupported_products_activation.html index 352d3dd..ccf674d 100644 --- a/_site/unsupported_products_activation.html +++ b/_site/unsupported_products_activation.html @@ -13,7 +13,7 @@ <title>unsupported_products_activation</title>
-<script src="site_libs/header-attrs-2.14/header-attrs.js"></script>
+<script src="site_libs/header-attrs-2.18/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
@@ -132,11 +132,15 @@ $(document).ready(function () { href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
- // mark it active
- menuAnchor.tab('show');
-
- // if it's got a parent navbar menu mark it active as well
- menuAnchor.closest('li.dropdown').addClass('active');
+ // mark the anchor link active (and if it's in a dropdown, also mark that active)
+ var dropdown = menuAnchor.closest('li.dropdown');
+ if (window.bootstrap) { // Bootstrap 4+
+ menuAnchor.addClass('active');
+ dropdown.find('> .dropdown-toggle').addClass('active');
+ } else { // Bootstrap 3
+ menuAnchor.parent().addClass('active');
+ dropdown.addClass('active');
+ }
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
@@ -165,8 +169,8 @@ $(document).ready(function () { border-radius: 4px;
}
-.tabset-dropdown > .nav-tabs > li.active:before {
- content: "";
+.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
+ content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
@@ -174,16 +178,9 @@ $(document).ready(function () { }
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
- content: "";
- border: none;
-}
-
-.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
- content: "";
+ content: "\e258";
font-family: 'Glyphicons Halflings';
- display: inline-block;
- padding: 10px;
- border-right: 1px solid #ddd;
+ border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
diff --git a/genuine-installation-media.md b/genuine-installation-media.md index 32fd34a..fe6a670 100644 --- a/genuine-installation-media.md +++ b/genuine-installation-media.md @@ -2,15 +2,15 @@ All download links leads to genuine files only.
-| **Windows** | |
-|:------------------------------------|:----------------------------------|
-| Windows 11/10/8.1 | [Link1](https://www.microsoft.com/software-download) - [Link2](https://eraseyourknees.github.io/msdl/) |
-| 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://opendirectory.luzea.de/luzea/Windows_10_Enterprise_LTSC_2021/) - [Link2](https://stuff.mtt-m1.workers.dev/Windows%2010/) - [Link3](https://isofiles.bd581e55.workers.dev/Windows%2010/) |
-| **Office** | |
-| 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 2019/2021 C2R VL | No .ISO available, check below guide |
-| Office 2010/2013/2016 MSI VL | [Link1](https://opendirectory.luzea.de/Enthousiast/Office/) |
+| **Windows** | |
+|:-------------------------|:--------------------------------------|
+| Windows 11/10/8.1 | [Link1](https://www.microsoft.com/software-download) - [Link2](https://ave9858.github.io/msdl/) |
+| 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://opendirectory.luzea.de/luzea/Windows_10_Enterprise_LTSC_2021/) - [Link2](https://stuff.mtt-m1.workers.dev/Windows%2010/) - [Link3](https://isofiles.bd581e55.workers.dev/Windows%2010/) (Refresh if it doesn't load) |
+| **Office** | |
+| 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 2019/2021 C2R VL | No .ISO available, check below guide |
+| Office 2010/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/).\
Thanks to GezoeSloog, microtechton, Luzea, Enthousiast, rg-adguard, abbodi1406 for providing download links.
|
