massgrave.dev/docs/check_activation_status.md

26 lines
1.1 KiB
Markdown
Raw Normal View History

2022-07-25 20:03:20 +02:00
# Check Activation Status
2024-04-12 05:05:28 +02:00
MAS includes 2 scripts for checking activation status in Windows and Office (WMI, VBS) which are taken from abbodi1406's [KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO/).
2023-10-25 18:47:27 +02:00
Read below to see the differences between the 2 scripts.
2022-07-25 20:03:20 +02:00
------------------------------------------------------------------------
2023-10-24 15:46:54 +02:00
## Check Activation Status [VBS]
2022-07-25 20:03:20 +02:00
2023-10-24 15:46:54 +02:00
- Queries and executes official licensing VBScripts: slmgr.vbs for Windows, ospp.vbs for Office.
- Shows the activation expiration date for Windows.
- Office 2010 ospp.vbs shows very little information.
2022-07-25 20:03:20 +02:00
------------------------------------------------------------------------
2023-10-24 15:46:54 +02:00
## Check Activation Status [WMI]
2022-07-25 20:03:20 +02:00
2023-10-24 15:46:54 +02:00
- Queries and executes WMI functions using wmic.exe or VBScripts.
- Shows extra information (SKU ID, key channel).
- Shows the activation expiration date for all products.
- Shows more detailed information for Office 2010.
- Can show the status of Office UWP apps.
- Implement vNextDiag.ps1 functions to **detect new Office 365 vNext licenses and subscriptions**.
2022-07-25 20:03:20 +02:00
------------------------------------------------------------------------