- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- Scheduling and Emailing Report Results
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
10-06-2005 12:03 AM
10-06-2005 12:03 AM
Scheduling and Emailing Report Results
Is it possible to schedule reports to run automatically, and then once the results have been gathered, emailed to a recipient ? I already have alerts being emailed to me, but would like to set this up for disk utilisation reports to be run daily and the results emailed to me.
All help would be gratefully received
Regards
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2005 01:20 AM
10-06-2005 01:20 AM
Re: Scheduling and Emailing Report Results
Note: This command is available only with HPSIM 5.0
mxreport -e [-x HTML|XML|CSV] [-o fully-qualified-file-name] -x [report|category]
And for more info as to how to e-mail using scripts...http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=928452&admit=-682735245+1127860929338+28353475
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2005 02:55 AM
10-06-2005 02:55 AM
Re: Scheduling and Emailing Report Results
Many thanks for your help, although I will be honest and ask for more help ! When you mention about creating a script to schedule a report, would it be possible for you to detail this more ?
Many thanks
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2005 06:58 PM
10-06-2005 06:58 PM
Re: Scheduling and Emailing Report Results
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 02:34 PM
10-27-2005 02:34 PM
Re: Scheduling and Emailing Report Results
I just wrote a simple one today to email me disk sizes each week. You can modify it to suit your reporting needs.
*Create the Report in HP SIM and call it "DiskUtilisation"
* Download Blat SMTP dos tool from http://sourceforge.net/project/showfiles.php?group_id=81910
Place blat in C:\Program Files\HP\Systems Insight Manager\Custom and create a report.cmd file.
Contents of file:
..\bin\mxreport -e -x HTML DiskUtilisation > "C:\Program Files\HP\Systems Insight Manager\Custom\Diskutilisation.htm"
blat Diskutilisation.htm -to Youremail@yourdomain.com -subject "Disk Utilisation Report for %date%"
This will generate the "DiskUtilisation" report and save it to "Diskutilisation.htm"
Blat will then email the html code inside the body of the email message.
(dont forget to run blat -install to configure your mail server/from address)