You need the path to your .msix or .msixbundle file.
Right-click the .msix file, view its digital signature properties, extract the certificate, and install it into the local machine's Trusted People or Trusted Root Certification Authorities store. 3. Error: 0x80073CFB (The package could not be registered)
Add-AppxProvisionedPackage -Online ` -PackagePath "C:\Deployment\MainApp.msix" ` -DependencyPackagePath "C:\Deployment\Dependency1.msix", "C:\Deployment\Dependency2.msix" ` -SkipLicense Use code with caution. install msix powershell all users
Any prerequisite packages required by the main MSIX must be installed or provisioned beforehand. Method 1: Provisioning an MSIX Package for All Users
To install for all users (current and future users), you must use the or strictly specify the package path. You need the path to your
Add-AppxProvisionedPackage -Online -PackagePath "C:\Path\To\YourApp.msix" -SkipLicense Use code with caution.
The -AllUsers switch inside the Add-AppxPackage cmdlet instructs Windows to register the app into the app repository database for every user profile currently existing on the machine. Verifying the Installation Error: 0x80073CFB (The package could not be registered)
All-users installation requires elevated rights. You must run PowerShell . Without elevation, the command will fail with an access denied error.
cmdlet adds the package to the Windows image, ensuring it is automatically registered for every current and future user account on the device. Super User powershell Add-AppxProvisionedPackage -Online -PackagePath "C:\Path\To\YourApp.msix" -SkipLicense Use code with caution. Copied to clipboard : Targets the currently running operating system. -PackagePath : The full path to your .msixbundle -SkipLicense
[switch]$SkipCertificateCheck