Code Monkey home page Code Monkey logo

glazier's Introduction

Glazier

Support Action(s) Contributing Open Issues License
Google Groups - Glazier Python Tests Go Tests Contributing Open Issues License

Gla·zier /ˈɡlāZHər/ noun: a person who installs windows.

Glazier is a tool developed at Google for automating Windows operating system deployments.

How it works

  • Boots a system into the Windows Preinstallation Environment (WinPE)
  • Reaches out to a web server for instructions over HTTPS
  • Applies a base operating system
  • Installs applications and configurations to said operating system

Want to dive right in? See our docs site for how you can get started with Glazier.

Why Glazier?

Glazier was created with the following three core principles in mind:

1. Text-Based & Code-Driven

With Glazier, imaging is configured entirely via YAML files. This allows engineers to leverage source control systems to maintain and develop their imaging platform. By keeping imaging configs in source control, we gain peer review, change history, rollback/forward, and all the other benefits normally reserved for writing code.

Reuse and templating allows for config sharing across multiple image types.

Configs can be consumed by unit tests, build simulators, and other helper infrastructure to build a robust, automated imaging pipeline.

Source controlled text makes it easy to integrate configs across multiple branches, making it easy to QA new changes before releasing them to the general population.

2. Scalability

Glazier distributes all data over HTTPS, which means you can use as simple or as advanced of a distribution platform as you need. Run it from a simple free web server or a large cloud-based CDN. HTTPS is a requirement.

Proxies make it easy to accelerate image deployment to remote sites.

3. Extensibility

Glazier makes it simple to extend the installer by writing a bit of Python or PowerShell code. See creating new actions under docs to get started.

Glazier's Actions are the core of the system's configuration language. Glazier ships with some existing actions, but for more custom functionality, you can also create your own.

Getting started

See our setup docs to learn about how you can get started with Glazier in your own environment.

Contact

We'd love to hear from you! If you have any questions or suggestions regarding the documentation below, please make a post in our public discussion list at [email protected].

If you have any general questions for the Windows Team at Google that wrote Glazier, please make a post in our public discussion list at [email protected].

Disclaimer

Glazier is maintained by a small team at Google. Support for this repo is treated as best effort, and issues will be responded to as engineering time permits.

This is not an official Google product.

glazier's People

Contributors

chief8192 avatar cjgenevi avatar discentem avatar gitgerby avatar hanszolo avatar iamacarpet avatar itsmattl avatar jfut avatar jm2 avatar lippertmarkus avatar mbernhardt6 avatar mit-da avatar mjoliver avatar ofek avatar rchen152 avatar titoaldarondo avatar tseknet avatar videlanicolas avatar wrongjesus avatar yilei avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

glazier's Issues

Stuck trying to build WinPE environment

I've done a tremendous amount of debugging and reading the google groups/reddit and various other places to try and piecemeal how to get glazier working, but I am now stuck and can't figure out why things aren't working:

At this point I have python able to run, but when it tries to run autobuild.py I get a python trace complaining about a DLL load failed

  File "x:\python\lib\lib-tk\FixTk.py", line 68, in <module>
    import _tinker
ImportError: DLL load failed: The specified module could not be found.

I am running 32-bit WinPE v10.0.14393.0, Python 2.7.16 32-bit with VC++ Redistributables.

Here are my current notes as to what I've done to get to this point (I think the most complete public information on how to do this). Any help would be immensely appreciated.

How to debug potential python issues in WinPE:
start cmd.exe
sxstrace trace -logfile:trace.etl

run python.exe in original window and produce error

stop the sxstrace process
sxstrace parse -logfile:trace.etl -outfile:trace.txt
more trace.txt

32-Bit instructions:

Step 1: download Windows ADK: https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install

Step 2: Install WinPE addon (if running Win 10 1809+) https://go.microsoft.com/fwlink/?linkid=2022233

Step 3: Run Deployment and Imaging Tools Environment (as administrator)

Step 4: Create a 32-bit PE folder:
copype x86 C:\WinPE_x86

Step 5: Mount the wim file:
Dism /Mount-Image /ImageFile:"C:\WinPE_x86\media\sources\boot.wim" /Index:1 /MountDir:"C:\WinPE_x86\mount"

Step 6: Get "shutdown.exe" from C:\Windows\System32 and copy it to C:\WinPE_x86\mount\Windows\System32

Step 7: Add the WMI package functionality with DISM
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\WinPE-WMI.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\en-us\WinPE-WMI_en-us.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\WinPE-NetFX.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\en-us\WinPE-NetFX_en-us.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\WinPE-Scripting.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\en-us\WinPE-Scripting_en-us.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\WinPE-PowerShell.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\en-us\WinPE-PowerShell_en-us.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\WinPE-StorageWMI.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\en-us\WinPE-StorageWMI_en-us.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\WinPE-DismCmdlets.cab"
Dism /Add-Package /Image:"C:\WinPE_x86\mount" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs\en-us\WinPE-DismCmdlets_en-us.cab"

Step 8: Create a "src" folder and copy the glazier folder from the glazier code repo
C:\WinPE_x86\mount\src
C:\WinPE_x86\mount\src\glazier

Step 9: Download official python 2.7 MSI and install it, pointing installer to your PE environment
C:\WinPE_x86\mount\python

Step 10: using pip and install required packages
pip install absl-py
pip install PyYAML
pip install pyfakefs
pip install mock

Step 11: Download gwimpy from https://github.com/google/winops and install it manually into glazier folder
C:\WinPE_x86\mount\src\glazier\gwimpy

Step 12: Extract the Visual Studio C++ 2008 Redistributable package: http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe
vcredist_x86.exe /extract (GUI will popup to specify a folder)
msiexec /a C:\Users\someone\Downloads\vcred\vc_red.msi /qb TARGETDIR="C:\Users\someone\Downloads\vcred\msiextract"

Step 13: Copy the respective dll and manifest file to the python directory
C:\Users\someone\Downloads\vcred\msiextract\Windows\winsxs\ulCRTx86\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375.manifest
C:\Users\someone\Downloads\vcred\msiextract\Windows\winsxs\ulCRTx86\msvcr90.dll

Step 14: Rename both of these files to "Microsoft.VC90.CRT"
C:\WinPE_x86\mount\python\Microsoft.VC90.CRT.dll
C:\WinPE_x86\mount\python\MSVCR90.dll (clone of the above file)
C:\WinPE_x86\mount\python\Microsoft.VC90.CRT.manifest

Step 15: Copy  the VC90 manifest/dll to C:\WinPE_x86\mount\python\DLLs for tkinker to work
Unknown why it is looking for the DLLs here as well....
C:\WinPE_x86\mount\python\DLLs\Microsoft.VC90.CRT.dll
C:\WinPE_x86\mount\python\DLLs\Microsoft.VC90.CRT.manifest

Step 16: Copy the python27.dll into the python folder
32-bit windows: C:\Windows\system32\python27.dll
64-bit windows: C:\Windows\sysWOW64\python27.dll
C:\WinPE_x86\mount\python\python27.dl

Step 17: Create a "resources" folder and install the windowsZones.xml file from https://github.com/unicode-org/cldr/blob/master/common/supplemental/windowsZones.xml and logo.gif
C:\WinPE_x86\mount\resources
C:\WinPE_x86\mount\resources\windowsZones.xml
C:\WinPE_x86\mount\resources\logo.gif (need to provide your own, unknown on size and resolution)

Step 18: Modify the startnet.cmd file with the contents from the Glazier readme (Requires a text editor with administator access)
C:\WinPE_x86\mount\Windows\System32\startnet.cmd

Step 19: Update the constants.py file for your environment
C:\WinPE_x86\mount\src\glazier\lib\constants.py

Step 20: commit the image
Dism /Unmount-Image /MountDir:C:\WinPE_x86\mount /Commit

Step 21: Create ISO to test in a VM
MakeWinPEMedia /ISO C:\WinPE_x86 C:\WinPE_x86\WinPE_x86.iso

Can't reboot out of WinPE, expected str not int

