User contributions for Ansil
From Notes_Wiki
- 06:35, 18 June 2025 diff hist −46 Check Which Process is Listening on Port current Tag: Visual edit: Switched
- 06:33, 18 June 2025 diff hist +32 Windows Tag: Visual edit: Switched
- 06:32, 18 June 2025 diff hist +62 Windows OS Notes current Tag: Visual edit: Switched
- 06:25, 18 June 2025 diff hist +107 Test-NetConnection Cmdlet Reference and Usage
- 06:24, 18 June 2025 diff hist −1 Network Port and Connectivity Testing in Windows current Tag: Visual edit: Switched
- 06:22, 18 June 2025 diff hist +2,941 N Test-NetConnection Cmdlet Reference and Usage Created page with "Home > Windows > Windows OS Notes > Test-NetConnection PowerShell Cmdlet Reference '''Description''' ---------------------- The '''Test-NetConnection''' cmdlet is used to display diagnostic information for network connectivity. It supports: * Ping test * TCP port test * Traceroute * Route and source address diagnostics Module * NetTCPIP '''Test-NetConnection: Syntax and Parameter Reference''' -------------------------------------------..."
- 12:01, 12 June 2025 diff hist −29 Test Connectivity to Remote Machine Port
- 11:57, 12 June 2025 diff hist +1,038 N Test Connectivity to Remote Machine Port Created page with "Home > Windows > Windows OS Notes > Network Port and Connectivity Testing in Windows > Test Connectivity to Remote Machine Port == Test Connectivity to Remote Machine Port == Use the following PowerShell script to test TCP connectivity to a remote machine’s port: === Script === powershell $ipaddress = "10.11.21.59" $port = "10005" $connection = New-Object System.Net.Sockets.TcpClient($ipaddress, $port) if ($connecti..."
- 11:30, 12 June 2025 diff hist +207 Check Which Process is Listening on Port Tag: Visual edit: Switched
- 11:14, 12 June 2025 diff hist +763 N Check Which Process is Listening on Port Created page with "Home > Windows > Windows OS Notes > Network Port and Connectivity Testing in Windows == Check Which Process is Listening on a Port == This PowerShell command helps you identify which process is using a specific local port. === Steps === # Open '''PowerShell''' as Administrator. # Run the following command: ------ Get-Process -Id (Get-NetTCPConnection -LocalPort 10005).OwningProcess ----- # This will return the process name and details us..."
- 10:45, 12 June 2025 diff hist +118 Network Port and Connectivity Testing in Windows Tag: Visual edit: Switched
- 10:45, 12 June 2025 diff hist +255 N Network Port and Connectivity Testing in Windows Created page with "Home > Windows > Windows OS Notes > Network Port and Connectivity Testing in Windows *Check Which Process is Listening on Port *Test Connectivity to Remote Machine Port *Test-NetConnection Cmdlet Reference and Usage" Tag: Visual edit: Switched
- 10:43, 12 June 2025 diff hist +175 N Windows OS Notes Created page with "Home > Windows > *Windows OS Notes *Network Port and Connectivity Testing in Windows Home > Windows > *Windows OS Notes"
- 10:22, 12 June 2025 diff hist +22 Windows Tag: Visual edit: Switched
- 06:30, 22 May 2025 diff hist +5 Changing RDP port on a Windows machine and create a new port allow rule in Windows firewall →Restart the Server current
- 06:29, 22 May 2025 diff hist +2,773 N Configuring Windows firewall to allow access to file shares only from specific source IPs Created page with "Home > Windows > Windows Defender Firewall > Configuring Windows firewall to allow access to file shares only from specific source IPs To secure a Windows file server, you can configure the firewall to allow file sharing (SMB) access '''only from trusted IP addresses'''. This prevents unauthorized access from other devices on the network. First, enable File and Printer Sharing, then restrict the SMB rules in the firewall by specifying only th..." current
- 06:03, 22 May 2025 diff hist +3,380 N Changing RDP port on a Windows machine and create a new port allow rule in Windows firewall Created page with "Home > Windows > Windows Defender Firewall > Changing RDP port on a Windows machine and create a new port allow rule in Windows firewall == Changing the RDP Port == Changing the RDP (Remote Desktop Protocol) port means modifying the default port (3389) used for remote connections to a Windows machine. === Purpose === * To enhance security by avoiding the commonly known default RDP port (3389). * To reduce exposure to automated port scannin..."
- 05:49, 22 May 2025 diff hist +1,411 N Configuring Windows firewall to block all outgoing connections Created page with "Home > Windows > Windows Defender Firewall > Configuring Windows firewall to block all outgoing connections == Block All Outbound Traffic == Block All Outbound Traffic is a firewall rule in Windows that prevents all outbound network traffic unless a specific rule allows it. This is typically used in highly secure environments where strict control over data leaving the system is required. Creating this rule ensures no applications can access th..." current
- 05:43, 22 May 2025 diff hist +399 N Windows Defender Firewall Created page with "Home > Windows > Windows Defender Firewall *Configuring Windows firewall to block all outgoing connections *Changing RDP port on a Windows machine and create a new port allow rule in Windows firewall *Configuring Windows firewall to allow access to file shares only from specific source IPs Home > Windows > Windows Defender Firewall" current
- 05:37, 22 May 2025 diff hist +30 Windows Tag: Visual edit: Switched