PowerToys/installer
2019-12-24 17:06:10 +03:00
..
MSIX powerrename: implement shellext support for UWP 2019-12-24 17:06:10 +03:00
PowerToysSetup wix: run ngen on FancyZonesEditor (#898) 2019-12-09 19:02:47 +03:00
PowerToysSetupCustomActions MSIX: implement initial msix installer 2019-12-24 17:06:10 +03:00
PowerToysSetup.sln FancyZones and Shortcut Guide initial commit 2019-09-05 18:12:40 +02:00
README.md MSIX: implement initial msix installer 2019-12-24 17:06:10 +03:00

PowerToys Setup Project

Build instructions

Building and installing self-signed PowerToys MSIX package

  • Make sure you've built correct powertoys.sln configuration
  • Add PowerToysTestKey.pfx to the TRCA store
  • Execute reinstall.ps1 from the devenv powershell:

Removing all current PowerToys installations

$name='PowerToys'
Get-AppxPackage -Name $name | select -ExpandProperty "PackageFullName" | Remove-AppxPackage
gwmi win32_product -filter "Name = '$name'" -namespace root/cimv2 | foreach {
  if ($_.uninstall().returnvalue -eq 0) { write-host "Successfully uninstalled $name " }
  else { write-warning "Failed to uninstall $name." }
}