mkdocs/docs/windows_pw.md
francesco 9aab550a91
All checks were successful
continuous-integration/drone/push Build is passing
Refactor Network
2021-05-24 15:39:23 +02:00

21 lines
517 B
Markdown

# Windows Powershell
## Test NetConnection
From Module [NetTCPIP](https://docs.microsoft.com/en-us/powershell/module/nettcpip/?view=windowsserver2019-ps)
[Windows Documentation](https://docs.microsoft.com/en-us/powershell/module/nettcpip/test-netconnection?view=windowsserver2019-ps)
```powershell
Test-NetConnection
[[-ComputerName] <String>]
-Port <Int32>
[-InformationLevel <String>]
[<CommonParameters>]
```
Example
```powershell
Test-NetConnection -ComputerName 192.168.1.123 -Port 3389
```