Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker and Server installation instructions #438

Closed
isanych opened this issue Jun 18, 2020 · 16 comments
Closed

Docker and Server installation instructions #438

isanych opened this issue Jun 18, 2020 · 16 comments
Milestone

Comments

@isanych
Copy link

isanych commented Jun 18, 2020

Documentation only describe how to install winget into windows 10 with ms store. But tool more useful in docker when you install applications all the time. Could we have description how to install tool in docker and SAC windows server - when no gui & store available please?

@isanych isanych added the Issue-Docs It's a documentation issue that really should be on MicrosoftDocs label Jun 18, 2020
@ghost ghost added the Needs-Triage Issue need to be triaged label Jun 18, 2020
@denelon denelon removed the Needs-Triage Issue need to be triaged label Jun 18, 2020
@driver1998
Copy link

One hacky way would be extracting the AppInstaller msix (it is a zip file anyway) and run winget.exe from inside.

@PatrikCarlander
Copy link

PatrikCarlander commented Aug 10, 2020

The problem is that AppInstallerCLI.exe (winget.exe) does not run in a Windows Docker Container.
At least not a Container from this docker image mcr.microsoft.com/windows:2004

The command 'cmd /S /C AppInstallerCLI.exe' returned a non-zero code: 3221225781

@PatrikCarlander
Copy link

PatrikCarlander commented Aug 10, 2020

#This will work, Dockerfile that using winget to install packages
FROM mcr.microsoft.com/windows:2004

WORKDIR C:\Downloads
ADD https://aka.ms/vs/16/release/vc_redist.x64.exe C:\Downloads\vcredist_x64.exe
RUN C:\Downloads\vcredist_x64.exe /install /passive /norestart /log out.txt

WORKDIR C:\winget
#unzip and get AppInstallerCLI.exe (winget) and resources.pri from winget appxbundle file, inside AppInstaller_x64.appx (unzip)

ADD AppInstallerCLI.exe winget.exe
ADD resources.pri .

RUN winget install git
#RUN winget install Microsoft.VisualStudio.BuildTools

@denelon
Copy link
Contributor

denelon commented Sep 16, 2020

@isanych has this Issue been resolved?

@denelon denelon self-assigned this Sep 16, 2020
@isanych
Copy link
Author

isanych commented Sep 17, 2020

There is no documentation, so no. I could install winget in docker (based on servercore2004 image) according Patrick's instructions (which are still not a documentation which most users can find), but it does not work for me after that, I guess more dependencies are missing:

