mirror of
https://github.com/massgravel/Microsoft-Activation-Scripts.git
synced 2025-12-03 03:35:53 +01:00
Compare commits
2 Commits
82f7cfe5f4
...
f4e08dac3d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4e08dac3d | ||
|
|
979dfb750b |
@ -2127,7 +2127,9 @@ call :dk_color %Gray% "Checking SLC/WMI SKU [Difference Found
|
||||
|
||||
:: This "WLMS" service was included in previous Eval editions (which were activable) to automatically shut down the system every hour after the evaluation period expired and prevent SPPSVC from stopping.
|
||||
|
||||
if exist "%SysPath%\wlms\wlms.exe" (
|
||||
sc query wlms %nul%
|
||||
|
||||
if %errorlevel% NEQ 1060 (
|
||||
echo Checking Eval WLMS Service [Found]
|
||||
)
|
||||
|
||||
@ -14965,6 +14967,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 +15058,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}
|
||||
}
|
||||
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 +15317,7 @@ function GetResult($strSLP, $strApp, $entry)
|
||||
|
||||
if ($win8 -And $VLActivationType -EQ 1) {
|
||||
DetectAdbaClient
|
||||
$cKmsClient = $null
|
||||
}
|
||||
|
||||
if ($winID -And $null -NE $cAvmClient) {
|
||||
|
||||
@ -1820,7 +1820,9 @@ call :dk_color %Gray% "Checking SLC/WMI SKU [Difference Found
|
||||
|
||||
:: This "WLMS" service was included in previous Eval editions (which were activable) to automatically shut down the system every hour after the evaluation period expired and prevent SPPSVC from stopping.
|
||||
|
||||
if exist "%SysPath%\wlms\wlms.exe" (
|
||||
sc query wlms %nul%
|
||||
|
||||
if %errorlevel% NEQ 1060 (
|
||||
echo Checking Eval WLMS Service [Found]
|
||||
)
|
||||
|
||||
|
||||
@ -2506,7 +2506,9 @@ call :dk_color %Gray% "Checking SLC/WMI SKU [Difference Found
|
||||
|
||||
:: This "WLMS" service was included in previous Eval editions (which were activable) to automatically shut down the system every hour after the evaluation period expired and prevent SPPSVC from stopping.
|
||||
|
||||
if exist "%SysPath%\wlms\wlms.exe" (
|
||||
sc query wlms %nul%
|
||||
|
||||
if %errorlevel% NEQ 1060 (
|
||||
echo Checking Eval WLMS Service [Found]
|
||||
)
|
||||
|
||||
|
||||
@ -3569,7 +3569,9 @@ call :dk_color %Gray% "Checking SLC/WMI SKU [Difference Found
|
||||
|
||||
:: This "WLMS" service was included in previous Eval editions (which were activable) to automatically shut down the system every hour after the evaluation period expired and prevent SPPSVC from stopping.
|
||||
|
||||
if exist "%SysPath%\wlms\wlms.exe" (
|
||||
sc query wlms %nul%
|
||||
|
||||
if %errorlevel% NEQ 1060 (
|
||||
echo Checking Eval WLMS Service [Found]
|
||||
)
|
||||
|
||||
|
||||
@ -3579,7 +3579,9 @@ call :dk_color %Gray% "Checking SLC/WMI SKU [Difference Found
|
||||
|
||||
:: This "WLMS" service was included in previous Eval editions (which were activable) to automatically shut down the system every hour after the evaluation period expired and prevent SPPSVC from stopping.
|
||||
|
||||
if exist "%SysPath%\wlms\wlms.exe" (
|
||||
sc query wlms %nul%
|
||||
|
||||
if %errorlevel% NEQ 1060 (
|
||||
echo Checking Eval WLMS Service [Found]
|
||||
)
|
||||
|
||||
|
||||
@ -518,6 +518,7 @@ function DetectSubscription {
|
||||
function DetectAdbaClient
|
||||
{
|
||||
$propADBA | foreach { set $_ (SlGetInfoSku $licID $_) }
|
||||
DetectActType
|
||||
CONOUT "`nAD Activation client information:"
|
||||
CONOUT " Object Name: $ADActivationObjectName"
|
||||
CONOUT " Domain Name: $ADActivationObjectDN"
|
||||
@ -608,17 +609,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}
|
||||
}
|
||||
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."
|
||||
@ -866,6 +868,7 @@ function GetResult($strSLP, $strApp, $entry)
|
||||
|
||||
if ($win8 -And $VLActivationType -EQ 1) {
|
||||
DetectAdbaClient
|
||||
$cKmsClient = $null
|
||||
}
|
||||
|
||||
if ($winID -And $null -NE $cAvmClient) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user