08/07/04 14:30:01 CtHz6lYe0
>>906
URLリンク(qwerty.s2.xrea.com)
ここのマクロプラグインを使うのはどうだろう?
スクリプトはこんな感じで
// ここから
var now = new Date();
var yyyy = now.getYear();
var yy = ("" + yyyy).slice(-2);
var MM = ("0" + (now.getMonth() + 1)).slice(-2);
var dd = ("0" + now.getDate()).slice(-2);
var hh = ("0" + now.getHours()).slice(-2);
var mm = ("0" + now.getMinutes()).slice(-2);
var ss = ("0" + now.getSeconds()).slice(-2);
WScript.Echo(yyyy + "/" + MM + "/" + dd + " " + hh + ":" + mm + ":" + ss);
// ここまで