-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWebDeploy.ps1
168 lines (135 loc) · 3.68 KB
/
WebDeploy.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<#
#>
function Get-PicassioWebDeployDefaultToolPath
{
return 'C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe'
}
<#
#>
function Sync-PicassioWebDeployPaths
{
param (
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Source,
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Destination,
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$ComputerName,
[string[]]
$Exclude = @(),
[string]
$ToolPath = $null,
[pscredential]
$Credentials = $null,
[switch]
$Quiet
)
# check that webdeploy tool is installed
if (Test-PicassioEmpty $ToolPath)
{
$ToolPath = Get-PicassioWebDeployDefaultToolPath
}
Test-PicassioPath $ToolPath -ThrowIfNotExists | Out-Null
# check that the source path exists
Test-PicassioPath $Source -ThrowIfNotExists | Out-Null
# build the credentials string
$creds_str = [string]::Empty
if ($Credentials -ne $null)
{
$creds_str = ",username='$($Credentials.GetNetworkCredential().UserName)',password='$($Credentials.GetNetworkCredential().Password)'"
}
# build the arguments to use
[string[]] $_args = @(
'-verb:sync',
"-source:dirPath='$($Source)'",
"-dest:dirPath='$($Destination)',computerName='$($ComputerName)'$($creds_str)"
)
# append any paths that need to be excluded
if (!(Test-PicassioEmpty $Exclude))
{
$Exclude | ForEach-Object {
$_args += "-skip:objectName=filePath,absolutePath='$($_)'"
}
}
# run web deploy with arguments
Write-PicassioInfo "Syncing paths via WebDeploy on $($ComputerName)"
Write-PicassioMessage "> Source: $($Source)"
Write-PicassioMessage "> Destination: $($Destination)"
if ($Quiet)
{
& $ToolPath $_args | Out-Null
}
else
{
& $ToolPath $_args
}
# check for errors
if (!$?)
{
throw 'WebDeploy failed to sync files'
}
Write-PicassioSuccess 'WebDeploy complete'
}
<#
#>
function Sync-PicassioWebDeployServers
{
param (
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Source,
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Destination,
[string]
$ToolPath = $null,
[pscredential]
$Credentials = $null,
[switch]
$Quiet
)
# check that webdeploy is installed
if (Test-PicassioEmpty $ToolPath)
{
$ToolPath = Get-PicassioWebDeployDefaultToolPath
}
Test-PicassioPath $ToolPath -ThrowIfNotExists | Out-Null
# build the credentials string
$creds_str = [string]::Empty
if ($Credentials -ne $null)
{
$creds_str = ",username='$($Credentials.GetNetworkCredential().UserName)',password='$($Credentials.GetNetworkCredential().Password)'"
}
# build the arguments to use
[string[]] $_args = @(
'-verb:sync',
"-source:webserver,computername='$($Source)'$($creds_str)",
"-dest:webserver,computername='$($Destination)'$($creds_str)"
)
# run web deploy with arguments
Write-PicassioInfo "Syncing servers via WebDeploy"
Write-PicassioMessage "> Source: $($Source)"
Write-PicassioMessage "> Destination: $($Destination)"
if ($Quiet)
{
& $ToolPath $_args | Out-Null
}
else
{
& $ToolPath $_args
}
# check for errors
if (!$?)
{
throw 'WebDeploy failed to sync servers'
}
Write-PicassioSuccess 'WebDeploy complete'
}