3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Windows]コマンドプロンプトから新しいコマンドプロンプトを開く

Posted at

たまに必要になるんです。

##コマンド

start [option] [command]

##実行例

c:\> start

引数なし。
新しいコマンドプロンプトが表示され、もとのコマンドプロンプトのカレントディレクトリ(c:\>)の状態。

c:\> start dir

新しいコマンドプロンプトが表示され、c:\のディレクトリ一覧を表示。

c:\> start cd /d d:\

新しいコマンドプロンプトが表示され、d:\に移動した状態。

c:\> start explorer .

新しいコマンドプロンプトが表示されない。(win10)
エクスプローラが起動。

c:\> start cmd /k explorer .

新しいコマンドプロンプトが表示される。(もとのコマンドプロンプトのカレントディレクトリ)
エクスプローラが起動。

##参考
https://www.k-tanaka.net/cmd/start.php

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?