>  2007/11/06 (火) 18:03:47        [qwerty]
> > ログインした時刻を記録するvbr作って
> vbsだった

'適当.vbs
path = "C:\log.log"
tm = Now
Set fso = WScript.CreateObject("Scripting.FileSystemObject")
Set tmpFile = fso.OpenTextFile(path, 8, True)
tmpFile.WriteLine(tm)
tmpFile.close
WScript.Echo tm
Set fso = Nothing
Set tmpFile = Nothing
'EOF

こういうの作って適当に起動時に指定

参考:2007/11/06(火)17時42分20秒