How do I turn off the fault tolerant heap?

后端 未结 10 1775
天涯浪人
天涯浪人 2020-12-05 02:12

I\'ve recently started seeing this line in my Visual Studio 2005 output window when launching my application:
FTH: (7156): *** Fault tolerant heap shim applied to cu

10条回答
  •  渐次进展
    2020-12-05 02:53

    On Windows 10 the registry location is:

    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\FTH
    

    You can remove you executable from the list in:

    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\FTH\State
    

    or you can run this command from an elevated command prompt

    Rundll32.exe fthsvc.dll,FthSysprepSpecialize
    

    You may need to reboot your machine

提交回复
热议问题