Hello @Mark Johnson ,
If you’re submitting the package to the Microsoft Store, you don’t need to worry about this because the Store handles installation automatically. Silent switches are mainly useful for enterprise deployments through tools like Intune or SCCM.
If you want to install it without any prompts, you can use one of these options:
PowerShell command:
Add-AppxPackage -Path "C:\Path\YourApp.msixbundle"
This runs silently without showing UI.
App Installer command:
appinstaller.exe /quiet /install "C:\Path\YourApp.msixbundle"
The /quiet flag works like a silent switch.
I hope this clarifies.