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\'
@chucklu
Copy link

chucklu commented Sep 12, 2019

> Get-ItemProperty -Path HKLM:\Software\Microsoft\Fusion | Format-List

LogPath      : c:\FusionLogs
PSPath       : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Fusion
PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Microsoft
PSChildName  : Fusion
PSDrive      : HKLM
PSProvider   : Microsoft.PowerShell.Core\Registry

@0liver
Copy link

0liver commented Sep 12, 2019

@chucklu Thanks, that definitely helps!

@awaescher
Copy link

You might want to have a look at Fusion++

Fusion++NoDetail

@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