Skip to content

Instantly share code, notes, and snippets.

@teamaton
Last active November 6, 2023 12:53
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save teamaton/3093a8ee66433a278fd5 to your computer and use it in GitHub Desktop.
Save teamaton/3093a8ee66433a278fd5 to your computer and use it in GitHub Desktop.
FusionLog - enable and disable
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name ForceLog
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogFailures
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogResourceBinds
Remove-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogPath
Set-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name ForceLog -Value 1 -Type DWord
Set-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogFailures -Value 1 -Type DWord
Set-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogResourceBinds -Value 1 -Type DWord
Set-ItemProperty -Path HKLM:\Software\Microsoft\Fusion -Name LogPath -Value 'C:\FusionLog\' -Type String
mkdir 'C:\FusionLog\'
@0liver
Copy link

0liver commented Feb 18, 2020

@awaescher Thanks a lot for linking to your tool!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment