-
Notifications
You must be signed in to change notification settings - Fork 11
/
GlobalVariables.ps1
36 lines (33 loc) · 2.84 KB
/
GlobalVariables.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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
# Please Specify the IP address or Hostname of the server to connect to
$Server ="192.168.0.9"
# Please Specify the SMTP server address
$SMTPSRV ="mysmtpserver.mydomain.local"
# Please specify the email address who will send the vCheck report
$EmailFrom ="[email protected]"
# Please specify the email address who will receive the vCheck report
$EmailTo ="[email protected]"
# Please specify an email subject
$EmailSubject="$Server vCheck Report"
# Would you like the report displayed in the local browser once completed ?
$DisplaytoScreen =$True
# Use the following item to define if an email report should be sent once completed
$SendEmail =$false
# If you would prefer the HTML file as an attachment then enable the following:
$SendAttachment =$false
# Use the following area to define the title color
$Colour1 ="FFBB10"
# Use the following area to define the Heading color
$Colour2 ="FFD800"
# Use the following area to define the Title text color
$TitleTxtColour ="FFFFFF"
# Set the following setting to $true to see how long each Plugin takes to run as part of the report
$TimeToRun = $true
# Report an plugins that take longer than the following amount of seconds
$PluginSeconds = 30
# End of Settings
$Date = Get-Date