mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-01 18:35:13 +00:00
6 lines
258 B
PowerShell
6 lines
258 B
PowerShell
$signExe = 'C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x86\signtool.exe'
|
|
$files = gci '..\Build\QuickLook-*.appx' | %{('"{0}"' -f $_.FullName)}
|
|
$timestampUrl = 'http://time.certum.pl/'
|
|
|
|
.$signExe sign /a /v /fd sha256 /t $timestampUrl $files
|