Windows Terminal
で PC の起動時に任意のスクリプトやコマンドを実行する方法をまとめました。
Required
- Windows Terminal version v0.9.433.0 or later
方法
- windows key + R を押す
- shell:startup と入力し、OKを押す
- 開いたエクスプローラでコマンドプロンプトのショートカットを作成 。
自分の環境では下の場所でした。
C:\Users\xxxxx\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
- 右クリックしてプロパティを開き、ターゲットに下のように入力する。
C:\Windows\System32\cmd.exe /K wt -d [path to startup directory] wsl [command] & exit
ここまでで任意のコマンドは実行できるはずです。しかし、処理が終了した瞬間windows terminal
が閉じてしまう。そこで、
6. windows terminal を開き、設定のプロフィールの中に"closeOnExit": "never"
を追記する。