Thanks Erik (and apologies to all for previously forgetting to remove my sig). No, unfortunately there is absolutely no license management available, even to Trimble tech support (this feature has been “in the works” for years). From another source, I was just pointed toward the following script utilizing pstools as you suggested which I’m trying to make work now:
set AppNam=SketchUp.exe set ClientsFN=Clients.txt set LogFN=Results.txt net view | find /i "\\">%ClientsFN% for /f %%z in (%ClientsFN%) gosub :doit %%z goto :eof :doit echo %1>>%LogFN% pslist %1 | find /i "%AppNam%">>%LogFN% return From: [email protected] [mailto:[email protected]] On Behalf Of Erik Goldoff Sent: Tuesday, April 26, 2016 2:36 PM To: [email protected] Subject: Re: [NTSysADM] ***SPAM*** Scan network for specific running process Does the application not show username and/or machine name and address for each seat in use ? You could script this via powershell, or CMD file with pstools. but might take some time to enumerate and connect to each system to check. On Tue, Apr 26, 2016 at 2:09 PM, Daniel Carp <[email protected]<mailto:[email protected]>> wrote: We own a fixed number of network licenses for an application (SketchUp) and routinely find all seats in use. Trimble does not offer any form of license monitoring system so I have no way to know who is using the program at any given time. Is there a way to run an on-demand scan of a network for all computers with a specific active process? Thanks in advance! -Dan