Dependencies.exe -modules winget.exe
[ROOT] winget.exe : winget.exe
[ApiSetSchema] api-ms-win-crt-runtime-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-stdio-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-string-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-heap-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-filesystem-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-convert-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-math-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-locale-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-time-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-core-com-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-shcore-stream-winrt-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-core-winrt-error-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-winrt-error-l1-1-1.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-winrt-string-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-winrt-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-com-l1-1-1.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-crt-environment-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-crt-utility-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-core-errorhandling-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-heap-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-processthreads-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-libraryloader-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-synch-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-debug-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-processenvironment-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-string-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-localization-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-datetime-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-sysinfo-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-rtlsupport-l1-1-0.dll : C:\Windows\system32\ntdll.dll
[ApiSetSchema] api-ms-win-core-processthreads-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-console-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-handle-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-namedpipe-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-timezone-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-synch-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-profile-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-memory-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-util-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-interlocked-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-eventing-provider-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-apiquery-l1-1-0.dll : C:\Windows\system32\ntdll.dll
[ApiSetSchema] api-ms-win-core-apiquery-l1-1-1.dll : C:\Windows\system32\ntdll.dll
[ApiSetSchema] ext-ms-win-advapi32-registry-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-advapi32-registry-l1-1-1.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-kernel32-appcompat-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-ntuser-string-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-kernel32-file-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernel32-datetime-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernel32-quirks-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernel32-quirks-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernel32-sidebyside-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-mrmcorer-resmanager-l1-1-0.dll : C:\Windows\system32\mrmcorer.dll
[ApiSetSchema] ext-ms-win-gpapi-grouppolicy-l1-1-0.dll : C:\Windows\system32\gpapi.dll
[ApiSetSchema] ext-ms-win-ntdsapi-activedirectoryclient-l1-1-0.dll : C:\Windows\system32\ntdsapi.dll
[ApiSetSchema] ext-ms-win-ntdsapi-activedirectoryclient-l1-1-1.dll : C:\Windows\system32\ntdsapi.dll
[ApiSetSchema] ext-ms-win-shell32-shellcom-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-win-advapi32-ntmarta-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-security-capauthz-l1-1-1.dll :
[ApiSetSchema] ext-ms-win-feclient-encryptedfile-l1-1-0.dll : C:\Windows\system32\feclient.dll
[ApiSetSchema] ext-ms-win-security-efswrt-l1-1-0.dll :
[ApiSetSchema] api-ms-win-security-sddl-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll : C:\Windows\system32\windows.staterepositorycore.dll
[ApiSetSchema] ext-ms-win-appmodel-daxcore-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-kernel32-errorhandling-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernel32-registry-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernelbase-processthread-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-kernelbase-processthread-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-advapi32-npusername-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-appxdeploymentclient-appxdeploy-l1-1-0.dll : C:\Windows\system32\appxdeploymentclient.dll
[ApiSetSchema] ext-ms-onecore-appmodel-staterepository-internal-l1-1-4.dll : C:\Windows\system32\windows.staterepositoryclient.dll
[ApiSetSchema] ext-ms-onecore-appmodel-staterepository-internal-l1-1-1.dll : C:\Windows\system32\windows.staterepositoryclient.dll
[ApiSetSchema] ext-ms-win-appxdeploymentclient-appxdeployonecore-l1-1-0.dll : C:\Windows\system32\appxdeploymentclient.dll
[ApiSetSchema] ext-ms-win-winrt-device-access-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-appmodel-appexecutionalias-l1-1-2.dll :
[ApiSetSchema] ext-ms-win-appmodel-appexecutionalias-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-appmodel-appexecutionalias-l1-1-1.dll :
[ApiSetSchema] api-ms-win-security-isolationpolicy-l1-2-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-eventing-controller-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-eventing-consumer-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-eventing-consumer-l1-1-1.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-core-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-core-l1-1-1.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-core-l1-1-2.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-management-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-management-l2-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-private-l1-1-4.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-private-l1-1-2.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-private-l1-1-3.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-private-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-service-winsvc-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-security-base-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-base-private-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-registry-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-registry-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-registry-l1-1-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-audit-l1-1-1.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-security-audit-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-core-pcw-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-lsalookup-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-security-credentials-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-security-credentials-l2-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-security-provider-l1-1-0.dll : C:\Windows\system32\ntmarta.dll
[ApiSetSchema] api-ms-win-devices-config-l1-1-1.dll : C:\Windows\system32\cfgmgr32.dll
[ApiSetSchema] api-ms-win-core-console-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-fibers-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-libraryloader-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-crt-l1-1-0.dll : C:\Windows\system32\ntdll.dll
[ApiSetSchema] api-ms-win-core-crt-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-heap-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-wow64-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-threadpool-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-io-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-delayload-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-delayload-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-base-private-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-appmodel-identity-l1-2-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-eventing-rundown-l1-1-0.dll : C:\Windows\system32\etwrundown.dll
[ApiSetSchema] api-ms-win-core-processthreads-l1-1-3.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-processthreads-l1-1-2.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-memory-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-memory-l1-1-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-synch-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l1-2-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-io-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-job-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-threadpool-legacy-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-threadpool-private-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-largeinteger-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-libraryloader-l1-2-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-libraryloader-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-libraryloader-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-namedpipe-l1-2-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-namedpipe-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-datetime-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-datetime-l1-1-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-sysinfo-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-sysinfo-l1-2-3.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-sysinfo-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-processsnapshot-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-processenvironment-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-debug-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-errorhandling-l1-1-3.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-base-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-appcontainer-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-comm-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-realtime-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-wow64-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-wow64-l1-1-3.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-systemtopology-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-systemtopology-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-processtopology-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-namespace-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l2-1-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l2-1-3.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-file-l2-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-xstate-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-xstate-l2-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-localization-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-normalization-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-fibers-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-fibers-l2-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-localization-private-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-sidebyside-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-appcompat-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-windowserrorreporting-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-windowserrorreporting-l1-1-3.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-windowserrorreporting-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-windowserrorreporting-l1-1-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-console-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-console-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-console-l2-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-console-l3-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-psapi-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-psapi-ansi-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-appcompat-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-crt-private-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-core-path-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-grouppolicy-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-kernel32-private-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-profile-userenv-l1-1-0.dll : C:\Windows\system32\profext.dll
[ApiSetSchema] ext-ms-win-profile-userenv-l1-1-1.dll : C:\Windows\system32\profext.dll
[ApiSetSchema] api-ms-win-core-heap-obsolete-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-eventing-classicprovider-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-downlevel-kernel32-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-string-obsolete-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-kernel32-legacy-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-window-ext-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-core-string-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-memory-l1-1-3.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-privateprofile-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-atoms-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-localization-obsolete-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-stringansi-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-kernel32-private-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-kernel32-legacy-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-appinit-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-apiquery-l2-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-power-setting-l1-1-0.dll : C:\Windows\system32\powrprof.dll
[ApiSetSchema] api-ms-win-power-base-l1-1-0.dll : C:\Windows\system32\powrprof.dll
[ApiSetSchema] ext-ms-win-edputil-policy-l1-1-0.dll :
[ApiSetSchema] api-ms-win-gdi-internal-uap-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-dc-l1-2-1.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-dc-l1-2-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-dc-create-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-draw-l1-1-3.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-draw-l1-1-2.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-draw-l1-1-1.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-draw-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-font-l1-1-2.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-font-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-font-l1-1-1.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-font-l1-1-3.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-metafile-l1-1-2.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-metafile-l1-1-1.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-metafile-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-path-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-print-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-private-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-wcs-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-clipping-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-dx-d3dkmt-dxcore-l1-1-0.dll : C:\Windows\system32\dxcore.dll
[ApiSetSchema] ext-ms-win-gdi-internal-desktop-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-internal-desktop-l1-1-1.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-internal-desktop-l1-1-3.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-gdi-internal-desktop-l1-1-2.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] api-ms-win-core-localization-l1-2-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] ext-ms-win-rtcore-gdi-object-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-ntuser-sysparams-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-printer-winspool-l1-1-1.dll : C:\Windows\system32\winspool.drv
[ApiSetSchema] ext-ms-win-printer-winspool-l1-1-0.dll : C:\Windows\system32\winspool.drv
[ApiSetSchema] ext-ms-win-printer-winspool-core-l1-1-0.dll : C:\Windows\system32\winspool.drv
[ApiSetSchema] api-ms-win-dx-d3dkmt-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] api-ms-win-security-activedirectoryclient-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-l1-1-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-core-psm-key-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-psm-key-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-hostactivitymanager-hostidstore-l1-1-0.dll :
[ApiSetSchema] api-ms-win-core-shlwapi-obsolete-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-shlwapi-legacy-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-stateseparation-helpers-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-shcore-comhelpers-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-core-com-private-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-shcore-registry-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-taskpool-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-stream-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-obsolete-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-unicodeansi-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-sysinfo-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-security-cryptoapi-l1-1-0.dll : C:\Windows\system32\cryptsp.dll
[ApiSetSchema] ext-ms-win-com-ole32-l1-1-0.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-els-elscore-l1-1-0.dll :
[ApiSetSchema] api-ms-win-shell-namespace-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] api-ms-win-core-com-midlproxystub-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-string-l2-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-quirks-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-errorhandling-l1-1-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-version-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-winrt-robuffer-l1-1-0.dll : C:\Windows\system32\wintypes.dll
[ApiSetSchema] api-ms-win-gdi-dpiinfo-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-synch-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-window-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-shell-changenotify-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-win-devmgmt-policy-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-ntuser-keyboard-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-dpi-l1-2-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-shell-directory-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-win-imm-l1-1-0.dll : C:\Windows\system32\IMM32.dll
[ApiSetSchema] api-ms-win-core-fibers-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-winrt-propertysetprivate-l1-1-1.dll : C:\Windows\system32\wintypes.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-synch-ext-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-misc-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-private-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-windowstation-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-com-clbcatq-l1-1-0.dll : C:\Windows\system32\clbcatq.dll
[ApiSetSchema] ext-ms-win-com-ole32-l1-1-1.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-com-ole32-l1-1-5.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-com-ole32-l1-1-3.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-com-coml2-l1-1-1.dll : C:\Windows\system32\coml2.dll
[ApiSetSchema] ext-ms-win-advapi32-msi-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-kernel32-package-l1-1-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-kernel32-package-l1-1-2.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-kernel32-package-current-l1-1-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-appmodel-state-ext-l1-2-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-advapi32-psm-app-l1-1-0.dll : C:\Windows\system32\twinapi.appcore.dll
[ApiSetSchema] ext-ms-win-com-psmregister-l1-1-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-session-usermgr-l1-1-0.dll : C:\Windows\system32\usermgrcli.dll
[ApiSetSchema] api-ms-win-core-debug-minidump-l1-1-0.dll : C:\Windows\system32\dbgcore.dll
[ApiSetSchema] ext-ms-win-ro-typeresolution-l1-1-0.dll : C:\Windows\system32\wintypes.dll
[ApiSetSchema] ext-ms-win-rometadata-dispenser-l1-1-0.dll :
[ApiSetSchema] api-ms-win-security-trustee-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-security-trustee-l1-1-1.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-core-marshal-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-com-private-l1-3-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-com-private-l1-1-1.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-eventlog-legacy-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-core-registry-l2-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-sxs-oleautomation-l1-1-0.dll : C:\Windows\system32\sxs.dll
[ApiSetSchema] api-ms-win-core-com-l2-1-1.dll : C:\Windows\system32\coml2.dll
[ApiSetSchema] api-ms-win-core-com-private-l1-2-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-core-winrt-propertysetprivate-l1-1-0.dll : C:\Windows\system32\wintypes.dll
[ApiSetSchema] ext-ms-win-ntuser-rotationmanager-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ole32-bindctx-l1-1-0.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] api-ms-win-core-winrt-registration-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-security-lsapolicy-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-appmodel-unlock-l1-1-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-private-l1-1-7.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-private-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-iam-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-l1-1-1.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-shcore-thread-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] ext-ms-win-familysafety-childaccount-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-desktopappx-l1-1-0.dll :
[ApiSetSchema] api-ms-win-security-lsalookup-l2-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-downlevel-advapi32-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-security-accesshlpr-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-integration-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-security-capability-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-win-session-wtsapi32-l1-1-0.dll : C:\Windows\system32\wtsapi32.dll
[ApiSetSchema] ext-ms-win-ntuser-window-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-eventing-obsolete-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-core-misc-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-localregistry-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-oobe-notification-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-toolhelp-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-processtopology-obsolete-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-ntuser-windowclass-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-wer-ui-l1-1-0.dll : C:\Windows\system32\werui.dll
[ApiSetSchema] ext-ms-win-desktopappx-l1-1-3.dll :
[ApiSetSchema] api-ms-win-shell-shellfolders-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-win-ntuser-message-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-synch-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-session-usertoken-l1-1-0.dll : C:\Windows\system32\wtsapi32.dll
[ApiSetSchema] api-ms-win-eventing-legacy-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-appcompat-aepic-l1-1-0.dll : C:\Windows\system32\aepic.dll
[ApiSetSchema] api-ms-win-shcore-scaling-l1-1-1.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-scaling-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-security-lsalookup-ansi-l2-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-dxcore-l1-1-0.dll : C:\Windows\system32\dxcore.dll
[ApiSetSchema] ext-ms-win-dxcore-internal-l1-1-0.dll : C:\Windows\system32\dxcore.dll
[ApiSetSchema] ext-ms-win-dx-d3dkmt-gdi-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] ext-ms-win-gdi-render-l1-1-0.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] ext-ms-onecore-dcomp-l1-1-0.dll :
[ApiSetSchema] api-ms-win-core-version-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-gdi-internal-uap-init-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] api-ms-win-ntuser-rectangle-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-core-synch-ansi-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-dx-d3dkmt-dxcore-l1-1-1.dll : C:\Windows\system32\dxcore.dll
[ApiSetSchema] ext-ms-win-wer-reporting-l1-1-0.dll : C:\Windows\system32\wer.dll
[ApiSetSchema] ext-ms-win-dwmapidxgi-ext-l1-1-0.dll : C:\Windows\system32\dwmapi.dll
[ApiSetSchema] ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-window-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-misc-l1-2-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-gui-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-private-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-dx-d3dkmt-l1-1-1.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] api-ms-win-dx-d3dkmt-l1-1-3.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] api-ms-win-dx-d3dkmt-l1-1-4.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] ext-ms-win-dwmapidxgi-ext-l1-1-1.dll : C:\Windows\system32\dwmapi.dll
[ApiSetSchema] ext-ms-win-shell32-shellfolders-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] api-ms-win-core-url-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-shell-shellcom-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-privateprofile-l1-1-1.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-registryuserspecific-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-base-rstrtmgr-l1-1-0.dll : C:\Windows\system32\rstrtmgr.dll
[ApiSetSchema] ext-ms-win-rdr-davhlpr-l1-1-0.dll : C:\Windows\system32\davhlpr.dll
[ApiSetSchema] ext-ms-win-appcompat-apphelp-l1-1-0.dll : C:\Windows\system32\apphelp.dll
[ApiSetSchema] ext-ms-win-globalization-input-l1-1-0.dll : C:\Windows\system32\globinputhost.dll
[ApiSetSchema] ext-ms-win-feclient-encryptedfile-l1-1-1.dll : C:\Windows\system32\feclient.dll
[ApiSetSchema] ext-ms-win-uxtheme-themes-l1-1-0.dll : C:\Windows\system32\uxtheme.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-internal-l1-1-3.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-internal-l1-1-1.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-internal-l1-1-4.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-shell-shdirectory-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-core-winrt-errorprivate-l1-1-0.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-shcore-path-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-shcore-registry-l1-1-1.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] api-ms-win-devices-query-l1-1-0.dll : C:\Windows\system32\cfgmgr32.dll
[ApiSetSchema] ext-ms-win-rtcore-ntuser-window-ext-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-window-l1-1-3.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-windowclass-l1-1-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-shlwapi-winrt-storage-l1-1-1.dll : C:\Windows\system32\SHLWAPI.dll
[ApiSetSchema] api-ms-win-shlwapi-ie-l1-1-0.dll : C:\Windows\system32\SHLWAPI.dll
[ApiSetSchema] api-ms-win-appmodel-state-l1-2-0.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-ole32-ie-l1-1-0.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-onecore-appdefaults-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-win-com-ole32-l1-1-4.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-advapi32-encryptedfile-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-ntuser-private-l1-3-3.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-private-l1-3-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-appcompat-pcacli-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-appmodel-daxcore-l1-1-3.dll :
[ApiSetSchema] ext-ms-win-ntuser-menu-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-menu-l1-1-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-misc-l1-5-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-shell-shdocvw-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-shell-efsadu-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-shell-ntshrui-l1-1-0.dll : C:\Windows\system32\ntshrui.dll
[ApiSetSchema] ext-ms-win-appmodel-activation-l1-1-1.dll :
[ApiSetSchema] ext-ms-win-devmgmt-policy-l1-1-1.dll :
[ApiSetSchema] ext-ms-win-shell-exports-internal-l1-1-0.dll : C:\Windows\system32\SHELL32.dll
[ApiSetSchema] ext-ms-win-shell-fileplaceholder-l1-1-0.dll : C:\Windows\system32\windows.fileexplorer.common.dll
[ApiSetSchema] ext-ms-win-fs-cscapi-l1-1-0.dll : C:\Windows\system32\cscapi.dll
[ApiSetSchema] ext-ms-win-security-winscard-l1-1-0.dll : C:\Windows\system32\winscard.dll
[ApiSetSchema] api-ms-win-security-activedirectoryclient-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-localization-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-crt-process-l1-1-0.dll : C:\Windows\system32\ucrtbase.dll
[ApiSetSchema] api-ms-win-eventing-tdh-l1-1-0.dll : C:\Windows\system32\tdh.dll
[ApiSetSchema] ext-ms-win-shell-embeddedmode-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-resources-deployment-l1-1-0.dll : C:\Windows\system32\mrmdeploy.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-l1-1-3.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-storage-sense-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-wevtapi-eventlog-l1-1-0.dll : C:\Windows\system32\wevtapi.dll
[ApiSetSchema] api-ms-win-security-base-l1-2-2.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-internal-l1-1-2.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-security-capauthz-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-tsf-inputsetting-l1-1-0.dll : C:\Windows\system32\input.dll
[ApiSetSchema] api-ms-win-core-psm-app-l1-1-0.dll : C:\Windows\system32\twinapi.appcore.dll
[ApiSetSchema] ext-ms-win-edputil-policy-l1-1-1.dll :
[ApiSetSchema] api-ms-win-security-lsalookup-l1-1-2.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-win-security-efs-l1-1-0.dll : C:\Windows\system32\efsext.dll
[ApiSetSchema] ext-ms-win-feclient-encryptedfile-l1-1-2.dll : C:\Windows\system32\feclient.dll
[ApiSetSchema] ext-ms-win-fveapi-query-l1-1-0.dll :
[ApiSetSchema] api-ms-win-core-featurestaging-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] ext-ms-win-authz-remote-l1-1-0.dll : C:\Windows\system32\logoncli.dll
[ApiSetSchema] api-ms-win-security-sddlparsecond-l1-1-0.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-win-smbshare-browserclient-l1-1-0.dll : C:\Windows\system32\browcli.dll
[ApiSetSchema] ext-ms-win-ntuser-window-l1-1-4.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-security-lsalookup-l1-1-1.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-win-ntuser-windowstation-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-draw-l1-1-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-misc-l1-5-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-private-l1-2-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-private-l1-3-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rtcore-gdi-rgn-l1-1-1.dll : C:\Windows\system32\gdi32.dll
[ApiSetSchema] ext-ms-win-ntuser-message-l1-1-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-private-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-private-l1-1-9.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-usp10-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-dwmapi-ext-l1-1-0.dll : C:\Windows\system32\dwmapi.dll
[ApiSetSchema] api-ms-win-core-versionansi-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-advapi32-safer-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-core-versionansi-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-version-private-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-shutdown-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-driver-setup-l1-1-0.dll : C:\Windows\system32\drvsetup.dll
[ApiSetSchema] ext-ms-win-security-slc-l1-1-0.dll : C:\Windows\system32\slc.dll
[ApiSetSchema] ext-ms-win-setupapi-inf-l1-1-0.dll : C:\Windows\system32\Setupapi.dll
[ApiSetSchema] ext-ms-win-setupapi-inf-l1-1-1.dll : C:\Windows\system32\Setupapi.dll
[ApiSetSchema] api-ms-win-core-kernel32-legacy-l1-1-2.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-job-l2-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-com-l1-1-2.dll : C:\Windows\system32\combase.dll
[ApiSetSchema] api-ms-win-storage-exports-internal-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] api-ms-win-storage-exports-external-l1-1-0.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-onecore-appmodel-staterepository-internal-l1-1-3.dll : C:\Windows\system32\windows.staterepositoryclient.dll
[ApiSetSchema] api-ms-win-shell-associations-l1-1-1.dll : C:\Windows\system32\windows.storage.dll
[ApiSetSchema] ext-ms-win-domainjoin-netjoin-l1-1-0.dll : C:\Windows\system32\netjoin.dll
[ApiSetSchema] ext-ms-win-com-ole32-l1-1-2.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-storage-sense-l1-2-0.dll :
[ApiSetSchema] ext-ms-win-gui-dui70-l1-1-0.dll : C:\Windows\system32\dui70.dll
[ApiSetSchema] ext-ms-win-net-netbios-l1-1-0.dll : C:\Windows\system32\netbios.dll
[ApiSetSchema] api-ms-win-security-lsapolicy-l1-1-1.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] api-ms-win-mm-time-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-kernel32-private-l1-1-2.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-mm-mme-l1-1-0.dll : C:\Windows\system32\winmmbase.dll
[ApiSetSchema] api-ms-win-mm-misc-l1-1-0.dll : C:\Windows\system32\winmmbase.dll
[ApiSetSchema] ext-ms-win-ntuser-dialogbox-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-server-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-window-l1-1-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-oleacc-l1-1-1.dll : C:\Windows\system32\oleacc.dll
[ApiSetSchema] api-ms-win-mm-misc-l2-1-0.dll : C:\Windows\system32\winmm.dll
[ApiSetSchema] ext-ms-win-core-resourcepolicy-l1-1-0.dll :
[ApiSetSchema] api-ms-win-core-psm-appnotify-l1-1-0.dll : C:\Windows\system32\twinapi.appcore.dll
[ApiSetSchema] ext-ms-win-session-winsta-l1-1-0.dll : C:\Windows\system32\winsta.dll
[ApiSetSchema] api-ms-win-core-realtime-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-core-pkeyhelper-l1-1-0.dll : C:\Windows\system32\pkeyhelper.dll
[ApiSetSchema] ext-ms-win-ntuser-dc-access-ext-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-gdi-devcaps-l1-1-0.dll : C:\Windows\system32\gdi32full.dll
[ApiSetSchema] ext-ms-win-security-credui-internal-l1-1-0.dll : C:\Windows\system32\wincredui.dll
[ApiSetSchema] ext-ms-win-ntuser-dialogbox-l1-1-2.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-draw-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-l1-1-2.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] api-ms-win-security-logon-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-direct2d-desktop-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-ntuser-sysparams-ext-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-ntuser-powermanagement-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-core-textinput-client-l1-1-1.dll :
[ApiSetSchema] api-ms-win-core-textinput-client-l1-1-0.dll :
[ApiSetSchema] api-ms-win-base-util-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-downlevel-kernel32-l2-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-service-core-l1-1-4.dll : C:\Windows\system32\sechost.dll
[ApiSetSchema] ext-ms-win-firewallapi-webproxy-l1-1-0.dll : C:\Windows\system32\firewallapi.dll
[ApiSetSchema] api-ms-win-networking-interfacecontexts-l1-1-0.dll : C:\Windows\system32\ondemandconnroutehelper.dll
[ApiSetSchema] ext-ms-win-networking-wcmapi-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-resourcemanager-crm-l1-2-0.dll :
[ApiSetSchema] ext-ms-win-appcompat-aeinv-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-mpr-multipleproviderrouter-l1-1-0.dll : C:\Windows\system32\mprext.dll
[ApiSetSchema] ext-ms-win-ntuser-message-l1-1-1.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-kernel32-localization-l1-1-0.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] api-ms-win-core-registry-private-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-security-logon-l1-1-1.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-security-credui-l1-1-1.dll : C:\Windows\system32\credui.dll
[ApiSetSchema] ext-ms-win-advapi32-lsa-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] api-ms-win-appmodel-runtime-internal-l1-1-7.dll : C:\Windows\system32\kernel.appcore.dll
[ApiSetSchema] ext-ms-win-profile-extender-l1-1-0.dll : C:\Windows\system32\userenv.dll
[ApiSetSchema] ext-ms-win-gpsvc-grouppolicy-l1-1-0.dll : C:\Windows\system32\gpsvc.dll
[ApiSetSchema] ext-ms-win-net-isoext-l1-1-0.dll : C:\Windows\system32\firewallapi.dll
[ApiSetSchema] ext-ms-win-shell-shell32-l1-2-0.dll : C:\Windows\system32\SHELL32.dll
[ApiSetSchema] api-ms-win-core-kernel32-legacy-l1-1-5.dll : C:\Windows\system32\kernel32.dll
[ApiSetSchema] ext-ms-win-devmgmt-policy-l1-1-2.dll :
[ApiSetSchema] ext-ms-win-rtcore-ntuser-usersecurity-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-rpc-ssl-l1-1-0.dll : C:\Windows\system32\rpcrtremote.dll
[ApiSetSchema] ext-ms-win-authz-context-l1-1-0.dll : C:\Windows\system32\authz.dll
[ApiSetSchema] api-ms-win-security-base-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] ext-ms-win-ras-rasapi32-l1-1-0.dll : C:\Windows\system32\rasapi32.dll
[ApiSetSchema] ext-ms-win-security-credui-l1-1-0.dll : C:\Windows\system32\credui.dll
[ApiSetSchema] ext-ms-win-security-cryptui-l1-1-0.dll : C:\Windows\system32\cryptui.dll
[ApiSetSchema] ext-ms-win-security-cryptui-l1-1-1.dll : C:\Windows\system32\cryptui.dll
[ApiSetSchema] ext-ms-win-networking-wlanapi-l1-1-0.dll :
[ApiSetSchema] ext-ms-win-ras-tapi32-l1-1-1.dll :
[ApiSetSchema] api-ms-win-core-localization-l1-2-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-heap-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-errorhandling-l1-1-1.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-core-rtlsupport-l1-2-0.dll : C:\Windows\system32\ntdll.dll
[ApiSetSchema] api-ms-win-core-interlocked-l1-2-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-http-time-l1-1-0.dll : C:\Windows\system32\kernelbase.dll
[ApiSetSchema] api-ms-win-rtcore-ntuser-clipboard-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] api-ms-win-security-systemfunctions-l1-1-0.dll : C:\Windows\system32\advapi32.dll
[ApiSetSchema] ext-ms-win-ole32-ie-ext-l1-1-0.dll : C:\Windows\system32\ole32.dll
[ApiSetSchema] ext-ms-win-ntuser-mouse-l1-1-0.dll : C:\Windows\system32\user32.dll
[ApiSetSchema] ext-ms-win-shell-shlwapi-l1-1-0.dll : C:\Windows\system32\SHLWAPI.dll
[ApiSetSchema] api-ms-win-security-isolatedcontainer-l1-1-0.dll : C:\Windows\system32\SHCORE.dll
[ApiSetSchema] ext-ms-win-ole32-oleautomation-l1-1-0.dll : C:\Windows\system32\ole32.dll
[WellKnownDlls] SHELL32.dll : C:\Windows\system32\SHELL32.dll
[WellKnownDlls] KERNEL32.dll : C:\Windows\system32\kernel32.dll
[WellKnownDlls] SHLWAPI.dll : C:\Windows\system32\SHLWAPI.dll
[WellKnownDlls] ADVAPI32.dll : C:\Windows\system32\advapi32.dll
[WellKnownDlls] bcrypt.dll : C:\Windows\system32\bcrypt.dll
[WellKnownDlls] OLEAUT32.dll : C:\Windows\system32\OLEAUT32.dll
[WellKnownDlls] ntdll.dll : C:\Windows\system32\ntdll.dll
[WellKnownDlls] msvcrt.dll : C:\Windows\system32\MSVCRT.dll
[WellKnownDlls] KERNELBASE.dll : C:\Windows\system32\kernelbase.dll
[WellKnownDlls] SECHOST.dll : C:\Windows\system32\sechost.dll
[WellKnownDlls] RPCRT4.dll : C:\Windows\system32\rpcrt4.dll
[WellKnownDlls] WINTRUST.dll : C:\Windows\system32\WINTRUST.dll
[WellKnownDlls] USER32.dll : C:\Windows\system32\user32.dll
[WellKnownDlls] CRYPT32.dll : C:\Windows\system32\CRYPT32.dll
[WellKnownDlls] NSI.dll : C:\Windows\system32\NSI.dll
[WellKnownDlls] WS2_32.dll : C:\Windows\system32\WS2_32.dll
[WellKnownDlls] win32u.dll : C:\Windows\system32\win32u.dll
[WellKnownDlls] GDI32.dll : C:\Windows\system32\gdi32.dll
[WellKnownDlls] msvcp_win.dll : C:\Windows\system32\msvcp_win.dll
[WellKnownDlls] SHCORE.dll : C:\Windows\system32\SHCORE.dll
[WellKnownDlls] combase.dll : C:\Windows\system32\combase.dll
[WellKnownDlls] CFGMGR32.dll : C:\Windows\system32\cfgmgr32.dll
[WellKnownDlls] bcryptPrimitives.dll : C:\Windows\system32\bcryptPrimitives.dll
[WellKnownDlls] ole32.dll : C:\Windows\system32\ole32.dll
[WellKnownDlls] coml2.dll : C:\Windows\system32\coml2.dll
[WellKnownDlls] COMCTL32.dll : C:\Windows\system32\COMCTL32.dll
[WellKnownDlls] gdiplus.dll : C:\Windows\system32\gdiplus.dll
[WellKnownDlls] IMM32.dll : C:\Windows\system32\IMM32.dll
[WellKnownDlls] MSCTF.dll : C:\Windows\system32\MSCTF.dll
[WellKnownDlls] WLDAP32.dll : C:\Windows\system32\WLDAP32.dll
[WellKnownDlls] imagehlp.dll : C:\Windows\system32\IMAGEHLP.dll
[WellKnownDlls] SETUPAPI.dll : C:\Windows\system32\Setupapi.dll
[WindowsFolder] MSVCP140.dll : C:\Windows\system32\MSVCP140.dll
[WindowsFolder] VCRUNTIME140_1.dll : C:\Windows\system32\VCRUNTIME140_1.dll
[WindowsFolder] VCRUNTIME140.dll : C:\Windows\system32\VCRUNTIME140.dll
[WindowsFolder] WININET.dll : C:\Windows\system32\WININET.dll
[WindowsFolder] winsqlite3.dll : C:\Windows\system32\winsqlite3.dll
[WindowsFolder] icuuc.dll : C:\Windows\system32\icuuc.dll
[WindowsFolder] icuin.dll : C:\Windows\system32\icuin.dll
[WindowsFolder] urlmon.dll : C:\Windows\system32\urlmon.dll
[WindowsFolder] CONCRT140.dll : C:\Windows\system32\CONCRT140.dll
[WindowsFolder] CRYPTSP.dll : C:\Windows\system32\CRYPTSP.dll
[WindowsFolder] CRYPTBASE.dll : C:\Windows\system32\CRYPTBASE.dll
[WindowsFolder] SspiCli.dll : C:\Windows\system32\SspiCli.dll
[WindowsFolder] USERENV.dll : C:\Windows\system32\USERENV.dll
[WindowsFolder] IPHLPAPI.DLL : C:\Windows\system32\IPHLPAPI.DLL
[WindowsFolder] DNSAPI.dll : C:\Windows\system32\DNSAPI.dll
[WindowsFolder] netutils.dll : C:\Windows\system32\netutils.dll
[WindowsFolder] logoncli.dll : C:\Windows\system32\logoncli.dll
[WindowsFolder] profapi.dll : C:\Windows\system32\profapi.dll
[WindowsFolder] dhcpcsvc.DLL : C:\Windows\system32\dhcpcsvc.DLL
[WindowsFolder] dhcpcsvc6.DLL : C:\Windows\system32\dhcpcsvc6.DLL
[WindowsFolder] WINNSI.DLL : C:\Windows\system32\WINNSI.DLL
[WindowsFolder] MSIMG32.dll : C:\Windows\system32\MSIMG32.dll
[WindowsFolder] WINSTA.dll : C:\Windows\system32\WINSTA.dll
[WindowsFolder] TextShaping.dll : C:\Windows\system32\TextShaping.dll
[WindowsFolder] DWrite.dll : C:\Windows\system32\DWrite.dll
[WindowsFolder] mscms.dll : C:\Windows\system32\mscms.dll
[WindowsFolder] bcp47mrm.dll : C:\Windows\system32\bcp47mrm.dll
[WindowsFolder] ColorAdapterClient.dll : C:\Windows\system32\ColorAdapterClient.dll
[WindowsFolder] PROPSYS.dll : C:\Windows\system32\PROPSYS.dll
[WindowsFolder] DSROLE.dll : C:\Windows\system32\DSROLE.dll
[WindowsFolder] ACTIVEDS.dll : C:\Windows\system32\ACTIVEDS.dll
[WindowsFolder] srpapi.dll : C:\Windows\system32\srpapi.dll
[WindowsFolder] XmlLite.dll : C:\Windows\system32\XmlLite.dll
[WindowsFolder] Bcp47Langs.dll : C:\Windows\system32\Bcp47Langs.dll
[WindowsFolder] icu.dll : C:\Windows\system32\icu.dll
[WindowsFolder] MPR.dll : C:\Windows\system32\MPR.dll
[WindowsFolder] wkscli.dll : C:\Windows\system32\wkscli.dll
[WindowsFolder] wer.dll : C:\Windows\system32\wer.dll
[WindowsFolder] Wldp.dll : C:\Windows\system32\Wldp.dll
[WindowsFolder] CoreMessaging.dll : C:\Windows\system32\CoreMessaging.dll
[WindowsFolder] REGAPI.dll : C:\Windows\system32\REGAPI.dll
[WindowsFolder] samcli.dll : C:\Windows\system32\samcli.dll
[WindowsFolder] BROWCLI.dll : C:\Windows\system32\BROWCLI.dll
[WindowsFolder] SAMLIB.dll : C:\Windows\system32\SAMLIB.dll
[WindowsFolder] ncrypt.dll : C:\Windows\system32\ncrypt.dll
[WindowsFolder] DSPARSE.dll : C:\Windows\system32\DSPARSE.dll
[WindowsFolder] NTASN1.dll : C:\Windows\system32\NTASN1.dll
[WindowsFolder] dbghelp.dll : C:\Windows\system32\dbghelp.dll
[WindowsFolder] NETAPI32.dll : C:\Windows\system32\NETAPI32.dll
[WindowsFolder] WINHTTP.dll : C:\Windows\system32\WINHTTP.dll
[WindowsFolder] Cabinet.dll : C:\Windows\system32\Cabinet.dll
[WindowsFolder] UMPDC.dll : C:\Windows\system32\UMPDC.dll
[WindowsFolder] DUI70.dll : C:\Windows\system32\DUI70.dll
[WindowsFolder] UxTheme.dll : C:\Windows\system32\UxTheme.dll
[WindowsFolder] dwmapi.dll : C:\Windows\system32\dwmapi.dll
[WindowsFolder] DUser.dll : C:\Windows\system32\DUser.dll
[WindowsFolder] OLEACC.dll : C:\Windows\system32\OLEACC.dll
[WindowsFolder] WindowsCodecs.dll : C:\Windows\system32\WindowsCodecs.dll
[WindowsFolder] d3d11.dll : C:\Windows\system32\d3d11.dll
[WindowsFolder] dxgi.dll : C:\Windows\system32\dxgi.dll
[WindowsFolder] d3d11on12.dll : C:\Windows\system32\d3d11on12.dll
[WindowsFolder] dxilconv.dll : C:\Windows\system32\dxilconv.dll
[WindowsFolder] d3d12.dll : C:\Windows\system32\d3d12.dll
[WindowsFolder] Secur32.dll : C:\Windows\system32\Secur32.dll
[WindowsFolder] EFSUTIL.dll : C:\Windows\system32\EFSUTIL.dll
[WindowsFolder] DEVOBJ.dll : C:\Windows\system32\DEVOBJ.dll
[WindowsFolder] iertutil.dll : C:\Windows\system32\iertutil.dll
[WindowsFolder] twinapi.appcore.dll : C:\Windows\system32\twinapi.appcore.dll
[WindowsFolder] FirewallAPI.dll : C:\Windows\system32\FirewallAPI.dll
[WindowsFolder] MrmCoreR.dll : C:\Windows\system32\MrmCoreR.dll
[WindowsFolder] srvcli.dll : C:\Windows\system32\srvcli.dll
[WindowsFolder] NTDSAPI.dll : C:\Windows\system32\NTDSAPI.dll
[WindowsFolder] W32TOPL.dll : C:\Windows\system32\W32TOPL.dll
[WindowsFolder] WTSAPI32.dll : C:\Windows\system32\WTSAPI32.dll
[WindowsFolder] DEVRTL.dll : C:\Windows\system32\DEVRTL.dll
[WindowsFolder] dbgeng.dll : C:\Windows\system32\dbgeng.dll
[WindowsFolder] dbgmodel.dll : C:\Windows\system32\dbgmodel.dll
[WindowsFolder] WindowsPerformanceRecorderControl.dll : C:\Windows\system32\WindowsPerformanceRecorderControl.dll
[WindowsFolder] fwbase.dll : C:\Windows\system32\fwbase.dll
[WindowsFolder] FWPolicyIOMgr.dll : C:\Windows\system32\FWPolicyIOMgr.dll
[WindowsFolder] AppXDeploymentClient.dll : C:\Windows\system32\AppXDeploymentClient.dll
[WindowsFolder] AppXAllUserStore.dll : C:\Windows\system32\AppXAllUserStore.dll
[WindowsFolder] StateRepository.Core.dll : C:\Windows\system32\StateRepository.Core.dll
[WindowsFolder] EFSCORE.dll : C:\Windows\system32\EFSCORE.dll
[WindowsFolder] VAULTCLI.dll : C:\Windows\system32\VAULTCLI.dll
[WindowsFolder] AUTHZ.dll : C:\Windows\system32\AUTHZ.dll
[WindowsFolder] winmsipc.dll : C:\Windows\system32\winmsipc.dll
[WindowsFolder] winipcfile.dll : C:\Windows\system32\winipcfile.dll
[WindowsFolder] wevtapi.dll : C:\Windows\system32\wevtapi.dll
[WindowsFolder] Windows.UI.Immersive.dll : C:\Windows\system32\Windows.UI.Immersive.dll
[WindowsFolder] FeClient.dll : C:\Windows\system32\FeClient.dll
[WindowsFolder] UIAutomationCore.DLL : C:\Windows\system32\UIAutomationCore.DLL
[WindowsFolder] msiltcfg.dll : C:\Windows\system32\msiltcfg.dll
[WindowsFolder] apphelp.dll : C:\Windows\system32\apphelp.dll
[WindowsFolder] VERSION.dll : C:\Windows\system32\VERSION.dll
[WindowsFolder] SCECLI.dll : C:\Windows\system32\SCECLI.dll
[WindowsFolder] WINSPOOL.DRV : C:\Windows\system32\WINSPOOL.DRV
[WindowsFolder] drvstore.dll : C:\Windows\system32\drvstore.dll
[WindowsFolder] SPINF.dll : C:\Windows\system32\SPINF.dll
[WindowsFolder] SPFILEQ.dll : C:\Windows\system32\SPFILEQ.dll
[WindowsFolder] sppc.dll : C:\Windows\system32\sppc.dll
[WindowsFolder] WINMM.dll : C:\Windows\system32\WINMM.dll
[WindowsFolder] DAVHLPR.dll : C:\Windows\system32\DAVHLPR.dll
[WindowsFolder] CSCAPI.dll : C:\Windows\system32\CSCAPI.dll
[WindowsFolder] ntshrui.dll : C:\Windows\system32\ntshrui.dll
[WindowsFolder] POWRPROF.dll : C:\Windows\system32\POWRPROF.dll
[WindowsFolder] ADVPACK.dll : C:\Windows\system32\ADVPACK.dll
[WindowsFolder] WINBRAND.dll : C:\Windows\system32\WINBRAND.dll
[WindowsFolder] credui.dll : C:\Windows\system32\credui.dll
[WindowsFolder] VirtDisk.dll : C:\Windows\system32\VirtDisk.dll
[WindowsFolder] CHARTV.dll : C:\Windows\system32\CHARTV.dll
[WindowsFolder] LINKINFO.dll : C:\Windows\system32\LINKINFO.dll
[WindowsFolder] JoinUtil.dll : C:\Windows\system32\JoinUtil.dll
[WindowsFolder] netprovfw.dll : C:\Windows\system32\netprovfw.dll
[WindowsFolder] WINMMBASE.dll : C:\Windows\system32\WINMMBASE.dll
[WindowsFolder] MMDevAPI.DLL : C:\Windows\system32\MMDevAPI.DLL
[WindowsFolder] WMICLNT.dll : C:\Windows\system32\WMICLNT.dll
[WindowsFolder] CRYPTUI.dll : C:\Windows\system32\CRYPTUI.dll
[WindowsFolder] WinSCard.dll : C:\Windows\system32\WinSCard.dll
[WindowsFolder] certca.dll : C:\Windows\system32\certca.dll
[WindowsFolder] DPAPI.dll : C:\Windows\system32\DPAPI.dll
[WindowsFolder] CRYPTNET.dll : C:\Windows\system32\CRYPTNET.dll
[WindowsFolder] FLTLIB.DLL : C:\Windows\system32\FLTLIB.DLL
[WindowsFolder] d2d1.dll : C:\Windows\system32\d2d1.dll
[WindowsFolder] Windows.Storage.dll : C:\Windows\system32\Windows.Storage.dll
[WindowsFolder] websocket.dll : C:\Windows\system32\websocket.dll
[WindowsFolder] webio.dll : C:\Windows\system32\webio.dll
[WindowsFolder] adsldpc.dll : C:\Windows\system32\adsldpc.dll
[WindowsFolder] NTMARTA.dll : C:\Windows\system32\NTMARTA.dll
[WindowsFolder] SYSNTFY.dll : C:\Windows\system32\SYSNTFY.dll
[WindowsFolder] nlaapi.dll : C:\Windows\system32\nlaapi.dll
[WindowsFolder] dfscli.dll : C:\Windows\system32\dfscli.dll
[WindowsFolder] GPAPI.dll : C:\Windows\system32\GPAPI.dll
[WindowsFolder] fwpuclnt.dll : C:\Windows\system32\fwpuclnt.dll
[WindowsFolder] ktmw32.dll : C:\Windows\system32\ktmw32.dll
[WindowsFolder] MSASN1.dll : C:\Windows\system32\MSASN1.dll
[WindowsFolder] HTTPAPI.dll : C:\Windows\system32\HTTPAPI.dll
[WindowsFolder] ESENT.dll : C:\Windows\system32\ESENT.dll
[WindowsFolder] TOKENBINDING.dll : C:\Windows\system32\TOKENBINDING.dll
[WindowsFolder] rasman.dll : C:\Windows\system32\rasman.dll
[WindowsFolder] eappcfg.dll : C:\Windows\system32\eappcfg.dll
[WindowsFolder] rtutils.dll : C:\Windows\system32\rtutils.dll
[WindowsFolder] MPRMSG.dll : C:\Windows\system32\MPRMSG.dll
[WindowsFolder] tbs.dll : C:\Windows\system32\tbs.dll
[NOT_FOUND] ext-ms-win-security-chambers-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-oobe-query-l1-1-0.dll :
[NOT_FOUND] cldapi.dll :
[NOT_FOUND] ext-ms-win32-subsystem-query-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-appmodel-viewscalefactor-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-core-winrt-remote-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-com-apartmentrestriction-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-com-suspendresiliency-l1-1-0.dll :
[NOT_FOUND] RMCLIENT.dll :
[NOT_FOUND] ext-ms-win-appmodel-deployment-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-appmodel-usercontext-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-ui-viewmanagement-l1-1-0.dll :
[NOT_FOUND] CoreUIComponents.dll :
[NOT_FOUND] dcomp.dll :
[NOT_FOUND] ContactActivation.dll :
[NOT_FOUND] FVEAPI.dll :
[NOT_FOUND] ext-ms-win-security-authz-helper-l1-1-0.dll :
[NOT_FOUND] ext-ms-onecore-service-devicedirectory-claims-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-rtcore-minuser-private-ext-l1-1-1.dll :
[NOT_FOUND] ext-ms-win-wer-xbox-l1-1-0.dll :
[NOT_FOUND] ext-ms-mf-pal-l2-1-0.dll :
[NOT_FOUND] D3DSCache.dll :
[NOT_FOUND] dsclient.dll :
[NOT_FOUND] ext-ms-win-shell-knownfolderext-l1-1-0.dll :
[NOT_FOUND] efswrt.dll :
[NOT_FOUND] edputil.dll :
[NOT_FOUND] SystemEventsBrokerClient.dll :
[NOT_FOUND] ext-ms-onecore-defaultdiscovery-l1-1-0.dll :
[NOT_FOUND] ext-ms-win-containers-policymanagercli-l1-1-0.dll :
[NOT_FOUND] dsreg.dll :
[NOT_FOUND] HvsiFileTrust.dll :
[NOT_FOUND] policymanager.dll :
[NOT_FOUND] ext-ms-win-resources-languageoverlay-l1-1-0.dll :
[NOT_FOUND] AppxApplicabilityEngine.dll :
[NOT_FOUND] cryptngc.dll :
[NOT_FOUND] edpauditapi.dll :
[NOT_FOUND] MFTranscode.dll :
[NOT_FOUND] MFCORE.dll :
[NOT_FOUND] MFPlat.DLL :
[NOT_FOUND] windows.globalization.fontgroups.dll :
[NOT_FOUND] ext-ms-win-rtcore-minuser-private-ext-l1-1-0.dll :
[NOT_FOUND] api-ms-win-containers-cmclient-l1-2-0.dll :
[NOT_FOUND] api-ms-win-containers-cmclient-l1-1-0.dll :
[NOT_FOUND] DEVMGR.DLL :
[NOT_FOUND] SHDOCVW.dll :
[NOT_FOUND] EFSADU.dll :
[NOT_FOUND] elscore.dll :
[NOT_FOUND] ext-ms-win-audiocore-pal-l1-2-0.dll :
[NOT_FOUND] ext-ms-win-resources-languageoverlay-l1-1-1.dll :
[NOT_FOUND] NETPLWIZ.dll :
[NOT_FOUND] ext-ms-windowscore-deviceinfo-l1-1-0.dll :
[NOT_FOUND] wpaxholder.dll :

