-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-vda.ps1
More file actions
428 lines (350 loc) · 13.5 KB
/
install-vda.ps1
File metadata and controls
428 lines (350 loc) · 13.5 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<#
.SYNOPSIS
Installs Citrix Virtual Delivery Agent (VDA) and optionally Workspace Environment Management (WEM) on a remote server.
.DESCRIPTION
This script automates the installation of Citrix VDA and optionally WEM on a remote Windows server.
It handles various scenarios including Windows Server 2012 compatibility,
and multiple installation attempts if necessary.
.PARAMETER ServerName
The name of the remote server where VDA/WEM will be installed.
.PARAMETER SoftwareShareRoot
The root path of the network share containing the installation files.
.PARAMETER CloudConnectors
A space separated list of Cloud Connectors to be used for VDA installation.
.PARAMETER InstallWEM
Switch to indicate if WEM should be installed after VDA installation.
.EXAMPLE
.\Install-CitrixVDA.ps1 -ServerName "SERVER01" -SoftwareShareRoot "\\SHARE\CitrixInstall" -CloudConnectors "CC01 CC02"
This example installs VDA on SERVER01 using the specified software share and Cloud Connectors.
.EXAMPLE
.\Install-CitrixVDA.ps1 -ServerName "SERVER02" -SoftwareShareRoot "\\SHARE\CitrixInstall" -CloudConnectors "CC01 CC02" -InstallWEM
This example installs both VDA and WEM on SERVER02.
.NOTES
File Name : Install-VDA.ps1
Author : Derrick Foos (derrickfoos@hotmail.com)
Prerequisite : PowerShell 5.0 or later
Creation Date : 2023-08-26
Version : 1.0
Change History :
v1.0 - Initial script creation
.LINK
https://github.com/dfoos/install-vda
#>
# Script parameters
param (
[Parameter(Mandatory=$true, HelpMessage="Name of the remote server to install VDA/WEM on")]
[string]$ServerName,
[Parameter(Mandatory=$true, HelpMessage="Root path of the software share on the network")]
[string]$SoftwareShareRoot,
[Parameter(Mandatory=$true, HelpMessage="List of Cloud Connectors to use for VDA installation")]
[string]$CloudConnectors,
[Parameter(HelpMessage="Install WEM after VDA installation")]
[switch]$InstallWEM = $false
)
# Define paths for VDA and WEM installers
$server2012Vda = "$SoftwareShareRoot\VDAServerSetup\VDAServerSetup_1912.exe"
$serverVda = "$SoftwareShareRoot\VDAServerSetup\VDAServerSetup_2203.exe"
$server2012Wem = "$SoftwareShareRoot\WorkspaceEnvironemntManagement\Citrix Workspace Environment Management Agent 2112.exe"
$serverWem = "$SoftwareShareRoot\WorkspaceEnvironemntManagement\Citrix Workspace Environment Management Agent.exe"
# Define installation arguments
$vdaArgs = "/controllers `"$CloudConnectors`" /quiet /noreboot /noresume /disableexperiencemetrics /virtualmachine /optimize /enable_hdx_ports /enable_hdx_udp_ports /components `"vda`" /includeadditional `"Citrix VDA Upgrade Agent`",`"Citrix Supportability Tools`",`"Citrix User Profile Manager`",`"Citrix User Profile Manager WMI Plugin`"' /exclude `"Citrix Telemetry Service','User personalization layer','AppDisks VDA Plug-in','Citrix Files for Outlook','Citrix Files for Windows','Citrix Personalization for App-V - VDA`",`"Machine Identity Service`",`"Personal vDisk`""
$wemCloudConnectors = $CloudConnectors -replace " ", ","
$wemArgs = "/quiet Cloud=1 CloudConnectorList=$wemCloudConnectors"
$softwareFolder = "C$\software\vda_install"
$Global:RemoteFolderPath = "\\$ServerName\$softwareFolder"
# Function to write log messages
function Write-Log {
param (
[string]$Message,
[string]$LogFilePath = "$Global:RemoteFolderPath\vda_installer.log"
)
$logDirectory = [System.IO.Path]::GetDirectoryName($LogFilePath)
if (-not (Test-Path $logDirectory)) {
New-Item -Path $logDirectory -ItemType Directory -Force | Out-Null
}
$timestamp = (Get-Date).ToString("yyyy-MM-dd HH:mm:ss")
$logMessage = "$timestamp - $Message"
$logMessage | Out-File -FilePath $LogFilePath -Append -Encoding UTF8
Write-Host $logMessage
}
# Function to handle errors
function Handle-Error {
param (
[string]$ErrorMessage,
[string]$ExitMessage = "Press Enter to exit..."
)
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
Read-Host $ExitMessage
exit
}
# Function to handle successful completion
function Handle-Completed {
param (
[string]$CompletedMessage,
[string]$ExitMessage = "Press Enter to exit..."
)
Write-Log $CompletedMessage
Read-Host $ExitMessage
exit
}
# Function to ensure remote folder exists
function Ensure-RemoteFolder {
try {
$folderPath = $Global:RemoteFolderPath
if (-not (Test-Path -Path $Global:RemoteFolderPath)) {
New-Item -Path $Global:RemoteFolderPath -ItemType Directory -Force
Write-Log "Folder created at $Global:RemoteFolderPath"
}
else {
Write-Log "Folder already exists at $Global:RemoteFolderPath"
}
}
catch {
Handle-Error "An error occurred: $_"
}
}
# Function to test UNC path accessibility
function Test-RemoteUNC {
param (
[string]$RemoteServerName
)
try {
if (Test-Path -Path "\\$RemoteServerName\c$") {
return $true
}
else {
return $false
}
}
catch {
Handle-Error "An error occurred while testing the UNC path: $_"
return $false
}
}
# Function to test WinRM connectivity
function Test-RemoteWinRM {
param (
[string]$RemoteServerName
)
try {
$result = Test-WSMan -ComputerName $RemoteServerName -ErrorAction Stop
if ($result) {
return $true
}
}
catch {
return $false
}
}
# Function to test remote server version
function Test-RemoteServerVersion {
param (
[string]$RemoteServerName
)
try {
$scriptBlock = {
$os = Get-WmiObject -Class Win32_OperatingSystem
return $os.Version
}
$osVersion = Invoke-Command -ComputerName $RemoteServerName -ScriptBlock $scriptBlock -ErrorAction Stop
$windowsServer2012Version = "6.2.9200"
if ($osVersion -eq $windowsServer2012Version) {
Write-Log "$RemoteServerName is running Windows Server 2012."
return $true
}
else {
Write-Log "$RemoteServerName is not running Windows Server 2012. Version detected: $osVersion"
return $false
}
}
catch {
Handle-Error "An error occurred: $_"
}
}
# Function to test remote server reboot
function Test-RemoteReboot {
param (
[string]$RemoteServerName
)
$timeout = 300
$startTime = Get-Date
try {
Restart-Computer -ComputerName $RemoteServerName -Force -Wait
}
catch {
Handle-Error "Failed to restart the computer: $_"
return $false
}
# Helper function to test connection with timeout
function Test-ConnectionWithTimeout {
param (
[string]$ServerName,
[int]$Timeout
)
$elapsedTime = 0
while (-not (Test-Connection -ComputerName $ServerName -Count 1 -Quiet)) {
Start-Sleep -Seconds 10
$elapsedTime = (Get-Date) - $startTime
if ($elapsedTime.TotalSeconds -ge $Timeout) {
return $false
}
}
return $true
}
if (-not (Test-ConnectionWithTimeout -ServerName $RemoteServerName -Timeout $timeout)) {
Handle-Error "Computer did not shut down in time."
return $false
}
$startTime = Get-Date
if (-not (Test-ConnectionWithTimeout -ServerName $RemoteServerName -Timeout $timeout)) {
Handle-Error "Computer did not come back online in time."
return $false
}
$elapsedTime = (Get-Date) - $startTime
while ($elapsedTime.TotalSeconds -lt $timeout) {
try {
Test-WsMan -ComputerName $RemoteServerName -ErrorAction Stop | Out-Null
Write-Log "WinRM is available."
return $true
}
catch {
Start-Sleep -Seconds 10
$elapsedTime = (Get-Date) - $startTime
}
}
Handle-Error "WinRM did not become available in time."
return $false
}
# Function to install VDA
function Install-VDA {
param (
[string]$RemoteServerName,
[string]$VDAInstallerPath,
[string]$VDAArgs = $null
)
if ($VDAArgs) {
Write-Log "Starting VDA installation at $VDAInstallerPath on $RemoteServerName with arguments: $VDAArgs"
}
else {
Write-Log "Continuing VDA installation at $VDAInstallerPath on $RemoteServerName"
}
$command = {
if ($Using:VDAArgs) {
$process = Start-Process -FilePath $Using:VDAInstallerPath -ArgumentList $Using:VDAArgs -Wait -PassThru
}
else {
$process = Start-Process -FilePath $Using:VDAInstallerPath -Wait -PassThru
}
return $process.ExitCode
}
$result = Invoke-Command -ComputerName $RemoteServerName -ScriptBlock $command
return $result
}
# Function to install WEM
function Install-WEM {
param (
[string]$RemoteServerName,
[string]$WEMInstallerPath,
[string]$WEMArgs
)
Write-Log "Starting WEM installation at $WEMInstallerPath on $RemoteServerName with arguments: $WEMArgs"
$command = {
$process = Start-Process -FilePath $Using:WEMInstallerPath -ArgumentList $Using:WEMArgs -Wait -PassThru
return $process.ExitCode
}
$result = Invoke-Command -ComputerName $RemoteServerName -ScriptBlock $command
return $result
}
# Function to handle installation results
function Handle-Results {
param (
[int]$InstallResult,
[string]$RemoteServerName
)
$validExitCodes = @(0, 3, 8, 3010)
$successExitCodes = @(0, 8, 3010)
Write-Log "Installer exit code [$InstallResult]."
if ($InstallResult -notin $validExitCodes) {
Handle-Error -ErrorMessage "Failed to install application. Exiting script."
}
if ($InstallResult -in $successExitCodes) {
Write-Log "Application installed successfully. Rebooting server."
$secondReboot = Test-RemoteReboot -RemoteServerName $RemoteServerName
if ($secondReboot) {
Write-Log "Remote server restarted successfully."
Handle-Completed -CompletedMessage "Application installed successfully."
}
else {
Handle-Error -ErrorMessage "Failed to restart the remote server. Exiting script."
}
}
if ($installResult -eq 3) {
Write-Log "Application installer needs to be run again. Rebooting server."
Write-Log "Restarting the remote server before starting install..."
$secondReboot = Test-RemoteReboot -RemoteServerName $RemoteServerName
if ($secondReboot) {
Write-Log "Remote server restarted successfully."
}
else {
Handle-Error -ErrorMessage "Failed to restart the remote server. Exiting script."
}
}
}
# Main script execution starts here
$isWinRMAccessible = Test-RemoteWinRM -RemoteServerName $ServerName
$isUNCPathAccessible = Test-RemoteUNC -RemoteServerName $ServerName
if ($isWinRMAccessible -and $isUNCPathAccessible) {
Write-Log "Server is reachable via UNC and WinRM"
$vdaInstaller = $serverVda
$wemInstaller = $serverWem
# Check if the server is running Windows Server 2012
$isServer2012 = Test-RemoteServerVersion -RemoteServerName $ServerName
if ($isServer2012) {
$vdaInstaller = $server2012Vda
$wemInstaller = $server2012Wem
}
# Prepare remote folder and copy installers
Ensure-RemoteFolder -RemoteServerName $ServerName -FolderPath $softwareFolder
Copy-Item -Path $vdaInstaller -Destination "\\$ServerName\$softwareFolder\VDAServerSetup.exe" -Force
Copy-Item -Path $wemInstaller -Destination "\\$ServerName\$softwareFolder\Citrix Workspace Environment Management Agent.exe" -Force
if ($?) {
Write-Log "VDA installer copied to $ServerName"
}
else {
Handle-Error -ErrorMessage "Failed to copy VDA installer to $ServerName. Exiting script."
}
$localVdaInstaller = "$softwareFolder\VDAServerSetup.exe"
$localVdaInstaller = $localVdaInstaller -replace '\$', ':'
# Restart the remote server before installation
Write-Host "Restarting the remote server before starting install..."
$firstReboot = Test-RemoteReboot -RemoteServerName $ServerName
if ($firstReboot) {
Write-Log "Remote server restarted successfully."
}
else {
Handle-Error -ErrorMessage "Failed to restart the remote server. Exiting script."
}
# Install VDA
$maxIterations = 5
$iteration = 0
while ($iteration -lt $maxIterations) {
Write-Log "Installing VDA on the remote server. Pass $($iteration + 1)..."
$installResult2 = Install-VDA -RemoteServerName $ServerName -VDAInstallerPath $localVdaInstaller -VDAArgs $vdaArgs
Handle-Results -InstallResult $installResult2 -RemoteServerName $ServerName
$iteration++
}
# Install WEM if specified
if ($InstallWEM -eq $false) {
Handle-Completed "VDA Install completed successfully."
}
else {
Write-Log "VDA install completed successfully."
Write-Log "Installing WEM on the remote server..."
$installResult = Install-WEM -RemoteServerName $ServerName -WEMInstallerPath $localVdaInstaller -WEMArgs $wemArgs
Handle-Results -InstallResult $installResult -RemoteServerName $ServerName
Handle-Completed "VDA and WEM install completed successfully."
}
}
else {
Handle-Error -ErrorMessage "Server is not reachable via UNC and WinRM. Exiting script."
}