-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGlobalVariables.ps1
46 lines (41 loc) · 1.78 KB
/
GlobalVariables.ps1
1
# You can change the following defaults by altering the below settings:## Set the following to true to enable the setup wizard for first time run$SetupWizard = $true# Start of Settings# Report header$reportHeader = "vCheck Exchange"# Would you like the report displayed in the local browser once completed ?$DisplaytoScreen = $true# Display the report even if it is empty?$DisplayReportEvenIfEmpty = $true# Use the following item to define if an email report should be sent once completed$SendEmail = $false# Please Specify the SMTP server address (and optional port) [servername(:port)]$SMTPSRV = "mysmtpserver.mydomain.local"# Would you like to use SSL to send email?$EmailSSL = $false# Please specify the email address who will send the vCheck report$EmailFrom = "[email protected]"# Please specify the email address(es) who will receive the vCheck report (separate multiple addresses with comma)$EmailTo = "[email protected]"# Please specify the email address(es) who will be CCd to receive the vCheck report (separate multiple addresses with comma)$EmailCc = ""# Please specify an email subject$EmailSubject = "vCheck Exchange Report"# Send the report by e-mail even if it is empty?$EmailReportEvenIfEmpty = $true# If you would prefer the HTML file as an attachment then enable the following:$SendAttachment = $false# Set the style template to use.$Style = "Default"# Do you want to include plugin details in the report?$reportOnPlugins = $true# List Enabled plugins first in Plugin Report?$ListEnabledPluginsFirst = $true# Set the following setting to $true to see how long each Plugin takes to run as part of the report$TimeToRun = $true# Report on plugins that take longer than the following amount of seconds$PluginSeconds = 30# End of Settings# End of Global Variables