1
我在寫一個批處理文件,導入證書然後設置代理設置。如果證書已成功安裝,我希望它繼續設置代理。如果命令成功,移動到下一個
certutil.exe -addstore -f "CA" "C:\Users\%Username%\AppData\Local\Temp\IXP000.TMP\cert.cer"
certutil.exe -addstore -f "TrustedPublisher" "C:\Users\%Username%\AppData\Local\Temp\IXP000.TMP\cert.cer"
certutil.exe -addstore -f "root" "C:\Users\%Username%\AppData\Local\Temp\IXP000.TMP\cert.cer"
在繼續進行下面兩個操作之前,我該如何檢查最後三個命令是否成功?
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d myproxyaddress
任何幫助將不勝感激!
可能的重複:http://stackoverflow.com/q/734598/945456。您可能需要的最重要的信息是如何檢查'certutil'是否成功完成其工作。 – 2014-10-20 16:50:22
謝謝你是我之後的 – babylon88 2014-10-21 01:41:07