- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- PSP Version report
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2005 08:45 AM
11-30-2005 08:45 AM
I have been given the task within my company to upgrade all of our management agents to version 7.4. I was hoping that there was a way for me to generate some type of report from within SIM that would tell me which version of the agents we are running. I have not seen anything in SIM itself that might be able to do this, nor in any of the documentation that I have found.
Thanks for any help you may be able to provide (please be gentle, as I'm very new to the HP / SIM world)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2005 09:26 AM
11-30-2005 09:26 AM
Re: PSP Version report
I am not aware of any way (not to say there is not) using SIM. I ended up using a 3rd party tool to collect the version information for a particular file that is part of the PSP. I my case I use BV-Control for Windows (Bindview) and I scan for the file:
%SYSTEMROOT%\System32\Cpqmgmt\CqMgServ\cqmgserv.exe
If you dont have BV or similar reporting tool, you could probably easily write a script to scan for this file on all your servers and grab the version info.
Nelson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2005 09:47 AM
11-30-2005 09:47 AM
Re: PSP Version report
Thanks,
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2005 10:53 AM
11-30-2005 10:53 AM
SolutionFrom Reports, Select General ->Software and select the description, name and version fields.
Sort by Describption and look for the HP Insight Management Agents entries or if you have old agents they may be called Foundation Agents.
Or the following sql would extract the details direct from the database:
select CAST(R_Software.DeviceName AS char(20)), CAST(R_Software.Version AS char(24))
from R_Software
WHERE (R_Software.Description LIKE '%Foundation Agents Service%' OR R_Software.Description LIKE '%Insight Management Agents%')
AND (R_Software.SnapShotID=-1)
order by R_Software.DeviceName ASC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 03:14 AM
12-01-2005 03:14 AM
Re: PSP Version report
Thanks,
James