Disable debug prompt on application crash

后端 未结 3 2014
挽巷
挽巷 2020-12-09 12:58

Question: I need to disable the console application\'s crash debug prompt.

Background: We\'ve got an application that syncs info w

3条回答
  •  忘掉有多难
    2020-12-09 13:10

    John's solution as a .reg file (we needed to roll this out to a cluster of build servers):

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug]
    "Debugger"=-
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework]
    "DbgManagedDebugger"=-
    

提交回复
热议问题