Add-AppxPackage -Path "C:\Deploy\MyApp.msixbundle" -ErrorAction SilentlyContinue You can also combine with Start-Process for full stealth:
Get-AppxPackage -Name "YourAppName" | Remove-AppxPackage For all users:
Get-AppxPackage -Name "*MyApp*" To see detailed info:
Add-AppxPackage -Path "C:\Deploy\MyApp.msixbundle" -ErrorAction SilentlyContinue You can also combine with Start-Process for full stealth:
Get-AppxPackage -Name "YourAppName" | Remove-AppxPackage For all users: install msixbundle using powershell
Get-AppxPackage -Name "*MyApp*" To see detailed info: Add-AppxPackage -Path "C:\Deploy\MyApp