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?
-
- Expert
- Posts: 170
- Liked: 15 times
- Joined: Apr 20, 2018 8:12 am
- Full Name: Mats Holm
- Contact:
-
- 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
}
-
- Product Manager
- Posts: 5797
- Liked: 1215 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.
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- VP, Product Management
- Posts: 6035
- Liked: 2860 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 -EnableHostToProxyEncryption
Who is online
Users browsing this forum: No registered users and 18 guests