103
101

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のコマンドプロンプトでaliasを設定する (cmderの設定含む)

Posted at

#aliasの設定方法
Windowsではコマンドマクロという機能を使用して、aliasと同じ設定が可能。

Windowsのコマンドプロンプトにて、
doskey {マクロ名}={実行コマンド名}
とすればよい。

ただし、一度ウインドウを閉じると設定が消えてしまうので起動時に自動読み込みさせる必要がある。

#設定のテキストファイル化
設定されているdoskeyは
doskey /macros
で表示できる。

これを利用してテキストファイルとして出力する。
doskey /macros > %USERPROFILE%\macros.txt

このファイルを読み込むときは
doskey /macrofie=%USERPROFILE%\macros.txt
とする。

#コマンドプロンプト起動時の読み込み
コマンドプロンプト起動時の/kオプションで、上記コマンドを実行するように設定する
01.png

なお、kオプションで複数のコマンドを実行する場合、&でつなぐことができる

#cmderでの設定
起動時のパラメータとして、選択文字列部分を追加する
02.png

#参考ページ
コマンドマクロの設定
http://www.adminweb.jp/command/command/index2.html

コマンドプロンプトの起動オプション
http://www.atmarkit.co.jp/ait/articles/0006/22/news001_6.html

103
101
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
103
101

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?