Msix Install Powershell Here
Have you migrated your legacy setups to MSIX yet? Let’s discuss below! 👇
$Dependencies = @( "C:\Deps\VCLibs.x64.msix", "C:\Deps\Runtime.msix" ) Add-AppxPackage -Path "MyApp.msix" -DependencyPath $Dependencies msix install powershell
#PowerShell #MSIX #WindowsDevOps #AppPackaging #Automation Have you migrated your legacy setups to MSIX yet
Here’s how to handle like a pro:
# Requires admin rights Add-AppxProvisionedPackage -Online -FolderPath "C:\Apps\" -PackagePath "MyApp.msix" msix install powershell