在 Visual Studio 2008 下分析应用程序时如何设置环境变量
我有一个申请。我是用vs2008 team系统编译的。 要运行此应用程序,需要设置一些特定的环境变量,例如 SYSTEM_MODULE_PATH。我的应用程序从那里加载系统模块。没有这个变量它就不会运行。 因此,当我分析它时,我想设置这个变量,以便我的应用程序正常运行。
现在我的问题是,我在哪里设置这个变量?
I have an application. I compile it using vs2008 team system.
To run this app some certain environmental variables need to be set, such as SYSTEM_MODULE_PATH. My app loads system modules from there. Without this variable it wont run.
So When I profile it, I want to set this variable so that my application runs properly.
Now my question is, Where do I set this variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
开始->控制面板->系统->高级选项卡 ->环境变量
或
命令-> SET [变量=[字符串]]
Start -> Control Panel -> System -> advanced Tab -> Environment variables
or
CMD -> SET [variable=[string]]
我一问就修好了。但没有分享。这就是我所做的。
我创建了一个批处理(.cmd)文件。我在那里设置了环境变量。然后使用 devenv 命令启动 Visual Studio。下面是示例批处理文件
现在 Visual Studio 打开并加载了一些 ENV 变量。
I fixed it when I asked it. But didn't shared. Here is what I did.
I created a batch (.cmd) file. I set up my environment variable there. Then started Visual Studio using
devenv
command. Here is the sample batch fileNow Visual Studio opens with some ENV variable loaded.