@PatrikCarlander
Copy link

I didn't based it on servercore2004 image, I based it on mcr.microsoft.com/windows:2004

My image is here https://hub.docker.com/repository/docker/patrikcarlander/buildtools.

I vote for that Microsoft should make it easy to install Winget in Docker.
Winget is very useful in Docker.

@denelon denelon added this to the Package Manager v1.0 milestone May 3, 2021
@denelon denelon added this to To do in Client-Current May 6, 2021
@denelon denelon moved this from To do to Assigned in Client-Current May 17, 2021
@hjmallon
Copy link

hjmallon commented Aug 5, 2021

I get the following when trying to install winget in my Dockerfile. I think proper instructions on how to do this would be very useful.

Add-AppPackage -Path "C:\TEMP\Microsoft.DesktopAppInstaller.msixbundle"
Add-AppPackage : Deployment failed with HRESULT: 0x80073D19, An error occurred 
because a user was logged off.
Unspecified error
NOTE: For additional information, look for [ActivityId] 
40991304-8568-0000-e6d0-ef406885d701 in the Event Log or use the command line 
Get-AppPackageLog -ActivityID 40991304-8568-0000-e6d0-ef406885d701
At line:1 char:1
+ Add-AppPackage -Path C:\TEMP\Microsoft.DesktopAppInstaller.msixbundle
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (C:\TEMP\Microso...ller.msixbundle 
   :String) [Add-AppxPackage], Exception
    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageMa 
   nager.Commands.AddAppxPackageCommand

