Run a Console Application and Mail Output Report with PowerShell

We had a console application GetStorageReport which runs and generates detailed storage reports based on some SharePoint APIs. Got the requirement to run the tool periodically and mail the output report of the application. Scheduled a PowerShell script to execute the application and mail the report to Administration team.

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue 

#Trigger the executable file
Start-Process "D:\Scripts\StorageReport\GetStorageReport.exe"

# Wait until the report is generated
while(-not (Test-Path "D:\Scripts\StorageReport\StorageReport.csv"))
  {
    Start-Sleep 30  #sleep for 30 seconds
  }
  
$ReportDate=get-date -Format "MMM-dd-yyyy"

#Rename the Report 
Rename-Item -Path "D:\Scripts\StorageReport\StorageReport.csv" -NewName "D:\Scripts\StorageReport\StorageReport_$ReportDate.csv"
 
  #Send the Mail
 $MailMessageParameters = @{
    SmtpServer = "smtp.company.org"
    Subject = "SharePoint Storage Report - $ReportDate"
    Body = "Please find attached Database storage report as on $ReportDate"
    From = "SharePointReports@company.com"
    To = "AdminTeam@company.com"
    Attachments ="D:\Scripts\StorageReport\StorageReport_$ReportDate.csv"
}
 Send-MailMessage @MailMessageParameters
 
 #Remove the Report
 if (Test-Path "D:\Scripts\StorageReport\StorageReport_$ReportDate.csv")
 {
    Remove-Item "D:\Scripts\StorageReport\StorageReport_$ReportDate.csv"
 }

Salaudeen Rajack

Salaudeen Rajack - SharePoint Expert with Two decades of SharePoint Experience. Love to Share my knowledge and experience with the SharePoint community, through real-time articles!

Leave a Reply

Your email address will not be published. Required fields are marked *