Hi
We have an environment with around 55 proxies and we need to change the transport settings to use NBDSSL on all proxies, are there anyone that already have a script for this or know a good way of doing it?
			
			
									
						
										
						- 
				mrholm
 - Expert
 - Posts: 170
 - Liked: 15 times
 - Joined: Apr 20, 2018 8:12 am
 - Full Name: Mats Holm
 - Contact:
 
- 
				mrholm
 - Expert
 - Posts: 170
 - Liked: 15 times
 - Joined: Apr 20, 2018 8:12 am
 - Full Name: Mats Holm
 - Contact:
 
Re: Change Proxy Transport Mode to NBDSSL on all Proxies
Hi
Had a consultant at site that fixed it 5 minutes, here are the code we use
$servers = Get-VBRViProxy | select name
foreach($server in $servers)
{
Write-host "Processing $($server.name)...
"
Set-VBRViProxy -Proxy $server.name -EnableHostToProxyEncryption
}
			
			
									
						
										
						Had a consultant at site that fixed it 5 minutes, here are the code we use
$servers = Get-VBRViProxy | select name
foreach($server in $servers)
{
Write-host "Processing $($server.name)...
"
Set-VBRViProxy -Proxy $server.name -EnableHostToProxyEncryption
}
- 
				nielsengelen
 - Product Manager
 - Posts: 6100
 - Liked: 1272 times
 - Joined: Jul 15, 2013 11:09 am
 - Full Name: Niels Engelen
 - Contact:
 
Re: Change Proxy Transport Mode to NBDSSL on all Proxies
Thanks for sharing.
For the future, you can always look at SuperEdit which is a community tool to mass change things in jobs via PowerShell.
			
			
									
						
							For the future, you can always look at SuperEdit which is a community tool to mass change things in jobs via PowerShell.
GitHub: https://github.com/nielsengelen
			
						- 
				tsightler
 - VP, Product Management
 - Posts: 6040
 - Liked: 2867 times
 - Joined: Jun 05, 2009 12:57 pm
 - Full Name: Tom Sightler
 - Contact:
 
Re: Change Proxy Transport Mode to NBDSSL on all Proxies
Note that Set-VBRViProxy accepts pipeline input so you can actually do this with a single line:
			
			
									
						
										
						Code: Select all
Get-VBRViProxy | Set-VBRViProxy -EnableHostToProxyEncryptionWho is online
Users browsing this forum: No registered users and 7 guests