### Checklist - [x] I have verified this is the correct repository for opening this issue. - [x] I have verified no other issues exist related to my request. ### Is Your Feature Request Related To A Problem? Please describe. More and more apps will be released as appx or msix modern app. The autouninstaller should be able to uninstall those apps ### Describe The Solution. Why is it needed? The way to uninstall modern apps from powershell is always the same: > $softwareName = 'Microsoft.Whiteboard*' > $ProvisionedPkg = Get-AppxProvisionedPackage -Online | Where-Object { $_.PackageName -like $softwareName } > Remove-AppxProvisionedPackage -Online -PackageName $($ProvisionedPkg.PackageName) The AutoUninstaller has just to check the provisioned appx packages and use the same method to uninstall. ### Additional Context _No response_ ### Related Issues _No response_