mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 18:29:24 +08:00
11 lines
415 B
PowerShell
11 lines
415 B
PowerShell
taskkill /f /im explorer.exe
|
|
|
|
Get-AppxPackage -Name 'PowerToys' | select -ExpandProperty "PackageFullName" | Remove-AppxPackage
|
|
|
|
.\build_msix.ps1
|
|
signtool sign /debug /a /fd SHA256 /f PowerToys_TemporaryKey.pfx /p 12345 bin\PowerToys-x64.msix
|
|
signtool sign /debug /a /fd SHA256 /f PowerToys_TemporaryKey.pfx /p 12345 bin\PowerToys.msixbundle
|
|
|
|
Add-AppxPackage .\bin\PowerToys-x64.msix
|
|
|
|
start $Env:windir\explorer.exe |