@denelon denelon moved this from Assigned to To do in Client-Current Aug 5, 2021
@denelon denelon modified the milestones: v1.1-Client, v1.2 Client Oct 1, 2021
@vedantmgoyal9
Copy link
Contributor

@denelon I already install WinGet in GitHub Runner which runs Windows Server 2019 (also tested on 2022) so can I publish those instructions only or will there be anything else?

@vedantmgoyal9
Copy link
Contributor

For docker, @jedieaston has built a container that is available on the docker hub.

https://hub.docker.com/r/jedieaston/winget

@isanych
Copy link
Author

isanych commented Dec 17, 2021

Where is Dockerfile for this container?

@vedantmgoyal9
Copy link
Contributor

@jedieaston knows since he built the container. I have installed docker for the first-time today and doing experiments with it.

@denelon
Copy link
Contributor

denelon commented Dec 20, 2021

@vedantmgoyal2009 we're not able to support Windows Server SKUs at this time. We're going to hold off on posting instructions for a non-supported configuration. We are working with several other teams on all the dependencies to identify the areas of concern related to Windows Server. This will likely be a very long lead time. The support matrix for Server SKUs and LTSC SKUs is quite complex.

@jedieaston
Copy link
Contributor

jedieaston commented Dec 23, 2021

Disclaimer: This isn't supported by Microsoft. Don't open issues if something winget related doesn't work inside this container.