Hello,

I'm having trouble with Glazier & Python 3.10.4 on WinPE (Win11 build).

Exception: os.py:822] expected str, bytes or os.PathLike object, not int

Tracking it back, it looks like the RestartEvent is passed an int for timeout:

raise RestartEvent(
        'Leaving WinPE', timeout=10, task_list_path=constants.SYS_TASK_LIST)

However, by the time it gets here it's supposed to be a string, but it appears it isn't:

def Restart(timeout: str, reason: str):
  """Restarts a Windows machine, given a timeout period and a reason.

  Args:
    timeout: How long to wait before restarting the machine.
    reason: Reason why the machine is being restarted. This will be displayed to
      the user and written to the Windows event log.
  """
  execute.execute_binary(f'{_System32()}/shutdown.exe',
                         ['-r', '-t', timeout, '-c', f'"{reason}"'])

Certainly not by the time it makes it here:

def execute_binary(binary: str, args: Optional[List[str]] = None,
                   return_codes: Optional[List[int]] = None,
                   shell: bool = False,
                   log: bool = True) -> int:
  """Execute a binary with optional parameters and return codes.

  ....

  try:
    process = subprocess.Popen(cmd, stdout=stdout, stderr=stderr, shell=shell,
                               universal_newlines=True)

I'm by no means a python expert, so I'm not 100% I've traced it correctly.

Has anyone seen anything similar?

image

Change Server Action Error with download.py

Hello,
When I use the command ChangeServer the config path is broken up with /. For example instead of the config path being /new/config/path it becomes /n/e/w/c/o/n/f/i/g/p/a/t/h and causes an error when it tries to download the new build file.

I believe the issue is line 115 in download.py, when I remove the / and leave it blank the imaging resumes.

sub_path = '/'.join(sub_path).strip('/')
sub_path = ''.join(sub_path).strip('/')

Documentation Issue - Broken links

Context of the Issue

Reading through the Setup Guide, there are a handful of broken links, mostly to the examples.
https://google.github.io/glazier/setup/

Detailed Description

On the above specified page, the examples for the winpeshl.ini file and the unattend.xml file are broken, along with the Registry Keys we need to modify to make Windows auto login and then launch Glazier again each time, and then reset back to their default values at the end.

I can't seem to find these pages through my quick look through, but it should probably be fixed soon!

Download timeouts not implemented.. ?

We ran across a problem today on a slow network, where a download stalled (from UpdateMSU).

We waited for ~30 minutes and it never timed out, so someone had to manually intervene.

Looking through the code, I can see it's using urllib internally, but I can't see anywhere that timeouts are being configured:

https://github.com/google/glazier/blob/master/glazier/lib/actions/updates.py#L51

https://github.com/google/glazier/blob/master/glazier/lib/actions/files.py#L111

https://github.com/google/glazier/blob/master/glazier/lib/download.py#L395

I'm by no means very good at Python, so not sure of my ability to implement, but do you think some default timeouts to prevent infinite stalling would be a good idea?

Action DomainJoin Error

Hello,

When I try to use the action DomainJoin it fails to join, error below. I think the issue is the powershell command it's executing to join the domain, it is not encompassing the ou in a string.

Action command I'm using
DomainJoin: ['interactive', 'domain.local', 'OU=Laptops,OU=CA,OU=Corporate,DC=domain,DC=local']

image

I found a workaround by changing line 116 in domain_join.py

cmd += ['-OUPath', f'"{self._domain_ou}"']

Do you know if there's an issue with the domain_join.py file or if I'm using the action command incorrectly?

cmd += ['-OUPath', self._domain_ou]

DISM: `EnableFeature` returns error on Windows Server 2019 although enablement works

Consider the following example:

package main

import (
	"errors"
	"fmt"
	"github.com/google/glazier/go/dism"
	"golang.org/x/sys/windows"
	"syscall"
)

func main() {
	dismSession, err := dism.OpenSession(dism.DISM_ONLINE_IMAGE, "", "", dism.DismLogErrorsWarningsInfo, "", "")
	if err != nil {
		panic(err)
	}
	defer dismSession.Close()

	if err := dismSession.EnableFeature("Containers", "", nil, true, nil, nil); err != nil {
		if errors.Is(err, windows.ERROR_SUCCESS_REBOOT_REQUIRED) {
			fmt.Printf("Please reboot!")
		} else if e, ok := err.(syscall.Errno); ok && int(e) == 1 {
			fmt.Printf("error code %d with message \"%s\"", int(e), err)
			panic(err)
		} else {
			panic(err)
		}
	}

	fmt.Print("Feature enabled")
}

When running it on Windows 10 (10.0.19042.1348) or Windows Server 2022 (10.0.20348.350) it works without an error. On Windows Server 2019 (10.0.17763.2300) however

error code 1 with message "Incorrect function."panic: Incorrect function.

goroutine 1 [running]:
main.main()
        C:/tmp/testgodism/main.go:23 +0x265

But despite the error on Windows Server 2019 the feature still gets enabled. When enabling via PowerShell Enable-WindowsOptionalFeature there is no error.

When looking at the DISM logs both the working PowerShell and the not working example path show:

DISM has detected a DISM component change. Requesting a shutdown.
The image session needs to be closed and re-opened before any servicing operations can be performed.

Afterwards DISM gets shut down, but with the example application the log apruptly ends at

Info                  DISM   API:  Leave DismCloseSessionInternal - DismCloseSessionInternal

while the log of the PowerShell run continues and shows that it actual does that reload and ends gracefully:

Info                  DISM   API:  GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
Info                  DISM   API:  Refcount for DismSession= 1s 0 - CSessionTable::RemoveSession
Info                  DISM   API:  Successfully enqueued command object - CCommandThread::EnqueueCommandObject
Info                  DISM   API:  ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
Info                  DISM   API:  Successfully dequeued command object - CCommandThread::DequeueCommandObject
Info                  DISM   API:  ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
Info                  DISM   API:  Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
Info                  DISM    Temporarily setting the scratch directory. This may be overridden by user later. - CDISMManager::FinalConstruct
Info                  DISM    Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\2\'. - CDISMManager::put_ScratchDir
Info                  DISM    DismCore.dll version: 10.0.17763.1697 - CDISMManager::FinalConstruct
Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
Info                  DISM   API:  Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
Info                  DISM   API:  Deleted g_internalDismSession - DismShutdownInternal
Info                  DISM   API:  Shutdown SessionTable - DismShutdownInternal
Info                  DISM   API:  Leave DismShutdownInternal - DismShutdownInternal
Info                  DISM   API:  DismApi.dll:                                          - DismShutdownInternal
Info                  DISM   API:  DismApi.dll: <----- Ending DismApi.dll session -----> - DismShutdownInternal
Info                  DISM   API:  DismApi.dll:

In the logs on Windows Server 2022 and Windows 10 there isn't an entry about a needed DISM reload, which is likely the reason why the example app works there.

I also noticed that with the example app an older API version is used (red) when comparing it to one from the PowerShell run (green):

- DismApi.dll: API Version 6.2.17763.1697 - DismInitializeInternal
+ DismApi.dll: API Version 10.0.17763.1697 - DismInitializeInternal

When looking at the DLLs on Windows Server 2019, there doesn't seem to be such an old version:

PS C:\> (Get-ChildItem . -Recurse -Force -Filter 'dismapi.dll' -ErrorAction SilentlyContinue) | % { Write-Host $_.FullName; Write-Host (get-command $_.FullName).Version }
C:\Windows\System32\DismApi.dll
10.0.17763.1697
C:\Windows\SysWOW64\DismApi.dll
10.0.17763.1697
C:\Windows\WinSxS\amd64_microsoft-windows-d..cing-management-api_31bf3856ad364e35_10.0.17763.1697_none_f436cf4c312ced73\DismApi.dll
10.0.17763.1697
C:\Windows\WinSxS\amd64_microsoft-windows-d..cing-management-api_31bf3856ad364e35_10.0.17763.1697_none_f436cf4c312ced73\n\DismApi.dll
0.0.0.0
C:\Windows\WinSxS\wow64_microsoft-windows-d..cing-management-api_31bf3856ad364e35_10.0.17763.1697_none_fe8b799e658daf6e\DismApi.dll
10.0.17763.1697
C:\Windows\WinSxS\wow64_microsoft-windows-d..cing-management-api_31bf3856ad364e35_10.0.17763.1697_none_fe8b799e658daf6e\f\DismApi.dll
0.0.0.0
C:\Windows\WinSxS\wow64_microsoft-windows-d..cing-management-api_31bf3856ad364e35_10.0.17763.1697_none_fe8b799e658daf6e\r\DismApi.dll
0.0.0.0

So I guessed that the API version to use is somewhere set during DismInitialize but I didn't find anything about that in the API reference.

Full DISM logs:

DISM Log Windows Server 2019 when running example and getting error
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 DismApi.dll: <----- Starting DismApi.dll session -----> - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 DismApi.dll: Host machine information: OS Version=10.0.17763, Running architecture=amd64, Number of processors=4 - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 DismApi.dll: API Version 6.2.17763.1697 - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 DismApi.dll: Parent process command line: t.exe - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Enter DismInitializeInternal - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Input parameters: LogLevel: 2, LogFilePath: (null), ScratchDirectory: (null) - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Initialized GlobalConfig - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Initialized SessionTable - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Lookup in table by path failed for: DummyPath-2BA51B78-C7F7-4910-B99D-BB7345357CDC - CTransactionalImageTable::LookupImagePath
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=3712 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=3712 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 m_pInternalThread started - CCommandThread::Start
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Created g_internalDismSession - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Leave DismInitializeInternal - DismInitializeInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Enter DismOpenSessionInternal - DismOpenSessionInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Input parameters: ImagePath: DISM_{53BFAE52-B167-4E2F-A258-0A37B57FF845}, WindowsDirectory: (null), SystemDrive: (null) - DismOpenSessionInternal
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Lookup in table by path failed for: DRIVE_C - CTransactionalImageTable::LookupImagePath
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4212 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4212 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 m_pInternalThread started - CCommandThread::Start
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4232 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4212 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:20:49, Info                  DISM   API: PID=924 TID=4212 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:20:49, Info                  DISM   PID=924 TID=4212 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\2\'. - CDISMManager::put_ScratchDir
2021-12-10 15:20:49, Info                  DISM   PID=924 TID=4212 DismCore.dll version: 6.2.17763.1697 - CDISMManager::FinalConstruct
2021-12-10 15:20:49, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:49, Info                  DISM   PID=924 TID=4212 Successfully loaded the ImageSession at "C:\Windows\SYSTEM32\Dism" - CDISMManager::LoadLocalImageSession
2021-12-10 15:20:49, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Failed to get and initialize the PE Provider.  Continuing by assuming that it is not a WinPE image. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:20:49, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:49, Info                  DISM   DISM Manager: PID=924 TID=4212 Successfully created the local image session and provider store. - CDISMManager::CreateLocalImageSession
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Getting the collection of providers from a local provider store type. - CDISMProviderStore::GetProviderCollection
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\FolderProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:49, Warning               DISM   DISM Provider Store: PID=924 TID=4212 Failed to load the provider: C:\Windows\SYSTEM32\Dism\SiloedPackageProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\FfuProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\WimProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\VHDProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\ImagingProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:49, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\CompatProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:49, Warning               DISM   DISM Provider Store: PID=924 TID=4212 Failed to load the provider: C:\Windows\SYSTEM32\Dism\MetaDeployProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 15:20:49, Info                  DISM   DISM FFU Provider: PID=924 TID=4212 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
[924] [0x8007007b] FIOReadFileIntoBuffer:(1381): The filename, directory name, or volume label syntax is incorrect.
[924] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[924] [0xc142011c] WIMGetMountedImageHandle:(2897)
2021-12-10 15:20:50, Info                  DISM   DISM WIM Provider: PID=924 TID=4212 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 15:20:50, Info                  DISM   DISM VHD Provider: PID=924 TID=4212 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 15:20:50, Info                  DISM   DISM FFU Provider: PID=924 TID=4212 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
2021-12-10 15:20:50, Info                  DISM   DISM Imaging Provider: PID=924 TID=4212 The provider FfuManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 15:20:50, Info                  DISM   DISM VHD Provider: PID=924 TID=4212 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 15:20:50, Info                  DISM   DISM Imaging Provider: PID=924 TID=4212 The provider VHDManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
[924] [0x8007007b] FIOReadFileIntoBuffer:(1381): The filename, directory name, or volume label syntax is incorrect.
[924] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[924] [0xc142011c] WIMGetMountedImageHandle:(2897)
2021-12-10 15:20:50, Info                  DISM   DISM WIM Provider: PID=924 TID=4212 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 15:20:50, Info                  DISM   DISM Imaging Provider: PID=924 TID=4212 The provider WimManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 15:20:50, Info                  DISM   DISM Imaging Provider: PID=924 TID=4212 No imaging provider supported CreateDismImage for this path - CGenericImagingManager::CreateDismImage
2021-12-10 15:20:50, Info                  DISM   DISM Manager: PID=924 TID=4212 physical location path: C:\ - CDISMManager::CreateImageSession
2021-12-10 15:20:50, Info                  DISM   DISM Manager: PID=924 TID=4212 Event name for current DISM session is Global\{27ACAE16-0CB0-4329-9DF3-53CDCD66EF04} - CDISMManager::CheckSessionAndLock
2021-12-10 15:20:50, Info                  DISM   DISM Manager: PID=924 TID=4212 Create session event 0x370 for current DISM session and event name is Global\{27ACAE16-0CB0-4329-9DF3-53CDCD66EF04}  - CDISMManager::CheckSessionAndLock
2021-12-10 15:20:50, Info                  DISM   DISM Manager: PID=924 TID=4212 Copying DISM from "C:\Windows\System32\Dism" - CDISMManager::CreateImageSessionFromLocation
2021-12-10 15:20:50, Info                  DISM   DISM Manager: PID=924 TID=4212 Successfully loaded the ImageSession at "C:\Users\markus\AppData\Local\Temp\2\62FEBD37-FF1C-461A-8A4A-082F04B328E2" - CDISMManager::LoadRemoteImageSession
2021-12-10 15:20:50, Info                  DISM   DISM Image Session: PID=2464 TID=3764 Instantiating the Provider Store. - CDISMImageSession::get_ProviderStore
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Initializing a provider store for the IMAGE session type. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\2\62FEBD37-FF1C-461A-8A4A-082F04B328E2\OSProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:50, Info                  DISM   DISM OS Provider: PID=2464 TID=3764 Defaulting SystemPath to C:\ - CDISMOSServiceManager::Final_OnConnect
2021-12-10 15:20:50, Info                  DISM   DISM OS Provider: PID=2464 TID=3764 Defaulting Windows folder to C:\Windows - CDISMOSServiceManager::Final_OnConnect
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Attempting to initialize the logger from the Image Session. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\2\62FEBD37-FF1C-461A-8A4A-082F04B328E2\LogProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:50, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 15:20:50, Warning               DISM   DISM Provider Store: PID=2464 TID=3764 Failed to load the provider: C:\Users\markus\AppData\Local\Temp\2\62FEBD37-FF1C-461A-8A4A-082F04B328E2\PEProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Failed to get and initialize the PE Provider.  Continuing by assuming that it is not a WinPE image. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:20:50, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:50, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:20:50, Info                  DISM   DISM Manager: PID=924 TID=4212 Image session successfully loaded from the temporary location: C:\Users\markus\AppData\Local\Temp\2\62FEBD37-FF1C-461A-8A4A-082F04B328E2 - CDISMManager::CreateImageSession
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4212 Target image information: OS Version=10.0.17763.2300, Image architecture=amd64 - CDismCore::LogImageSessionDetails
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4232 Leave DismOpenSessionInternal - DismOpenSessionInternal
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4232 Session id is: 2 - DismOpenSessionInternal
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4232 Enter DismEnableFeatureInternal - DismEnableFeatureInternal
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4232 Enter DismEnableDisableFeatureInternal - DismEnableDisableFeatureInternal
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4232 Input parameters: Session: 2, EnableFeatureName: Microsoft-Hyper-V-Management-PowerShell, DisableFeatureName: (null), Identifier: (null), PackageIdentifier: 0,                             LimitAccess: 0, SourcePathCount: 0, EnableAll: 1, CancelEvent: 0x0000000000000000, Progress: 0x0000000000000000, UserData: 0x0000000000000000 - DismEnableDisableFeatureInternal
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4232 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4212 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:20:50, Info                  DISM   API: PID=924 TID=4212 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\2\62FEBD37-FF1C-461A-8A4A-082F04B328E2\CbsProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:50, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Encountered a servicing provider, performing additional servicing initializations. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:20:50, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:20:50, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Finished initializing the CbsConUI Handler. - CCbsConUIHandler::Initialize
2021-12-10 15:20:50, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:20:50, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 CBS is being initialized for online use. More information about CBS actions can be located at: %windir%\logs\cbs\cbs.log - CDISMPackageManager::Initialize
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Feature RSAT-Hyper-V-Tools-Feature with CBS state 4(CbsInstallStateStaged) being mapped to dism state 4(DISM_INSTALL_STATE_STAGED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Feature ServerManager-Core-RSAT-Role-Tools with CBS state 4(CbsInstallStateStaged) being mapped to dism state 4(DISM_INSTALL_STATE_STAGED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Feature ServerManager-Core-RSAT with CBS state 4(CbsInstallStateStaged) being mapped to dism state 4(DISM_INSTALL_STATE_STAGED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Initiating Changes on Package with values: 5, 7 - CDISMPackage::Internal_ChangePackageState
2021-12-10 15:20:50, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 CBS session options=0x40100! - CDISMPackageManager::Internal_Finalize
2021-12-10 15:20:57, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:20:57, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:20:57, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 DISM has detected a DISM component change. Requesting a shutdown. - CDISMPackageManager::Internal_Finalize
2021-12-10 15:20:57, Info                  DISM   DISM Image Session: PID=2464 TID=3764 The image session needs to be closed and re-opened before any servicing operations can be performed. - CDISMImageSession::put_ImageState
2021-12-10 15:20:57, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 15:20:57, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Feature Microsoft-Hyper-V-Management-PowerShell with CBS state 7(CbsInstallStateInstalled) being mapped to dism state 7(DISM_INSTALL_STATE_INSTALLED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Exit DismEnableDisableFeatureInternal - DismEnableDisableFeatureInternal
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Exit DismEnableFeatureInternal - DismEnableFeatureInternal
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Enter DismCloseSessionInternal - DismCloseSessionInternal
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Input parameters: Session: 2 - DismCloseSessionInternal
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Refcount for DismSession= 2s 0 - CSessionTable::RemoveSession
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4212 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4212 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4212 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4212 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Found the PE Provider.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Finalizing the servicing provider(DISM Package Manager) - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Package Manager: PID=2464 TID=3764 Finalizing CBS core. - CDISMPackageManager::Finalize
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Disconnecting Provider: DISM Package Manager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Releasing the local reference to OSServices. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Disconnecting Provider: OSServices - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=2464 TID=3764 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Manager: PID=924 TID=4212 Closing session event handle 0x370 - CDISMManager::CleanupImageSessionEntry
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Disconnecting Provider: FolderManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Disconnecting Provider: FfuManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Disconnecting Provider: WimManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Disconnecting Provider: VHDManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Disconnecting Provider: GenericImagingManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Disconnecting Provider: Compatibility Manager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   DISM Provider Store: PID=924 TID=4212 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4212 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:20:57, Info                  DISM   API: PID=924 TID=4232 Leave DismCloseSessionInternal - DismCloseSessionInternal
DISM Log Windows Server 2019 when running successfully via PowerShell Enable-WindowsOptionalFeature
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll: <----- Starting DismApi.dll session -----> - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll: Host machine information: OS Version=10.0.17763, Running architecture=amd64, Number of processors=4 - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll: API Version 10.0.17763.1697 - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll: Parent process command line: "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"  - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Enter DismInitializeInternal - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Input parameters: LogLevel: 2, LogFilePath: C:\Windows\Logs\DISM\dism.log, ScratchDirectory: (null) - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Initialized GlobalConfig - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Initialized SessionTable - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Lookup in table by path failed for: DummyPath-2BA51B78-C7F7-4910-B99D-BB7345357CDC - CTransactionalImageTable::LookupImagePath
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=2396 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=2396 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 m_pInternalThread started - CCommandThread::Start
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Created g_internalDismSession - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Leave DismInitializeInternal - DismInitializeInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Enter DismOpenSessionInternal - DismOpenSessionInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Input parameters: ImagePath: DISM_{53BFAE52-B167-4E2F-A258-0A37B57FF845}, WindowsDirectory: (null), SystemDrive: (null) - DismOpenSessionInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Lookup in table by path failed for: DRIVE_C - CTransactionalImageTable::LookupImagePath
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 m_pInternalThread started - CCommandThread::Start
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 16:20:11, Info                  DISM   PID=7044 TID=3356 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\2\'. - CDISMManager::put_ScratchDir
2021-12-10 16:20:11, Info                  DISM   PID=7044 TID=3356 DismCore.dll version: 10.0.17763.1697 - CDISMManager::FinalConstruct
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   PID=7044 TID=3356 Successfully loaded the ImageSession at "C:\Windows\SYSTEM32\Dism" - CDISMManager::LoadLocalImageSession
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Failed to get and initialize the PE Provider.  Continuing by assuming that it is not a WinPE image. - CDISMProviderStore::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 Successfully created the local image session and provider store. - CDISMManager::CreateLocalImageSession
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Getting the collection of providers from a local provider store type. - CDISMProviderStore::GetProviderCollection
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\FolderProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Warning               DISM   DISM Provider Store: PID=7044 TID=3356 Failed to load the provider: C:\Windows\SYSTEM32\Dism\SiloedPackageProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\FfuProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\WimProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\VHDProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\ImagingProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\CompatProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Warning               DISM   DISM Provider Store: PID=7044 TID=3356 Failed to load the provider: C:\Windows\SYSTEM32\Dism\MetaDeployProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 16:20:11, Info                  DISM   DISM FFU Provider: PID=7044 TID=3356 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
[7044] [0x8007007b] FIOReadFileIntoBuffer:(1381): The filename, directory name, or volume label syntax is incorrect.
[7044] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[7044] [0xc142011c] WIMGetMountedImageHandle:(2897)
2021-12-10 16:20:11, Info                  DISM   DISM WIM Provider: PID=7044 TID=3356 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 16:20:11, Info                  DISM   DISM VHD Provider: PID=7044 TID=3356 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 16:20:11, Info                  DISM   DISM FFU Provider: PID=7044 TID=3356 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
2021-12-10 16:20:11, Info                  DISM   DISM Imaging Provider: PID=7044 TID=3356 The provider FfuManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 16:20:11, Info                  DISM   DISM VHD Provider: PID=7044 TID=3356 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 16:20:11, Info                  DISM   DISM Imaging Provider: PID=7044 TID=3356 The provider VHDManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
[7044] [0x8007007b] FIOReadFileIntoBuffer:(1381): The filename, directory name, or volume label syntax is incorrect.
[7044] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[7044] [0xc142011c] WIMGetMountedImageHandle:(2897)
2021-12-10 16:20:11, Info                  DISM   DISM WIM Provider: PID=7044 TID=3356 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 16:20:11, Info                  DISM   DISM Imaging Provider: PID=7044 TID=3356 The provider WimManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 16:20:11, Info                  DISM   DISM Imaging Provider: PID=7044 TID=3356 No imaging provider supported CreateDismImage for this path - CGenericImagingManager::CreateDismImage
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 physical location path: C:\ - CDISMManager::CreateImageSession
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 Event name for current DISM session is Global\{28174EC0-12DE-42E2-AA58-EAD70C6313C9} - CDISMManager::CheckSessionAndLock
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 Create session event 0xfe4 for current DISM session and event name is Global\{28174EC0-12DE-42E2-AA58-EAD70C6313C9}  - CDISMManager::CheckSessionAndLock
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 Copying DISM from "C:\Windows\System32\Dism" - CDISMManager::CreateImageSessionFromLocation
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 Successfully loaded the ImageSession at "C:\Users\markus\AppData\Local\Temp\2\FB76A7E9-B682-45CC-9521-E76448D019A4" - CDISMManager::LoadRemoteImageSession
2021-12-10 16:20:11, Info                  DISM   DISM Image Session: PID=2936 TID=4768 Instantiating the Provider Store. - CDISMImageSession::get_ProviderStore
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Initializing a provider store for the IMAGE session type. - CDISMProviderStore::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\2\FB76A7E9-B682-45CC-9521-E76448D019A4\OSProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   DISM OS Provider: PID=2936 TID=4768 Defaulting SystemPath to C:\ - CDISMOSServiceManager::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   DISM OS Provider: PID=2936 TID=4768 Defaulting Windows folder to C:\Windows - CDISMOSServiceManager::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Attempting to initialize the logger from the Image Session. - CDISMProviderStore::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\2\FB76A7E9-B682-45CC-9521-E76448D019A4\LogProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 16:20:11, Warning               DISM   DISM Provider Store: PID=2936 TID=4768 Failed to load the provider: C:\Users\markus\AppData\Local\Temp\2\FB76A7E9-B682-45CC-9521-E76448D019A4\PEProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Failed to get and initialize the PE Provider.  Continuing by assuming that it is not a WinPE image. - CDISMProviderStore::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:11, Info                  DISM   DISM Manager: PID=7044 TID=3356 Image session successfully loaded from the temporary location: C:\Users\markus\AppData\Local\Temp\2\FB76A7E9-B682-45CC-9521-E76448D019A4 - CDISMManager::CreateImageSession
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 Target image information: OS Version=10.0.17763.2300, Image architecture=amd64 - CDismCore::LogImageSessionDetails
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Leave DismOpenSessionInternal - DismOpenSessionInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Session id is: 2 - DismOpenSessionInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Enter DismGetOsInfoInternal - DismGetOsInfoInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Input parameters: Session: 2 - DismGetOsInfoInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Initialized default cancel event - DismGetOsInfoInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Leave DismGetOsInfoInternal - DismGetOsInfoInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Enter DismDeleteInternal - DismDeleteInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Leave DismDeleteInternal - DismDeleteInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Enter DismEnableFeatureInternal - DismEnableFeatureInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Enter DismEnableDisableFeatureInternal - DismEnableDisableFeatureInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Input parameters: Session: 2, EnableFeatureName: Microsoft-Hyper-V-Management-PowerShell, DisableFeatureName: (null), Identifier: (null), PackageIdentifier: 0,                             LimitAccess: 0, SourcePathCount: 0, EnableAll: 0, CancelEvent: 0x0000000000000FF4, Progress: 0x000001DC429176DC, UserData: 0x0000000000000000 - DismEnableDisableFeatureInternal
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=6360 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:11, Info                  DISM   API: PID=7044 TID=3356 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\2\FB76A7E9-B682-45CC-9521-E76448D019A4\CbsProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Encountered a servicing provider, performing additional servicing initializations. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 16:20:11, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 16:20:11, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_SUCCESS
2021-12-10 16:20:11, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 Finished initializing the CbsConUI Handler. - CCbsConUIHandler::Initialize
2021-12-10 16:20:11, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 16:20:11, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_SUCCESS
2021-12-10 16:20:11, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 CBS is being initialized for online use. More information about CBS actions can be located at: %windir%\logs\cbs\cbs.log - CDISMPackageManager::Initialize
2021-12-10 16:20:11, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 16:20:11, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 Initiating Changes on Package with values: 5, 7 - CDISMPackage::Internal_ChangePackageState
2021-12-10 16:20:11, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 CBS session options=0x40100! - CDISMPackageManager::Internal_Finalize
2021-12-10 16:20:15, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 16:20:15, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.2262_none_56fd0ad3990d068d\wcp.dll' : got STATUS_SUCCESS
2021-12-10 16:20:15, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 DISM has detected a DISM component change. Requesting a shutdown. - CDISMPackageManager::Internal_Finalize
2021-12-10 16:20:15, Info                  DISM   DISM Image Session: PID=2936 TID=4768 The image session needs to be closed and re-opened before any servicing operations can be performed. - CDISMImageSession::put_ImageState
2021-12-10 16:20:15, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 16:20:15, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 Feature Microsoft-Hyper-V-Management-PowerShell with CBS state 7(CbsInstallStateInstalled) being mapped to dism state 7(DISM_INSTALL_STATE_INSTALLED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Exit DismEnableDisableFeatureInternal - DismEnableDisableFeatureInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Exit DismEnableFeatureInternal - DismEnableFeatureInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Enter DismCloseSessionInternal - DismCloseSessionInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Input parameters: Session: 2 - DismCloseSessionInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Refcount for DismSession= 2s 0 - CSessionTable::RemoveSession
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=3356 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=3356 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=3356 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=3356 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Found the PE Provider.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Finalizing the servicing provider(DISM Package Manager) - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Package Manager: PID=2936 TID=4768 Finalizing CBS core. - CDISMPackageManager::Finalize
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Disconnecting Provider: DISM Package Manager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Releasing the local reference to OSServices. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Disconnecting Provider: OSServices - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=2936 TID=4768 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Manager: PID=7044 TID=3356 Closing session event handle 0xfe4 - CDISMManager::CleanupImageSessionEntry
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Disconnecting Provider: FolderManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Disconnecting Provider: FfuManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Disconnecting Provider: WimManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Disconnecting Provider: VHDManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Disconnecting Provider: GenericImagingManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Disconnecting Provider: Compatibility Manager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   DISM Provider Store: PID=7044 TID=3356 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=3356 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Leave DismCloseSessionInternal - DismCloseSessionInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Enter DismShutdownInternal - DismShutdownInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Refcount for DismSession= 1s 0 - CSessionTable::RemoveSession
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=2396 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=2396 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=2396 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=2396 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 16:20:15, Info                  DISM   PID=7044 TID=2396 Temporarily setting the scratch directory. This may be overridden by user later. - CDISMManager::FinalConstruct
2021-12-10 16:20:15, Info                  DISM   PID=7044 TID=2396 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\2\'. - CDISMManager::put_ScratchDir
2021-12-10 16:20:15, Info                  DISM   PID=7044 TID=2396 DismCore.dll version: 10.0.17763.1697 - CDISMManager::FinalConstruct
2021-12-10 16:20:15, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=2396 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Deleted g_internalDismSession - DismShutdownInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Shutdown SessionTable - DismShutdownInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 Leave DismShutdownInternal - DismShutdownInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll:                                          - DismShutdownInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll: <----- Ending DismApi.dll session -----> - DismShutdownInternal
2021-12-10 16:20:15, Info                  DISM   API: PID=7044 TID=6360 DismApi.dll:                                          - DismShutdownInternal
DISM Log Windows 10 when successfully running example
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll: <----- Starting DismApi.dll session -----> - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll: Host machine information: OS Version=10.0.19042, Running architecture=amd64, Number of processors=4 - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll: API Version 6.2.19041.844 - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll: Parent process command line: "C:\Users\markus\t.exe" - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Enter DismInitializeInternal - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Input parameters: LogLevel: 2, LogFilePath: (null), ScratchDirectory: (null) - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Initialized GlobalConfig - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Initialized SessionTable - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Lookup in table by path failed for: DummyPath-2BA51B78-C7F7-4910-B99D-BB7345357CDC - CTransactionalImageTable::LookupImagePath
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=9132 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=9132 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 m_pInternalThread started - CCommandThread::Start
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Created g_internalDismSession - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Leave DismInitializeInternal - DismInitializeInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Enter DismOpenSessionInternal - DismOpenSessionInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Input parameters: ImagePath: DISM_{53BFAE52-B167-4E2F-A258-0A37B57FF845}, WindowsDirectory: (null), SystemDrive: (null) - DismOpenSessionInternal
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Lookup in table by path failed for: DRIVE_C - CTransactionalImageTable::LookupImagePath
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=6260 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=6260 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 m_pInternalThread started - CCommandThread::Start
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=7636 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=6260 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:46:46, Info                  DISM   API: PID=8228 TID=6260 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:46:46, Info                  DISM   PID=8228 TID=6260 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\'. - CDISMManager::put_ScratchDir
2021-12-10 15:46:46, Info                  DISM   PID=8228 TID=6260 DismCore.dll version: 6.2.19041.746 - CDISMManager::FinalConstruct
2021-12-10 15:46:46, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:46, Info                  DISM   PID=8228 TID=6260 Successfully loaded the ImageSession at "C:\Windows\SYSTEM32\Dism" - CDISMManager::LoadLocalImageSession
2021-12-10 15:46:46, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Failed to get and initialize the PE Provider.  Continuing by assuming that it is not a WinPE image. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:46:46, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:46, Info                  DISM   DISM Manager: PID=8228 TID=6260 Successfully created the local image session and provider store. - CDISMManager::CreateLocalImageSession
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Getting the collection of providers from a local provider store type. - CDISMProviderStore::GetProviderCollection
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\FolderProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:46, Warning               DISM   DISM Provider Store: PID=8228 TID=6260 Failed to load the provider: C:\Windows\SYSTEM32\Dism\SiloedPackageProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\FfuProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\WimProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\VHDProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:46, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Connecting to the provider located at C:\Windows\SYSTEM32\Dism\ImagingProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:46, Warning               DISM   DISM Provider Store: PID=8228 TID=6260 Failed to load the provider: C:\Windows\SYSTEM32\Dism\MetaDeployProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 15:46:46, Info                  DISM   DISM FFU Provider: PID=8228 TID=6260 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
[8228] [0x8007007b] FIOReadFileIntoBuffer:(1452): The filename, directory name, or volume label syntax is incorrect.
[8228] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[8228] [0xc142011c] WIMGetMountedImageHandle:(2906)
2021-12-10 15:46:46, Info                  DISM   DISM WIM Provider: PID=8228 TID=6260 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 15:46:46, Info                  DISM   DISM VHD Provider: PID=8228 TID=6260 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 15:46:46, Info                  DISM   DISM FFU Provider: PID=8228 TID=6260 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
2021-12-10 15:46:46, Info                  DISM   DISM Imaging Provider: PID=8228 TID=6260 The provider FfuManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 15:46:46, Info                  DISM   DISM VHD Provider: PID=8228 TID=6260 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 15:46:46, Info                  DISM   DISM Imaging Provider: PID=8228 TID=6260 The provider VHDManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
[8228] [0x8007007b] FIOReadFileIntoBuffer:(1452): The filename, directory name, or volume label syntax is incorrect.
[8228] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[8228] [0xc142011c] WIMGetMountedImageHandle:(2906)
2021-12-10 15:46:46, Info                  DISM   DISM WIM Provider: PID=8228 TID=6260 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 15:46:46, Info                  DISM   DISM Imaging Provider: PID=8228 TID=6260 The provider WimManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 15:46:46, Info                  DISM   DISM Imaging Provider: PID=8228 TID=6260 No imaging provider supported CreateDismImage for this path - CGenericImagingManager::CreateDismImage
2021-12-10 15:46:46, Info                  DISM   DISM Manager: PID=8228 TID=6260 physical location path: C:\ - CDISMManager::CreateImageSession
2021-12-10 15:46:46, Info                  DISM   DISM Manager: PID=8228 TID=6260 Event name for current DISM session is Global\{22D63F9E-6256-498C-8C9D-AC08425EB2AE} - CDISMManager::CheckSessionAndLock
2021-12-10 15:46:46, Info                  DISM   DISM Manager: PID=8228 TID=6260 Create session event 0x36c for current DISM session and event name is Global\{22D63F9E-6256-498C-8C9D-AC08425EB2AE}  - CDISMManager::CheckSessionAndLock
2021-12-10 15:46:46, Info                  DISM   DISM Manager: PID=8228 TID=6260 Copying DISM from "C:\Windows\System32\Dism" - CDISMManager::CreateImageSessionFromLocation
2021-12-10 15:46:47, Info                  DISM   DISM Manager: PID=8228 TID=6260 Successfully loaded the ImageSession at "C:\Users\markus\AppData\Local\Temp\9EBDE89A-650B-439E-9D06-402C0D5D41D9" - CDISMManager::LoadRemoteImageSession
2021-12-10 15:46:47, Info                  DISM   DISM Image Session: PID=6148 TID=7900 Instantiating the Provider Store. - CDISMImageSession::get_ProviderStore
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Initializing a provider store for the IMAGE session type. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\9EBDE89A-650B-439E-9D06-402C0D5D41D9\OSProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:47, Info                  DISM   DISM OS Provider: PID=6148 TID=7900 Defaulting SystemPath to C:\ - CDISMOSServiceManager::Final_OnConnect
2021-12-10 15:46:47, Info                  DISM   DISM OS Provider: PID=6148 TID=7900 Defaulting Windows folder to C:\Windows - CDISMOSServiceManager::Final_OnConnect
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Attempting to initialize the logger from the Image Session. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\9EBDE89A-650B-439E-9D06-402C0D5D41D9\LogProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:47, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 15:46:47, Warning               DISM   DISM Provider Store: PID=6148 TID=7900 Failed to load the provider: C:\Users\markus\AppData\Local\Temp\9EBDE89A-650B-439E-9D06-402C0D5D41D9\PEProvider.dll. - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Failed to get and initialize the PE Provider.  Continuing by assuming that it is not a WinPE image. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:46:47, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:47, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:47, Info                  DISM   DISM Manager: PID=8228 TID=6260 Image session successfully loaded from the temporary location: C:\Users\markus\AppData\Local\Temp\9EBDE89A-650B-439E-9D06-402C0D5D41D9 - CDISMManager::CreateImageSession
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=6260 Target image information: OS Version=10.0.19042.1348, Image architecture=amd64 - CDismCore::LogImageSessionDetails
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=7636 Leave DismOpenSessionInternal - DismOpenSessionInternal
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=7636 Session id is: 2 - DismOpenSessionInternal
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=7636 Enter DismEnableFeatureInternal - DismEnableFeatureInternal
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=7636 Enter DismEnableDisableFeatureInternal - DismEnableDisableFeatureInternal
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=7636 Input parameters: Session: 2, EnableFeatureName: Microsoft-Hyper-V-Management-PowerShell, DisableFeatureName: (null), Identifier: (null), PackageIdentifier: 0,                             LimitAccess: 0, SourcePathCount: 0, EnableAll: 1, CancelEvent: 0x0000000000000000, Progress: 0x0000000000000000, UserData: 0x0000000000000000 - DismEnableDisableFeatureInternal
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=7636 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=6260 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:46:47, Info                  DISM   API: PID=8228 TID=6260 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Connecting to the provider located at C:\Users\markus\AppData\Local\Temp\9EBDE89A-650B-439E-9D06-402C0D5D41D9\CbsProvider.dll. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:47, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Encountered a servicing provider, performing additional servicing initializations. - CDISMProviderStore::Internal_LoadProvider
2021-12-10 15:46:47, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.19041.1310_none_7e15ec207c87d405\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:46:47, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.19041.1310_none_7e15ec207c87d405\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:46:47, Info                  DISM   DISM OS Provider: PID=6148 TID=7900 Determined System directory to be C:\Windows\System32 - CDISMOSServiceManager::get_SystemDirectory
2021-12-10 15:46:47, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Finished initializing the CbsConUI Handler. - CCbsConUIHandler::Initialize
2021-12-10 15:46:47, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.19041.1310_none_7e15ec207c87d405\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:46:47, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.19041.1310_none_7e15ec207c87d405\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:46:47, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 CBS is being initialized for online use. More information about CBS actions can be located at: %windir%\logs\cbs\cbs.log - CDISMPackageManager::Initialize
2021-12-10 15:46:47, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 15:46:47, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Feature Microsoft-Hyper-V-Tools-All with CBS state 7(CbsInstallStateInstalled) being mapped to dism state 7(DISM_INSTALL_STATE_INSTALLED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:46:47, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Initiating Changes on Package with values: 5, 7 - CDISMPackage::Internal_ChangePackageState
2021-12-10 15:46:47, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 CBS session options=0x40100! - CDISMPackageManager::Internal_Finalize
2021-12-10 15:46:49, Info                  CSI    00000001 Shim considered [l:126]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.19041.1310_none_7e15ec207c87d405\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:46:49, Info                  CSI    00000002 Shim considered [l:123]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.19041.1310_none_7e15ec207c87d405\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:46:49, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 15:46:49, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Feature Microsoft-Hyper-V-Management-PowerShell with CBS state 7(CbsInstallStateInstalled) being mapped to dism state 7(DISM_INSTALL_STATE_INSTALLED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Exit DismEnableDisableFeatureInternal - DismEnableDisableFeatureInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Exit DismEnableFeatureInternal - DismEnableFeatureInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Enter DismCloseSessionInternal - DismCloseSessionInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Input parameters: Session: 2 - DismCloseSessionInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Refcount for DismSession= 2s 0 - CSessionTable::RemoveSession
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=6260 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=6260 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=6260 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=6260 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Found the PE Provider.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Finalizing the servicing provider(DISM Package Manager) - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Package Manager: PID=6148 TID=7900 Finalizing CBS core. - CDISMPackageManager::Finalize
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Disconnecting Provider: DISM Package Manager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Releasing the local reference to OSServices. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Disconnecting Provider: OSServices - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=6148 TID=7900 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Manager: PID=8228 TID=6260 Closing session event handle 0x36c - CDISMManager::CleanupImageSessionEntry
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Disconnecting Provider: FolderManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Disconnecting Provider: FfuManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Disconnecting Provider: WimManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Disconnecting Provider: VHDManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Disconnecting Provider: GenericImagingManager - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   DISM Provider Store: PID=8228 TID=6260 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=6260 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Leave DismCloseSessionInternal - DismCloseSessionInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Enter DismShutdownInternal - DismShutdownInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Refcount for DismSession= 1s 0 - CSessionTable::RemoveSession
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=9132 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=9132 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=9132 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=9132 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:46:49, Info                  DISM   PID=8228 TID=9132 Temporarily setting the scratch directory. This may be overridden by user later. - CDISMManager::FinalConstruct
2021-12-10 15:46:49, Info                  DISM   PID=8228 TID=9132 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\'. - CDISMManager::put_ScratchDir
2021-12-10 15:46:49, Info                  DISM   PID=8228 TID=9132 DismCore.dll version: 6.2.19041.746 - CDISMManager::FinalConstruct
2021-12-10 15:46:49, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=9132 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Deleted g_internalDismSession - DismShutdownInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Shutdown SessionTable - DismShutdownInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 Leave DismShutdownInternal - DismShutdownInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll:                                          - DismShutdownInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll: <----- Ending DismApi.dll session -----> - DismShutdownInternal
2021-12-10 15:46:49, Info                  DISM   API: PID=8228 TID=7636 DismApi.dll:                                          - DismShutdownInternal
DISM Log Windows Server 2022 when successfully running example
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll: <----- Starting DismApi.dll session -----> - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll:                                            - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll: Host machine information: OS Version=10.0.20348, Running architecture=amd64, Number of processors=4 - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll: API Version 6.2.20348.1 - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll: Parent process command line: "C:\Users\markus\t.exe" - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Input parameters: LogLevel: 2, LogFilePath: (null), ScratchDirectory: (null) - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Initialized GlobalConfig - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Initialized SessionTable - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Lookup in table by path failed for: DummyPath-2BA51B78-C7F7-4910-B99D-BB7345357CDC - CTransactionalImageTable::LookupImagePath
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=2436 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=2436 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 m_pInternalThread started - CCommandThread::Start
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Created g_internalDismSession - DismInitializeInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Input parameters: ImagePath: DISM_{53BFAE52-B167-4E2F-A258-0A37B57FF845}, WindowsDirectory: (null), SystemDrive: (null) - DismOpenSessionInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Lookup in table by path failed for: DRIVE_C - CTransactionalImageTable::LookupImagePath
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Waiting for m_pInternalThread to start - CCommandThread::Start
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 Enter CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 Enter CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 CommandThread StartupEvent signaled - CCommandThread::WaitForStartup
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 m_pInternalThread started - CCommandThread::Start
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:51:12, Info                  DISM   PID=7936 TID=6848 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\2\'. - CDISMManager::put_ScratchDir
2021-12-10 15:51:12, Info                  DISM   PID=7936 TID=6848 DismCore.dll version: 6.2.20348.1 - CDISMManager::FinalConstruct
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   PID=7936 TID=6848 Successfully loaded the ImageSession at "C:\Windows\SYSTEM32\Dism" - CDISMManager::LoadLocalImageSession
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   DISM Provider Store: PID=7936 TID=6848 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 Successfully created the local image session and provider store. - CDISMManager::CreateLocalImageSession
2021-12-10 15:51:12, Info                  DISM   DISM FFU Provider: PID=7936 TID=6848 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM Imaging Provider: PID=7936 TID=6848 The provider FfuManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 15:51:12, Info                  DISM   DISM VHD Provider: PID=7936 TID=6848 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM Imaging Provider: PID=7936 TID=6848 The provider VHDManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
[7936.6848] [0x8007007b] FIOReadFileIntoBuffer:(1458): The filename, directory name, or volume label syntax is incorrect.
[7936.6848] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[7936.6848] [0xc142011c] WIMGetMountedImageHandle:(2910)
2021-12-10 15:51:12, Info                  DISM   DISM WIM Provider: PID=7936 TID=6848 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM Imaging Provider: PID=7936 TID=6848 The provider WimManager does not support CreateDismImage on C:\ - CGenericImagingManager::CreateDismImage
2021-12-10 15:51:12, Info                  DISM   DISM Imaging Provider: PID=7936 TID=6848 No imaging provider supported CreateDismImage for this path - CGenericImagingManager::CreateDismImage
[7936.6848] [0x8007007b] FIOReadFileIntoBuffer:(1458): The filename, directory name, or volume label syntax is incorrect.
[7936.6848] [0xc142011c] UnmarshallImageHandleFromDirectory:(641)
[7936.6848] [0xc142011c] WIMGetMountedImageHandle:(2910)
2021-12-10 15:51:12, Info                  DISM   DISM WIM Provider: PID=7936 TID=6848 [C:\] is not a WIM mount point. - CWimMountedImageInfo::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM FFU Provider: PID=7936 TID=6848 [C:\] is not recognized by the DISM FFU provider. - CFfuImage::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM VHD Provider: PID=7936 TID=6848 [C:\] is not recognized by the DISM VHD provider. - CVhdImage::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 physical location path: C:\ - CDISMManager::CreateImageSession
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 Event name for current DISM session is Global\{E90277EC-DCE2-4D05-8540-76BDA4696D73} - CDISMManager::CheckSessionAndLock
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 Create session event 0x38c for current DISM session and event name is Global\{E90277EC-DCE2-4D05-8540-76BDA4696D73}  - CDISMManager::CheckSessionAndLock
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 Copying DISM from "C:\Windows\System32\Dism" - CDISMManager::CreateImageSessionFromLocation
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 Successfully loaded the ImageSession at "C:\Users\markus\AppData\Local\Temp\2\7E34588A-0DD4-4F02-8387-DD6649C1D33E" - CDISMManager::LoadRemoteImageSession
2021-12-10 15:51:12, Info                  DISM   DISM Image Session: PID=3896 TID=7012 Instantiating the Provider Store. - CDISMImageSession::get_ProviderStore
2021-12-10 15:51:12, Info                  DISM   DISM OS Provider: PID=3896 TID=7012 Defaulting SystemPath to C:\ - CDISMOSServiceManager::Final_OnConnect
2021-12-10 15:51:12, Info                  DISM   DISM OS Provider: PID=3896 TID=7012 Defaulting Windows folder to C:\Windows - CDISMOSServiceManager::Final_OnConnect
2021-12-10 15:51:12, Info                  DISM   DISM Provider Store: PID=3896 TID=7012 Attempting to initialize the logger from the Image Session. - CDISMProviderStore::Final_OnConnect
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   DISM Provider Store: PID=3896 TID=7012 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:12, Info                  DISM   DISM Manager: PID=7936 TID=6848 Image session successfully loaded from the temporary location: C:\Users\markus\AppData\Local\Temp\2\7E34588A-0DD4-4F02-8387-DD6649C1D33E - CDISMManager::CreateImageSession
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 Target image information: OS Version=10.0.20348.350, Image architecture=amd64 - CDismCore::LogImageSessionDetails
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Session id is: 2 - DismOpenSessionInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Input parameters: Session: 2, EnableFeatureName: Microsoft-Hyper-V-Management-PowerShell, DisableFeatureName: (null), Identifier: (null), PackageIdentifier: 0,                             LimitAccess: 0, SourcePathCount: 0, EnableAll: 1, CancelEvent: 0x0000000000000000, Progress: 0x0000000000000000, UserData: 0x0000000000000000 - DismEnableDisableFeatureInternal
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=7956 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:12, Info                  DISM   API: PID=7936 TID=6848 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:51:12, Info                  CSI    00000001 Shim considered [l:125]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.20348.314_none_f215e9be5141eaf6\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:51:12, Info                  CSI    00000002 Shim considered [l:122]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.20348.314_none_f215e9be5141eaf6\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:51:12, Info                  DISM   DISM OS Provider: PID=3896 TID=7012 Determined System directory to be C:\Windows\System32 - CDISMOSServiceManager::get_SystemDirectory
2021-12-10 15:51:12, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Finished initializing the CbsConUI Handler. - CCbsConUIHandler::Initialize
2021-12-10 15:51:12, Info                  CSI    00000001 Shim considered [l:125]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.20348.314_none_f215e9be5141eaf6\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:51:12, Info                  CSI    00000002 Shim considered [l:122]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.20348.314_none_f215e9be5141eaf6\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:51:12, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 CBS is being initialized for online use. More information about CBS actions can be located at: %windir%\logs\cbs\cbs.log - CDISMPackageManager::Initialize
2021-12-10 15:51:12, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 15:51:13, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Feature RSAT-Hyper-V-Tools-Feature with CBS state 4(CbsInstallStateStaged) being mapped to dism state 4(DISM_INSTALL_STATE_STAGED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:51:13, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Feature ServerManager-Core-RSAT-Role-Tools with CBS state 4(CbsInstallStateStaged) being mapped to dism state 4(DISM_INSTALL_STATE_STAGED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:51:13, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Feature ServerManager-Core-RSAT with CBS state 4(CbsInstallStateStaged) being mapped to dism state 4(DISM_INSTALL_STATE_STAGED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:51:13, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Initiating Changes on Package with values: 5, 7 - CDISMPackage::Internal_ChangePackageState
2021-12-10 15:51:13, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 CBS session options=0x40100! - CDISMPackageManager::Internal_Finalize
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 Refcount for DismSession= 1s 0 - CSessionTable::RemoveSession
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=8004 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=8004 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=8004 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=8004 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:51:23, Info                  DISM   PID=4940 TID=8004 Temporarily setting the scratch directory. This may be overridden by user later. - CDISMManager::FinalConstruct
2021-12-10 15:51:23, Info                  DISM   PID=4940 TID=8004 Scratch directory set to 'C:\Windows\TEMP\'. - CDISMManager::put_ScratchDir
2021-12-10 15:51:23, Info                  DISM   PID=4940 TID=8004 DismCore.dll version: 10.0.20348.1 - CDISMManager::FinalConstruct
2021-12-10 15:51:23, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=8004 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 Deleted g_internalDismSession - DismShutdownInternal
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 Shutdown SessionTable - DismShutdownInternal
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 DismApi.dll:                                          - DismShutdownInternal
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 DismApi.dll: <----- Ending DismApi.dll session -----> - DismShutdownInternal
2021-12-10 15:51:23, Info                  DISM   API: PID=4940 TID=4996 DismApi.dll:                                          - DismShutdownInternal
2021-12-10 15:51:24, Info                  CSI    00000001 Shim considered [l:125]'\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.20348.314_none_f215e9be5141eaf6\wcp.dll' : got STATUS_OBJECT_PATH_NOT_FOUND
2021-12-10 15:51:24, Info                  CSI    00000002 Shim considered [l:122]'\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.20348.314_none_f215e9be5141eaf6\wcp.dll' : got STATUS_SUCCESS
2021-12-10 15:51:24, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Loaded servicing stack for online use only. - CDISMPackageManager::CreateCbsSession
2021-12-10 15:51:24, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Feature Microsoft-Hyper-V-Management-PowerShell with CBS state 7(CbsInstallStateInstalled) being mapped to dism state 7(DISM_INSTALL_STATE_INSTALLED) - CDISMPackageFeature::LogInstallStateMapping
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Input parameters: Session: 2 - DismCloseSessionInternal
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Refcount for DismSession= 2s 0 - CSessionTable::RemoveSession
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=6848 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=6848 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=6848 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=6848 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:51:24, Info                  DISM   DISM Package Manager: PID=3896 TID=7012 Finalizing CBS core. - CDISMPackageManager::Finalize
2021-12-10 15:51:24, Info                  DISM   DISM Manager: PID=7936 TID=6848 Closing session event handle 0x38c - CDISMManager::CleanupImageSessionEntry
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=6848 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 GetReferenceCount hr: 0x0 - CSessionTable::RemoveSession
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Refcount for DismSession= 1s 0 - CSessionTable::RemoveSession
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Successfully enqueued command object - CCommandThread::EnqueueCommandObject
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=2436 ExecuteLoop: CommandQueue signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=2436 Successfully dequeued command object - CCommandThread::DequeueCommandObject
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=2436 ExecuteLoop: Cancel signaled - CCommandThread::ExecuteLoop
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=2436 Leave CCommandThread::ExecuteLoop - CCommandThread::ExecuteLoop
2021-12-10 15:51:24, Info                  DISM   PID=7936 TID=2436 Temporarily setting the scratch directory. This may be overridden by user later. - CDISMManager::FinalConstruct
2021-12-10 15:51:24, Info                  DISM   PID=7936 TID=2436 Scratch directory set to 'C:\Users\markus\AppData\Local\Temp\2\'. - CDISMManager::put_ScratchDir
2021-12-10 15:51:24, Info                  DISM   PID=7936 TID=2436 DismCore.dll version: 6.2.20348.1 - CDISMManager::FinalConstruct
2021-12-10 15:51:24, Info                  DISM   Initialized Panther logging at C:\Windows\Logs\DISM\dism.log
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=2436 Leave CCommandThread::CommandThreadProcedureStub - CCommandThread::CommandThreadProcedureStub
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Deleted g_internalDismSession - DismShutdownInternal
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 Shutdown SessionTable - DismShutdownInternal
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll:                                          - DismShutdownInternal
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll: <----- Ending DismApi.dll session -----> - DismShutdownInternal
2021-12-10 15:51:24, Info                  DISM   API: PID=7936 TID=7956 DismApi.dll:                                          - DismShutdownInternal

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.