Add SQL Firewall Port Rules
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned #Enabling SQL Server PortsNew-NetFirewallRule -DisplayName “SQL Server” -Direction Inbound –Protocol TCP –LocalPort 1433 -Action allowNew-NetFirewallRule -DisplayName “SQL Admin Connection” -Direction Inbound –Protocol TCP –LocalPort 1434 -Action allowNew-NetFirewallRule…