This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Windows IP Config | |
| ipconfig | |
| Get-NetIPAddress -AddressFamily IPV4 -InterfaceAlias Wi-Fi | Select IPAddress | |
| # When you want to download a list of files in files.txt having header as `sources,` | |
| Import-Csv .\files.txt | Start-BitsTransfer | |
| # Ping equivalent in PS | |
| Test-Connection -ComputerName (hostname) -Count 1 |