massgrave.dev/docs/command_line_switches.md

59 lines
7.2 KiB
Markdown
Raw Normal View History

2022-11-07 21:30:36 +01:00
# Command Line Switches
## Switches List
- You can use the below switches in MAS AIO, separate files version and in Powershell one-liner to run in unattended mode.
2024-04-12 05:05:28 +02:00
- If you want to use it in Windows Pre-Activation then check [this](oem-folder.md) page for more details.
2022-11-07 21:30:36 +01:00
2024-09-06 01:05:13 +02:00
| Switches | Meaning |
|-------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `/HWID` | Activate with HWID |
| `/HWID-NoEditionChange` | Some editions don't support HWID, script by default change edition to nearest available to enable HWID activation. This switch can be used to stop this change. You don't need to add `/HWID` switch with this. |
| | |
| `/Ohook` | Install Ohook to activate Office |
| `/Ohook-Uninstall` | Uninstall Ohook |
| | |
| `/KMS38` | Activate with KMS38 |
| `/KMS38-RemoveProtection` | Remove KMS38 protection |
| `/KMS38-NoEditionChange` | Some editions don't support KMS38, script by default change edition to nearest available to enable KMS38 activation. This switch can be used to stop this change. You don't need to add `/KMS38` switch with this. |
| | |
| `/K-Windows` | Activate only Windows with Online KMS |
| `/K-Office` | Activate only Office with Online KMS |
| `/K-ProjectVisio` | Activate only Project/Visio with Online KMS |
| `/K-WindowsOffice` | Activate all Windows and Office with Online KMS |
| `/K-NoEditionChange` | Some editions don't support KMS, script by default change edition to nearest available to enable KMS activation. This switch can be used to stop this change. |
| `/K-NoRenewalTask` | Whenever you run any activation, the script installs the auto-renewal task by default. To NOT auto-install renewal task with activation, use this switch. |
| `/K-Uninstall` | Uninstall Online KMS including renewal tasks |
| `/K-Server-YOURKMSSERVERNAME` | To specify a server address for activation, where YOURKMSSERVERNAME needs to be edited for server name |
| `/K-Port-YOURPORTNAME` | To specify a port for activation, where YOURPORTNAME needs to be edited for port address |
| | |
| `/S` | Run operations in silent mode (no output) |
2022-11-07 21:30:36 +01:00
------------------------------------------------------------------------
## Uses In Powershell One Liner
2024-09-06 01:05:13 +02:00
`& ([ScriptBlock]::Create((irm https://get.activated.win))) /para`
2022-11-07 21:30:36 +01:00
2024-09-06 01:05:13 +02:00
- Replace `/para` in this command with the switches from the above table. You can also use multiple switches. For example, `/HWID /Ohook`
2024-02-12 13:05:09 +01:00
- This Powershell one-liner will work on Windows 8.1 and later versions only.
2024-09-06 01:05:13 +02:00
- Make sure to use the below command beforehand to enable TLs1.2 on older Windows versions.
`[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12`
2024-09-06 01:10:36 +02:00
- To change the edition through the command line, check [here](change_windows_edition.md#manual-edition-change). We didn't automate it in MAS because it requires a reboot in some cases.
2022-11-07 21:30:36 +01:00
------------------------------------------------------------------------
## Rules
- Script will run in unattended mode if any switch is used.
- `/S` switch is not applicable in MAS separate files version scripts.
2024-02-12 13:05:09 +01:00
- All switches are case-insensitive, and work in any order, but must be separated with spaces.
2023-03-16 19:09:16 +01:00
- KMS Uninstall switch will take precedence over other KMS switches.
2023-10-25 18:47:27 +02:00
- KMS38 remove protection switch will take precedence over KMS38 activation.
2022-11-07 21:30:36 +01:00
------------------------------------------------------------------------
## Need help?
2024-04-12 05:05:28 +02:00
- Check [here](troubleshoot.md).