Hi Alex,
I would like to create a custom html report for one folder only. I´ve configured a test on this folder with action "Execut HSM Script" and create report option. Where should I configure the option of which folder to generate the report on?
Thanks for helping,
Regards.
Jromariz.
Custom HTML for One Folder Only
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
You should add "SetCurrentFolder" command before "CreateReport" command, e.g.:
Please read the following article for details: http://www.ks-soft.net/hostmon.eng/mfra ... #actScript
Regards,
Max
Code: Select all
SetCurrentFolder Root\ping\
IncludeSubfolders yes
CreateReport "HTML report for manager" c:\temp\cust_report.htm
Regards,
Max
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
You can specify directory name with spaces, but you should not wrap it into quotes:
Regards,
Max
Code: Select all
SetCurrentFolder Root\ping\
IncludeSubfolders yes
CreateReport "HTML report for manager" C:\Program Files\HTML Help Workshop\cust_report.htm
Max