FWIW
Upgraded from 7 > 8
Console/Proxy on Server 2019 Datacenter UI / Server 2019 Datacenter Core
Once I did this? Worked fine... /shrug not sure why this wasn't QA'd before release though - upgrades should be your primary focus on QA IMHO.
Upgraded from 7 > 8
Console/Proxy on Server 2019 Datacenter UI / Server 2019 Datacenter Core
- Had to manually install Powershell 7.5 on the Proxy (it claimed 7.4, but installing 7.4 did not resolve)
- Had to install .net 8 RUNTIME
- Had to open ports 4222 and 5432
- Had to reboot my Proxy - it just didn't like something despite all of this
Code:
$ruleName = "Veeam M365 Portz"# Remove existing rule (if exists)if (Get-NetFirewallRule -DisplayName $ruleName -ErrorAction SilentlyContinue) { Remove-NetFirewallRule -DisplayName $ruleName -Confirm:$false}# Define all required ports - this includes some that not all proxies/consoles may need$allPorts = "9192,9191,5432,4222,443,445,135,5985,5986,25,465,587,9193"# Create the firewall rule based on what you listed beforeNew-NetFirewallRule -DisplayName $ruleName ` -Direction Inbound ` -Action Allow ` -Profile Any ` -EdgeTraversalPolicy Block ` -Protocol TCP ` -LocalPort $allPorts ` -RemotePort Any ` -LocalAddress Any ` -RemoteAddress Any ` -Program Any ` -Service AnyStatistics: Posted by JRRW — Feb 26, 2025 2:22 pm





