Answered by:
Looking for last on time or logged into report?

Question
-
I'm looking for a report that can help me in showing pc's that have been either turned off for more than 90 day's or if thay have been sitting at a log on promt and not logged into older then 90 days? I'm not sure if I can get that from Config Man or not?
Thanks
JeffFriday, September 11, 2009 12:44 PM
Answers
-
To create the report follow the steps below:
1. Edit the SMS_DEF.mof file to enable the following class:
Network Login Profile
Also enable the sub class:
LastLogon
2. Create a report with the below query:
Select
V_GS_SYSTEM.Name0 as [ComputerName],
V_GS_NETWORK_LOGIN_PROFILE.TimeStamp as [Last Login Time],
V_GS_NETWORK_LOGIN_PROFILE.Name0 as [Logon User],
V_GS_SYSTEM.Domain0 as [Logon Domain],
V_GS_SYSTEM.SystemRole0 as [System Role],
V_GS_SYSTEM.SystemType0 as [System Type]
from V_GS_NETWORK_LOGIN_PROFILE
left JOIN v_GS_SYSTEM ON V_GS_NETWORK_LOGIN_PROFILE.ResourceID =
v_GS_SYSTEM.ResourceID
where V_GS_NETWORK_LOGIN_PROFILE.LastLogon0 is not NULL
- Proposed as answer by Sherry Kissinger Friday, September 25, 2009 12:50 PM
- Marked as answer by Sherry Kissinger Tuesday, December 22, 2009 1:59 PM
Thursday, September 17, 2009 10:28 AM
All replies
-
Friday, September 11, 2009 1:43 PM
-
To create the report follow the steps below:
1. Edit the SMS_DEF.mof file to enable the following class:
Network Login Profile
Also enable the sub class:
LastLogon
2. Create a report with the below query:
Select
V_GS_SYSTEM.Name0 as [ComputerName],
V_GS_NETWORK_LOGIN_PROFILE.TimeStamp as [Last Login Time],
V_GS_NETWORK_LOGIN_PROFILE.Name0 as [Logon User],
V_GS_SYSTEM.Domain0 as [Logon Domain],
V_GS_SYSTEM.SystemRole0 as [System Role],
V_GS_SYSTEM.SystemType0 as [System Type]
from V_GS_NETWORK_LOGIN_PROFILE
left JOIN v_GS_SYSTEM ON V_GS_NETWORK_LOGIN_PROFILE.ResourceID =
v_GS_SYSTEM.ResourceID
where V_GS_NETWORK_LOGIN_PROFILE.LastLogon0 is not NULL
- Proposed as answer by Sherry Kissinger Friday, September 25, 2009 12:50 PM
- Marked as answer by Sherry Kissinger Tuesday, December 22, 2009 1:59 PM
Thursday, September 17, 2009 10:28 AM -
Does this work without changing any polices to audit logon events?
John Marcum | http://www.TrueSec.com/en/Training.htm | http://myitforum.com/cs2/blogs/jmarcumThursday, September 17, 2009 5:46 PM -
No it does not requires any Group Policy changes. It collects the login details from WMI with the classes we enabled in SMS_DEF.MOF file.Thursday, September 24, 2009 2:49 AM
-
Since there has been no additional activity in this thread, marking Eric's answer as correct.
Standardize. Simplify. Automate.Tuesday, December 22, 2009 1:59 PM