0% found this document useful (0 votes)
639 views1 page

Windows Powershell Networking Commands

This document provides links to resources on PowerShell networking commands and examples of useful commands for Windows administrators. It includes commands to list IP addresses, processes, DNS cache, and all cmdlets, and also examples of using Get-NetIPAddress to filter by interface and Get-Process to filter by process name. Common date, history, and DNS flushing commands are also included.

Uploaded by

al
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
639 views1 page

Windows Powershell Networking Commands

This document provides links to resources on PowerShell networking commands and examples of useful commands for Windows administrators. It includes commands to list IP addresses, processes, DNS cache, and all cmdlets, and also examples of using Get-NetIPAddress to filter by interface and Get-Process to filter by process name. Common date, history, and DNS flushing commands are also included.

Uploaded by

al
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

powershell cmds

https://www.thomasmaurer.ch/2016/02/basic-networking-powershell-cmdlets-cheatsheet-
to-replace-netsh-ipconfig-nslookup-and-more/
https://blog.ittoby.com/2015/04/powershell-networking-cheat-sheet.html
https://www.infoworld.com/article/3126427/microsoft-windows/go-pro-the-power-users-
guide-to-powershell.html
https://www.techrepublic.com/blog/10-things/10-powershell-commands-every-windows-
admin-should-know/
https://technet.microsoft.com/en-us/library/ff714569.aspx

gcm *ipaddress*
lists out commands

Get-NetIpAddress
lists out all IPs

Get-NetIPAddress -InterfaceAlias "Wi-Fi"| Format-Table


list out only IPs associated with WiFi

Get-Process
list all process
Example:
Get-Process -ProcessName "chrome"
lists all chrome processes

get-dnsclientcache
ipconfig /displaydns
ipconfig /flushdns

get-command
list all cmdlets

get-date
get-history

You might also like