Direct Inward Dialing: +1 408 916 9892
Shutdowns are critical events which IT administrators analyze to troubleshoot errors. Monitoring shutdown time is also crucial to an organization's security review and IT compliance requirements. Systems are vulnerable to physical-access attacks when the OS is down. Hence, auditing and generating device shutdown time reports is essential to spot anomalous behavior within the organization and ward off external cyber threats.
The following is a comparison between the procedures for monitoring computer shutdown time with Windows PowerShell and ADAudit Plus.
The following script parses the system event log for shutdown events and generates a report to gain insights on system shutdown.
Get-EventLog -LogName System -Source "EventLog" -EntryType Error | Where {$_.EventID -eq 6008} | fl * | Out-File -Filepath C:\Users\sareeka-8466\Desktop\REport.html (Mention the location where report needs to be saved) The report can be saved in .csv or .txt format by altering the same. For Eg: Out-File -FilePath C:\Users\sareeka-8466\Desktop\REport.csv
In addition to the computer name and shutdown time, the following are some of the details provided by ADAudit Plus:
The following are some limitations to obtaining a report on computer shutdown times using native tools like Windows PowerShell:
ADAudit Plus will automatically scan all DCs in the domain to retrieve information about shutdown time, generate the report and present it in a simple and intuitively designed UI.