/build/static/layout/Breadcrumb_cap_w.png

Is there a way to script a report to get usage/activity for computers?

Hi, is there a way in KACE to get a usage report or number of logins over a period of time? We're wanting to see how often some of our public lab machines are being used.

The "last activity date" function under "other" is not working


0 Comments   [ + ] Show comments

Answers (1)

Posted by: AmberSDNB 2 weeks ago
Orange Senior Belt
1

Not a great way to do this built in as far as I'm aware. We often get requests to see who logged into a machine when there is damage or to just see use. This is what I have in place broken into 3 parts...

1) Group Policy - This captures their log in time and dumps it to a file. It's a powershell script. (user side, logon script) If you don't use Group Policy, I'm sure there are other means to generate this file on login. (run registry for example)

$date = (Get-Date).toString("MM/dd/yyyy HH:mm:ss")

Add-Content "Login TimeStamp: [$date] | Username: [$env:USERNAME] | Computer: [$env:COMPUTERNAME]" -path "$ENV:SystemDrive\Temp\Login.log"


2) Kace - Custom Inventory rule to pull in log file. (last 45 entries)
ShellCommandTextReturn(cmd /q /c powershell.exe -command "Get-Content -tail 45 C:\temp\Login.log")


3) Report - Create a report that has the custom inventory rule created, and whatever other fields needed. (Serial number, computer name, etc)

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