minor fix

This commit is contained in:
2023-01-04 10:41:10 -05:00
parent 678b808e64
commit 6bfc18a15f
+4 -4
View File
@@ -3,10 +3,10 @@ If (! $Edition ) { $Edition = 'desktop' }
# Set the correct download URL and agent edition # Set the correct download URL and agent edition
switch ( $Edition.ToLower() ) { switch ( $Edition.ToLower() ) {
'server' { $URL = $ECB_WIN_URL; $AgentEdition = 'baremetal' } 'server' { $AgentEdition = 'baremetal' }
'desktop' { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' } 'desktop' { $AgentEdition = 'desktop' }
'vm' { $URL = $ECB_VMM_URL; $AgentEdition = 'vmedition' } 'vm' { $AgentEdition = 'vmedition' }
default { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' } default { $AgentEdition = 'desktop' }
} }
# Install and import additional Powershell module # Install and import additional Powershell module