使用 WSH,可以轻松地使用 Windows 管理规范 (WMI)。下面的脚本将演示如何使用 WSH 和 WMI 来通过 ADSI 检索用户的登录时间。
注意 有关 WMI 的详细信息,请参阅 WMI SDK,网址为 (http://www.microsoft.com/china/msdn/)。
// JScript。 LoginProfiles = GetObject("winmgmts:").InstancesOf ("Win32_NetworkLoginProfile"); for(e = new Enumerator(LoginProfiles) ; !e.atEnd() ; e.moveNext()) { Profile = e.item(); WScript.Echo(Profile.Name); WScript.Echo(Profile.LastLogon); } ' VBScript。 Set LoginProfiles = GetObject("winmgmts:").InstancesOf ("Win32_NetworkLoginProfile") for each Profile in LoginProfiles WScript.Echo Profile.Name WScript.Echo Profile.LastLogon next