Identify if Windows TCP/UDP Ports are open on Remote Computers



Identify if Windows TCP/UDP Ports are open on Remote Computers

Identify if Windows TCP/UDP Ports are open on Remote Computers

In this video you will learn how to check TCP port status on multiple remote computer, it can be any port like RDP, HTTP, SMB, you just have to enter the port number. please use this script and let me know if you are facing any issue.

=================================================
$servers = Get-Content -Path C:ScriptsAllservers.txt
foreach($server in $servers){
Test-NetConnection -ComputerName $server -Port 3389 -ErrorAction SilentlyContinue -WarningAction SilentlyContinue |
Select ComputerName, RemotePort, TcpTestSucceeded | Export-Csv C:ScriptsPortResult.csv -Append}
=================================================
Installing software remotely on Multiple “Workgroup” Computers
https://youtu.be/QT4u74JWbOM

PowerShell Installing software remotely on Multiple Computers
https://youtu.be/E9yaYVbzgb4

Unable to move OU in Active Directory (Access is denied)
https://youtu.be/0XRizUBbj3s

PowerShell Installing software remotely on Multiple Computers
https://youtu.be/E9yaYVbzgb4

Get Multiple Services Status Remotely | Remotely Start or Stop Services
https://youtu.be/C8PrFNbdLj8

Get Date and Time from Multiple Remote Computers
https://youtu.be/ZpMio_y1zn8

PowerCLI – How to get HA restarted VM’s List
https://youtu.be/0IRJvZH9paQ

Get-Childitem – Search file on Local and Remote Computers
https://youtu.be/kHkD5M-mk0A

Remotely Create Update Delete Registry Key on Multiple Computers
https://youtu.be/Hxlqr3zdxHM

Get service status from remote server’s using PowerShell
https://youtu.be/7fIG_brMONU .

Comments are closed.