Open the MSIX file from GitHub Releases as a zip file (change the extension), and inside of it, find the file "AppInstaller_x64.msix" and extract it as a zip file too. Find the files "AppInstallerCLI.exe" and "resources.pri" inside of that zip, and put them next to this Dockerfile:

FROM mcr.microsoft.com/windows/server:ltsc2022
WORKDIR C:/Downloads
ADD https://aka.ms/vs/16/release/vc_redist.x64.exe C:/Downloads/vcredist_x64.exe
RUN C:\Downloads\vcredist_x64.exe /install /passive /norestart /log out.txt
WORKDIR C:/winget
ADD AppInstallerCLI.exe winget.exe
ADD resources.pri .
# ENTRYPOINT ["winget.exe"]
# CMD ["--help"]

Then use docker run to get a shell, and do what you want.

@denelon
Copy link
Contributor

denelon commented Jan 8, 2022

@jedieaston I haven't used Docker on Windows. Is it possible to use PowerShell to add the package using the license from the GitHub release on a Windows 10 image?

@denelon
Copy link
Contributor

denelon commented Jan 8, 2022

This is similar if not a duplicate of #669

@jedieaston
Copy link
Contributor

jedieaston commented Jan 10, 2022

The images are based on Server but it should be. I haven't tried it yet, given the unzip method seems to work and installing winget the normal way doesn't (#1474 means we can't run winget.exe via docker exec).

@denelon denelon removed the Issue-Docs It's a documentation issue that really should be on MicrosoftDocs label Feb 22, 2022
@microsoft microsoft locked and limited conversation to collaborators Feb 22, 2022
@denelon denelon converted this issue into discussion #1961 Feb 22, 2022
@denelon denelon moved this from To do to Done in Client-Current Jul 11, 2022
@denelon denelon removed this from Done in Client-Current Jul 11, 2022
@denelon denelon modified the milestones: v1.2-Client, v.Next-Client Jun 13, 2023
@denelon denelon removed their assignment Jun 13, 2023
@denelon denelon modified the milestones: v.Next-Client, v1.6 Client Jun 30, 2023

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants