Please enable JavaScript.
Coggle requires JavaScript to display documents.
MSIX App Attach - Coggle Diagram
MSIX App Attach
Reg keys settings
Link Title
Install MSIX packaging tool from Microsoft store
Assign your certificate with the right CN (common name – e.g. Contoso) that we need later.
Note: Make sure the CN=Contoso (organization name) is correct on the certificate as well as in the package configuration.
Package the application
Disable Auto update for the package
Get the self signed certificate
Export the self-signed certificate into a .pfx file with privatekey and use it in the “Signing preference” menu.
xport the self-signed into the Trusted People LocalMachine store.
expand the .MSIX package file to a VHD(x) to make it ready for mounting/staging
Download and install
MSIX MGR
Unpack the .zip file to e.g. C:\MSIXappattach
Copy/move the .MSIX package file also in that location
Create the VHD
New-VHD -SizeBytes 1024MB -Path c:\MSIXappattach\notepadplusplus.vhd -Dynamic -Confirm:$false
Mount the app attach container
$vhdObject = Mount-VHD c:\MSIXappattach\notepadplusplus.vhd -Passthru
$disk = Initialize-Disk -Passthru -Number $vhdObject.Number
1 more item...
User Windows 10 Enterprise single or multi-session 2004 build