mirror of
https://github.com/massgravel/Microsoft-Activation-Scripts.git
synced 2026-01-29 09:19:00 +01:00
Add warnings for Smart App Control
This commit is contained in:
parent
a353813814
commit
a93b4b3f4b
1 changed files with 20 additions and 0 deletions
|
|
@ -601,6 +601,26 @@ reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v EditionID %nul2
|
|||
|
||||
::========================================================================================================================================
|
||||
|
||||
:: Check Smart App Control
|
||||
|
||||
set "sacstate="
|
||||
if %winbuild% GEQ 22621 (
|
||||
for /f "tokens=3" %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\CI\Policy" /v VerifiedAndReputablePolicyState %nul6%') do set "sacstate=%%a"
|
||||
)
|
||||
if defined sacstate (
|
||||
if "%sacstate%"=="0x1" (
|
||||
call :dk_color %Gray% "Checking Smart App Control State [Enabled]"
|
||||
call :dk_color %Blue% "Smart App Control may prevent you from opening Office after Ohook activation."
|
||||
call :dk_color %Blue% "You will need to disable it from the Windows Defender settings if it does."
|
||||
) else if "%sacstate%"=="0x2" (
|
||||
call :dk_color %Gray% "Checking Smart App Control State [Evaluation]"
|
||||
call :dk_color %Blue% "Smart App Control may prevent you from opening Office in the future if it enables itself after the evaluation period."
|
||||
call :dk_color %Blue% "It is recommended that you disable it from the Windows Defender settings."
|
||||
)
|
||||
)
|
||||
|
||||
::========================================================================================================================================
|
||||
|
||||
:: Process Office 15.0 C2R
|
||||
|
||||
if not defined o15c2r goto :starto16c2r
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue