hidden
プログラムで属性付きのファイルを読み込むことはできますか? ファイルへのパスはわかっています。
たとえば、ファイルをどこかにコピーして、属性を非表示に設定すると、次のようになります。
File.Copy("sender.exe", path+"system.exe");
File.SetAttributes(path + "sender.exe", FileAttributes.Hidden);
このコードで非表示の .EXE ファイルを実行できますか (パスがわかっている場合)?
function Run(path, lang, city) {
var shell = new ActiveXObject("WScript.Shell");
shell.run(path + " " + city + " " + lang);
}