Create a new cmd.exe window from within another cmd.exe prompt

后端 未结 8 1175
萌比男神i
萌比男神i 2020-11-30 23:35

I am in the process of setting up CruiseControl.NET. The problem I am having is that I am running CC as a console application and when my build completes successfully and ex

相关标签:
8条回答
  • 2020-12-01 00:04

    Here is the code you need:

    start cmd.exe @cmd /k "Command"
    
    0 讨论(0)
  • 2020-12-01 00:04

    You can just type these 3 commands from command prompt:

    1. start

    2. start cmd

    3. start cmd.exe

    0 讨论(0)
提交回复
热议问题