Skip to content

Instantly share code, notes, and snippets.

View vishaldpw's full-sized avatar

Vishal Singh Chauhan vishaldpw

  • kalyan, thane
  • 21:54 (UTC +05:30)
View GitHub Profile
@vishaldpw
vishaldpw / PowershellCheatsheet.ps
Created December 20, 2023 07:25 — forked from karthiks/PowershellCheatsheet.ps
Powershell Cheatsheet
# 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