/build/static/layout/Breadcrumb_cap_w.png

Hello, I was wondering if the K100 can generate a report that shows how long a laptop has been docked in a docking station? We’re trying to determine if users are even taking their laptops home

Hello, I was wondering if the K100 can generate a report that shows how long a laptop has been docked in a docking station? We’re trying to determine if users are even taking their laptops home


0 Comments   [ + ] Show comments

Answers (3)

Posted by: BHC-Austin 9 years ago
4th Degree Black Belt
0

The only way you'd really be able to do this would be through custom inventory. There are a few different WMI queries that you could try but most docking stations don't trigger those anymore, since they are basically just passthrough port replicators now. You'll just have to determine what, if anything, is different about the system when it is on the dock vs off (such as connected devices, perhaps monitors) and have a custom inventory item that checks for those. You'll probably also need to store that info in a file so it has something to compare it to and have it store the date/time it changed.

Posted by: SMal.tmcc 9 years ago
Red Belt
0

If you have assest history enabled you should be able to see under asset history of when the hardware changes.

 

 

 


Comments:
  • There's nothing in kace that reports when a laptop is docked or undocked - mnutbrown 9 years ago
    • You can look for the mac to change from the laptop to the dock and visa vesa. Added screen shots to original answer - SMal.tmcc 9 years ago
Posted by: dugullett 9 years ago
Red Belt
0

Off the top of my head run an offline script that querys the IP address every hour or so. Export the results to .txt file. If the IP address changes to something not on your network I would say they are taking it. 

@echo off

echo %date% %time% >> C:\temp\ip.txt

ipconfig |find "IPv4" >> C:\temp\ip.txt

 

In this case write a custom inventory rule for C:\temp\ip.txt

ShellCommandTextReturn(cmd.exe /c type C:\temp\ip.txt)

 

Comments:
  • ip changes also show under history
    04/24/2014 11:24:47 'IP' changed from '10.16.32.77' to '192.168.97.13'. Reported by Agent - SMal.tmcc 9 years ago
    • Based on inventory. It depends on if the machines can inventory off of the network. In our case we don't. That's why I suggested the offline script. Plus depending on your check in time you can get a lot more granular on the schedule for the script. - dugullett 9 years ago
 
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