Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

setup conemu to use visual studio developer command prompt

Tags:

conemu

I have just started using ConEmu. I have tried different shells like the default windows cmd and the Powershell which worked fine. When i tried to add visual studio shell, it didn't work.

I tried "New console dialog". In that i gave this as the path for shell

C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat

That gave me this error

Root process was alive less than 10 seconds, Press Esc or Enter

After searching in the internet i even tried an other path as mentioned in a website C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\vcvarsall.bat. That gave me the same error again!

like image 639
coderasp Avatar asked Oct 04 '14 12:10

coderasp


People also ask

How do I open Visual Studio from developer command prompt?

Developer Command Prompt Search for the name of the command prompt file, which is VsDevCmd. bat, or go to the Tools folder for Visual Studio, such as %ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\Common7\Tools (path changes according to your Visual Studio version, edition, and installation location).

How do I run a command window in Visual Studio?

The Command window is used to execute commands or aliases directly in the Visual Studio integrated development environment (IDE). You can execute both menu commands and commands that do not appear on any menu. To display the Command window, choose Other Windows from the View menu, and select Command Window.

What is Cmder used for?

Cmder provides keyboard shortcuts, which are not available in normal command prompt. Cmder provides one option where it will provide included Git option. That means the Git command can also be run there.


1 Answers

cmd /k "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\vcvarsall.bat"
like image 144
Maximus Avatar answered Nov 09 '22 00:11

Maximus