MSIX: minor cleanup, add certificate generation script

This commit is contained in:
yuyoyuppe
2019-12-20 19:12:52 +03:00
committed by yuyoyuppe
parent 62c65659cc
commit a321eb8737
7 changed files with 21 additions and 17 deletions

View File

@@ -0,0 +1,6 @@
taskkill /f /im explorer.exe
Get-AppxPackage -Name 'PowerToys' | select -ExpandProperty "PackageFullName" | Remove-AppxPackage
makeappx build /v /overwrite /f PackagingLayout.xml /id "PowerToys-x64" /op bin\
signtool sign /debug /a /fd SHA256 /f PowerToys_TemporaryKey.pfx /p 12345 bin\PowerToys-x64.msix
Add-AppxPackage .\bin\PowerToys-x64.msix
start $Env:windir\explorer.exe