zoukankan      html  css  js  c++  java
  • How to: Launch the Debugger Automatically

    Sometimes, you may need to debug the startup code for an application that is launched by another process. Examples include services and custom setup actions. In these scenarios, you can have the debugger launch and automatically attach when your application starts.

    To setup an application to launch the debugger automatically

    1. Start the Registry Editor (regedit).

    2. In the Registry Editor, open the HKEY_LOCAL_MACHINE folder.

    3. Navigate to HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTcurrentversionimage file execution options.

    4. In the Image File Execution Options folder, locate the name of the application you want to debug, such as myapp.exe. If you cannot find the application you want to debug:

      1. Right-click the Image File Execution Options folder, and on the shortcut menu, click New Key.

      2. Right-click the new key, and on the shortcut menu, click Rename.

      3. Edit the key name to the name of your application; myapp.exe, in this example.

    5. Right-click the myapp.exe folder, and on the shortcut menu, click New String Value.

    6. Right-click the new string value, and on the shortcut menu, click Rename.

    7. Change the name to debugger.

    8. Right-click the new string value, and on the shortcut menu, click Modify.

      The Edit String dialog box appears.

    9. In the Value data box, type vsjitdebugger.exe.

    10. Click OK.

    11. From the Registry menu, click Exit.

    12. The directory containing vsjitdebugger.exe must be in your system path. To add it to the system path, follow these steps:

      1. Open the Control Panel in Classic view, and double-click System.

      2. Click Advanced System Settings.

      3. In System Properties, click the Advanced tab.

      4. On the Advanced tab, click Environment Variables.

      5. In the Environment Variables dialog box, under System variables, select Path, then click the Edit button.

      6. In the Edit System Variable dialog box, add the directory to the Variable value box. Use a semicolon to separate it from other entries in the list.

      7. Click OK to close the Edit System Variable dialog box.

      8. Click OK to close the Environment Variables dialog box.

      9. Click OK to close the System Properties dialog box.

      Now, use any method to start your application. Visual Studio will start and load the application.

  • 相关阅读:
    字典或者数组与JSON串之间的转换
    银联支付 支付代码
    iOS 一个新方法:- (void)makeObjectsPerformSelector:(SEL)aSelector;
    iOS 直接使用16进制颜色
    iOS 添加view的分类(更加方便的设置view的位置)
    iOS 中UITableView的深理解
    Swift 中调试状态下打印日志
    手把手教React Native实战开发视频教程【更新到40集啦。。。】
    React Native 开发
    React-Native学习指南
  • 原文地址:https://www.cnblogs.com/kex1n/p/5190331.html
Copyright © 2011-2022 走看看