概要
タブ型ファイラMDIEを使用していますが, 環境移行時にスクリプトをよく忘れるのでメモ.MDIE
スクリプト
現在のディレクトリでコマンドプロンプトを開く
var shell = new ActiveXObject("WScript.Shell"); var opt = "/k cd /d \"" + FolderView.Path + "\""; shell.Run("%comspec% " + opt), 1, true;コマンドを連続して実行する.
var shell = new ActiveXObject("WScript.Shell"); var opt = "/k cd /d \"" + FolderView.Path + "\"" + ' & dir'; shell.Run("%comspec% " + opt), 1, true;git-bashを実行する.
var shell = new ActiveXObject("WScript.Shell"); shell.Run("X:\\Git\\git-bash --cd=" + FolderView.Path), 1, true;ConEmuを実行する.
var WshShell = new ActiveXObject("WScript.Shell"); var opt = "-Single -Dir \"" + FolderView.Path + "\""; WshShell.Run("ConEmu64.exe " + opt), 1, true;ConsoleZを実行する.
var WshShell = new ActiveXObject("WScript.Shell"); var opt = "-d \"" + FolderView.Path + "\"" + " -r \"chcp 65001\""; WshShell.Run("Console.exe " + opt), 1, true;Windows Terminalを実行する.
var shell = new ActiveXObject("WScript.Shell"); shell.Run('wt.exe -d' + FolderView.Path);
0 件のコメント:
コメントを投稿