https://liwei2.com/2015/11/27/378.html
关于如何提取证书,请参阅:https://www.zhihu.com/question/26917038
http://www.appinn.com/ 小众软件,不错的站点.

关于如何拉黑证书,代码如下:

@echo off
:: BatchGotAdmin  
:-------------------------------------  
REM  --> Check for permissions  
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"  
  
REM --> If error flag set, we do not have admin.  
if '%errorlevel%' NEQ '0' (  
    echo Requesting administrative privileges...  
    goto UACPrompt  
) else ( goto gotAdmin )  
  
:UACPrompt  
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"  
    echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"  
  
    "%temp%\getadmin.vbs"  
    exit /B  
  
:gotAdmin  
    if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )  
    pushd "%CD%"  
    CD /D "%~dp0"  
:--------------------------------------  

for /R %%s in (.,*.cer) do (
certutil -addstore -user -f “Disallowed” %%s
)


pause

 

相关文章:

  • 2022-03-07
  • 2022-12-23
  • 2021-09-18
  • 2021-09-10
  • 2021-09-22
  • 2022-01-02
猜你喜欢
  • 2021-08-28
  • 2022-01-03
  • 2021-04-18
  • 2021-09-30
  • 2021-12-23
  • 2021-09-02
相关资源
相似解决方案