Skip to content

Instantly share code, notes, and snippets.

@hail2u
Created May 22, 2012 01:01
Show Gist options
  • Save hail2u/2765799 to your computer and use it in GitHub Desktop.
Save hail2u/2765799 to your computer and use it in GitHub Desktop.
GitHub for Windowsでckwを使うためのラッパー
/*global WScript */
var ckw = 'C:\\Path\\to\\ckw.exe';
var WshShell = WScript.CreateObject('WScript.Shell');
WshShell.Run(ckw + ' -cd "' + WshShell.CurrentDirectory + '"');
@hail2u
Copy link
Author

hail2u commented May 22, 2012

http://www.vector.co.jp/soft/winnt/prog/se389017.html

でWSHスクリプトから実行ファイルを作ることができるのでそれで。コンソール・プログラムである必要はないのでmakewin.exeの方で作れば良い。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment