Updated ApplyACLs.dll with bug fix; Updated README for unpacking/applying acls (#214)

This commit is contained in:
stephenk-msft 2019-10-14 10:50:31 -07:00 коммит произвёл GitHub
Родитель 73629c4013
Коммит 52ee40d65f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 9 добавлений и 2 удалений

Двоичные данные
preview/MsixCore/Dependencies/x64/ApplyACLs.dll

Двоичный файл не отображается.

Двоичные данные
preview/MsixCore/Dependencies/x64/ApplyACLs.pdb

Двоичный файл не отображается.

Двоичные данные
preview/MsixCore/Dependencies/x86/ApplyACLs.dll

Двоичный файл не отображается.

Двоичные данные
preview/MsixCore/Dependencies/x86/ApplyACLs.pdb

Двоичный файл не отображается.

Просмотреть файл

@ -64,9 +64,16 @@ Uninstallation - The -quietUX parameter can also be used here.
```
msixmgr.exe -RemovePackage notepadplus_0.0.0.1_x64__8wekyb3d8bbwe
```
Unpacking -
The following commands depend on ApplyACLs.dll and msix.dll. Please place these next to msixmgr.exe.
Unpacking - Extracts contents of .appx, .msix, .appxbundle, or .msixbundle into a folder. Folder will be named according to the package full name of the package and will be placed in the given destination directory. The -applyacls option can be optionally specified to apply ACLs to the resulting folder.
```
msixmgr.exe -Unpack notepadplus.msix
msixmgr.exe -Unpack -packagepath C:\SomeDirectory\notepadplus.msix -destination C:\output [-applyacls]
```
Applying ACLs - Applies ACLs to a package folder
```
msixmgr.exe -applyacls -packagepath C:\name_version_arch_pub
```
## Build Status