-The script runs once every moth
-Through TreeSize.exe /HTML we are creating an output HTML file which creates a report the report is named "IS_SHARED_StorageReport.HTML" and it is placed on network share.
-The report is sent via email to a number of recepients. We use BLAT.EXE + the name of the report to do it.
-The report that is saved on the network share is overwriten every moth since we are using the same name.
Issue:
Since the report is saved on the network share with the same name overwrites the previous one which is now becoming a problem because we don't have any data for trending.
Question:
We are trying to figure out if the is any way to get the batch file modified in order to create a file with a new name. For example something like this:
IS_SHARED_StorageReport_03/14/2012.HTML
IS_SHARED_StorageReport_04/14/2012.HTML
IS_SHARED_StorageReport_05/14/2012.HTML
IS_SHARED_StorageReport_06/14/2012.HTML
etc.
This one seems to work. The only issue is that I think that blat.exe needs a litle time catch up with the HTML file creation. Basically I get an email but it looks like raw code.
Would the script wait until the HTML file is fully generated and then send the email through BLAT.EXE?
Well BLAT says something like this "Failed to open registry key for Blat Profile, using default. Failed to open registry key for blat
Chris Ashcraft
You may need to specify that the email is in HTML format. Try using blat's -html parameter to set the encoding to text/html or attaching the html file using -attacht.
Open in new window