1
0
mirror of https://github.com/massgravel/Microsoft-Activation-Scripts.git synced 2024-10-18 14:18:11 +00:00

Check signature of clipup.exe in Server Cor/Acor editions

This commit is contained in:
WindowsAddict 2024-09-05 04:44:49 +05:30
parent 7044f37b44
commit 5d8a463475
2 changed files with 26 additions and 4 deletions

@ -3693,8 +3693,19 @@ if not exist "!_work!\clipup.exe" (
echo clipup.exe doesn't exist in Server Cor/Acor [No GUI] versions. echo clipup.exe doesn't exist in Server Cor/Acor [No GUI] versions.
echo The file is required for KMS38 activation. echo The file is required for KMS38 activation.
echo Check the below page for instructions on how to activate it. echo Check the below page for instructions on how to activate it.
set fixes=%fixes% %mas%kms38 call :dk_color2 %Blue% "Help - " %_Yellow% " %mas%kms38"
echo %mas%kms38 goto dk_done
)
)
:: Check file signature
if defined a_cor (
%psc% "if ((Get-AuthenticodeSignature -FilePath '!_work!\clipup.exe').Status -ne 'Valid') {Exit 3}" %nul%
if !errorlevel!==3 (
%eline%
echo Valid digital signature not found in clipup.exe file.
call :dk_color2 %Blue% "Help - " %_Yellow% " %mas%troubleshoot"
goto dk_done goto dk_done
) )
) )

@ -444,8 +444,19 @@ if not exist "!_work!\clipup.exe" (
echo clipup.exe doesn't exist in Server Cor/Acor [No GUI] versions. echo clipup.exe doesn't exist in Server Cor/Acor [No GUI] versions.
echo The file is required for KMS38 activation. echo The file is required for KMS38 activation.
echo Check the below page for instructions on how to activate it. echo Check the below page for instructions on how to activate it.
set fixes=%fixes% %mas%kms38 call :dk_color2 %Blue% "Help - " %_Yellow% " %mas%kms38"
echo %mas%kms38 goto dk_done
)
)
:: Check file signature
if defined a_cor (
%psc% "if ((Get-AuthenticodeSignature -FilePath '!_work!\clipup.exe').Status -ne 'Valid') {Exit 3}" %nul%
if !errorlevel!==3 (
%eline%
echo Valid digital signature not found in clipup.exe file.
call :dk_color2 %Blue% "Help - " %_Yellow% " %mas%troubleshoot"
goto dk_done goto dk_done
) )
) )