diff options
| author | WindowsAddict | 2025-11-11 09:16:32 +0000 |
|---|---|---|
| committer | WindowsAddict | 2025-11-11 09:16:32 +0000 |
| commit | 979dfb750bb5589bb7a257f082969ca59a7fad19 (patch) | |
| tree | afb678e5a2d5a873429fcff43b29d3971e894e01 /MAS/All-In-One-Version-KL | |
| parent | 82f7cfe5f4615b929710696cc815bb0e46fcb0e5 (diff) | |
| download | Microsoft-Activation-Scripts-979dfb750bb5589bb7a257f082969ca59a7fad19.zip | |
Update as per abbodi1406's CAS
No KMS Client info when ADBA is shown
Diffstat (limited to 'MAS/All-In-One-Version-KL')
| -rw-r--r-- | MAS/All-In-One-Version-KL/MAS_AIO.cmd | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/MAS/All-In-One-Version-KL/MAS_AIO.cmd b/MAS/All-In-One-Version-KL/MAS_AIO.cmd index e733ad1..e061840 100644 --- a/MAS/All-In-One-Version-KL/MAS_AIO.cmd +++ b/MAS/All-In-One-Version-KL/MAS_AIO.cmd @@ -14965,6 +14965,7 @@ function DetectSubscription { function DetectAdbaClient
{
$propADBA | foreach { set $_ (SlGetInfoSku $licID $_) }
+ DetectActType
CONOUT "`nAD Activation client information:"
CONOUT " Object Name: $ADActivationObjectName"
CONOUT " Domain Name: $ADActivationObjectDN"
@@ -15055,17 +15056,18 @@ function DetectKmsHost if ($null -NE $KeyManagementServiceNotificationRequests) {CONOUT " Notification: $KeyManagementServiceNotificationRequests"}
}
-function DetectKmsClient
+function DetectActType
{
- if ($win8)
- {
- $VLType = strGetRegistry ($SPKeyPath + '\' + $strApp + '\' + $licID) "VLActivationType"
- if ($null -EQ $VLType) {$VLType = strGetRegistry ($SPKeyPath + '\' + $strApp) "VLActivationType"}
- if ($null -EQ $VLType) {$VLType = strGetRegistry ($SPKeyPath) "VLActivationType"}
- if ($null -EQ $VLType -Or $VLType -GT 3) {$VLType = 0}
- }
+ $VLType = strGetRegistry ($SPKeyPath + '\' + $strApp + '\' + $licID) "VLActivationType"
+ if ($null -EQ $VLType) {$VLType = strGetRegistry ($SPKeyPath + '\' + $strApp) "VLActivationType"}
+ if ($null -EQ $VLType) {$VLType = strGetRegistry ($SPKeyPath) "VLActivationType"}
+ if ($null -EQ $VLType -Or $VLType -GT 3) {$VLType = 0}
if ($null -NE $VLType) {CONOUT "Configured Activation Type: $($VLActTypes[$VLType])"}
+}
+function DetectKmsClient
+{
+ if ($win8) {DetectActType}
CONOUT "`r"
if ($LicenseStatus -NE 1) {
CONOUT "Please activate the product in order to update KMS client information values."
@@ -15313,6 +15315,7 @@ function GetResult($strSLP, $strApp, $entry) if ($win8 -And $VLActivationType -EQ 1) {
DetectAdbaClient
+ $cKmsClient = $null
}
if ($winID -And $null -NE $cAvmClient) {
|
