您的位置:首页 > 编程语言 > C#

《CLR Via C#》Developer Command Prompt for VS2013

2016-03-21 10:29 435 查看

1、如何找到Developer Command Prompt for VS2013呢?

打开路径 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2013, 我们会看到Visual Studio Tools文件夹快捷方式



双击Visual Studio Tools文件快捷方式,会跳转到C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts目录下。



在上面的目录当中,就可以看到Developer Command Prompt for VS2013。

2、如何将Developer Command Prompt for VS2013放到开始菜单呢?

请注意的是:这一步并不是必须要做的,只是为了方便而已;而且这里的步骤针对是Win8操作系统。别的系统,我也不太清楚对不对。下面的内容参照的是“Where is Developer Command Prompt for VS2013?”地址是http://stackoverflow.com/questions/21476588/where-is-developer-command-prompt-for-vs2013。

For some reason, it doesn't properly add an icon when running Windows 8+. Here's how I solved it.Using Windows Explorer, navigate to:
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2013
In that folder, you'll see a shortcut named
Visual Studio Tools
that maps to (assuming default installation):
C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts
Double-click the shortcut (or go to the folder above).
From that folder, copy the shortcut named
Developer Command Prompt for VS2013
(and any others you find useful) to the first directory (for the
Start Menu
). You'll likely be prompted for administrative access (do so).
Once you've done that, you'll now have an icon available for the 2013 command prompt.

3、关于命令行的一些切换目录的简单命令

如果想跳转到E盘,就在命令行中输入“E:”
如果跳转到子目录,就在命令行中输入“cd SubDirectoryName”
如果跳转到父级目录,就在命令行中输入“cd ..”
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Command Prompt VS