1
我正在使用Powershell腳本來複制signtool.exe
所做的操作。我在Installer exe上使用它。PowerShell中的相當於SignTool.exe
我發現Set-AuthenticodeSignature
處理帶有證書的文件簽名,但我也在尋找在文件上簽名ActiveX控件的signtool
功能。
SignTool sign /f MyCert.pfx /t timestampURL /du "webpageURL" /d "mycompany" MyInstaller.exe
Set-AuthenticodeSignature
能夠分別與-Certificate
和-TimestampServer
處理/f
和/t
參數。
所以我的問題是,是否有一個cmdlet處理/d
和/du
?
引用的SignTool頁:
以下命令跡象ActiveX控件和提供的信息是通過Internet Explorer時,系統會提示用戶安裝該控件顯示:
SignTool sign /f MyCert.pfx /d "My Product Name" /du "http://www.example.com/my_product/info.html" MyControl.exe