top of page
Appx software​
In this article I will explain how to install Appx software.
A little about Appx software, this type of software is Not similar to MSI or EXE or SCRIPT software.
Appx software are signed with a certificate and not run if the local computer not trust the certificate sine in the software.
APPX applications can not access all of the local resources, only to limited locations, and it is not possible for these applications to run local resources.
Most organizations limit the use of the app store and manage their own software distribution.
The best method to manage such distributions is through the SCCM.
But an organization that does not have this resource needs alternatives.
problem
Install the unsecured APPX software from SCCM .
solution
Installation is done in two ways
One standard (Add-AppxPackage)
tow installation and one default user (Add-ProvisionedAppxPackage)
The default user installation must be performed because we want each new user to receive an installation automatically.
Get-AppxPackage *???* | Remove-AppxPackage
Get-AppxPackage *????* | Remove-AppxPackage
Get-ProvisionedAppxPackage -Online | where {$_.DisplayName -eq "?????"} | Remove-ProvisionedAppxPackage -Online
Get-ProvisionedAppxPackage -Online | where {$_.DisplayName -eq "??????"} | Remove-ProvisionedAppxPackage -Online
dism /online /Add-ProvisionedAppxPackage /PackagePath:"c:\install\????????.appx" /SkipLicense
dism /online /Add-ProvisionedAppxPackage /PackagePath:"c:\install\????????.appx" /SkipLicense
dism /online /Add-ProvisionedAppxPackage /PackagePath:"c:\install\????????.appx" /SkipLicense
dism /online /Add-ProvisionedAppxPackage /PackagePath:"c:\install\????????.appx" /SkipLicense
Add-AppxPackage -Path:"c:\install\????????.appx" 
Add-AppxPackage -Path:"c:\install\????????.appx" 
You can apply the script section as a task as part of the logonscript
Or in the startup of the user.
bottom of page