diff --git a/layouts/index.html b/layouts/index.html index bb87a63..fc3e4c4 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -63,18 +63,30 @@
Open PowerShell as Administrator on a Volume License Windows install
- and paste the one-liner. The script asks what you want to activate (Windows, Office,
- Project, Visio), points each at {{ .Site.Params.kmsHost }}:{{ .Site.Params.kmsPort }},
+ and paste one of the one-liners below. Each pre-selects what to activate, points
+ every product at {{ .Site.Params.kmsHost }}:{{ .Site.Params.kmsPort }},
runs the activation, and prints the result.
iwr -UseBasicParsing https://{{ .Site.Params.kmsHost }}{{ .Site.Params.bootstrapURL }} | iex
+ $env:KMS_AUTO='win'; iwr -UseBasicParsing https://{{ .Site.Params.kmsHost }}{{ .Site.Params.bootstrapURL }} | iex
+ $env:KMS_AUTO='office,project,visio'; iwr -UseBasicParsing https://{{ .Site.Params.kmsHost }}{{ .Site.Params.bootstrapURL }} | iex
+ $env:KMS_AUTO='win,office,project,visio'; iwr -UseBasicParsing https://{{ .Site.Params.kmsHost }}{{ .Site.Params.bootstrapURL }} | iex
+
- Prefer to read the script first? View kms-bootstrap.ps1
- or setup-kms.ps1 (a smaller, non-interactive variant
- that just points Windows at the KMS host and runs slmgr /ato).
+ Want to be asked instead? Drop the $env:KMS_AUTO=...; prefix —
+ the script will prompt for each product. Prefer to read it first?
+ View kms-bootstrap.ps1 or
+ setup-kms.ps1 (a smaller variant
+ that just runs slmgr /skms + slmgr /ato).
Want to skip the script entirely? Two cmd.exe lines do the same job:
Both scripts are open-source, single-file, no dependencies. Read before running.
slmgr /skms + /ato. No Office install.