Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 1.75 KB

README.md

File metadata and controls

30 lines (26 loc) · 1.75 KB

MSIX Installation Instructions (FIle Explorer Properties Method)

Instructions for MSIX Bundle / AppxBundle install Windows Prompts an error saying that app is untrusted what should you do?

  1. Right click the msix file / AppxBundle and click properties
  2. Go to the digital certificates tab
  3. then select the name of the software dev image
  4. Next pop up screen select view certificates
  5. Next pop up screen click "Install Certificate"
  6. Click local machine once it shows (UAC prompt click "yes")
  7. select place all certificates in following store then click browse then select trusted people
  8. click ok and then next
  9. click on that msix / AppxBundle app you want to install

MSIX Installation Instructions (Powershell Unsigned Method)

If you do not like doing the first method above or the certificate expired maybe this method would work for you Instructions

  1. Click the msix file you want to install and copy the file location of it (you will need it later)
  2. Go to the Windows search area and search "Powershell" this can be legacy Powershell (Default) or Powershell 7 tutorial
  3. copy this NOTE: Replace the C:\Path\to\File.AppxBundle with the file path DO NOT renove the quotation marks
Add-AppxPackage -Path "C:\Path\to\File.AppxBundle" -AllowUnsigned
  1. Paste the command
  2. Go back to the msix or AppxBundle file in your file manager and click it to install it.

That ends the tutorial! Write an issue if you need help or found another method to install MSIX Bundle / AppxBundle files

Credits: Rise-Software