# Powershell Commands ```ps1 Get-Location # Gets information about the current working location or a location stack Set-Location -Path # change current working directory to specified path (DEFAULTs to ~) Get-ChildItem -Path # Gets the items and child items in one or more specified locations. Get-Content -Path # Gets the content of the item at the specified location Write-Output # Send specified objects to the next command in the pipeline. If the command is the last in the pipeline, the objects are displayed in the console Write-Host # Writes customized output to a host. Clear-Host # clear shell output New-Item -ItemType File -Path filename.ext # create empty file New-Item -Path folder_name -Type Folder # create a folder New-Item -ItemType SymbolicLink -Path .\link -Target .\Notice.txt # create a symlink Move-Item -Path -Destination # move and/or rename files and folders Copy-Item -Path -Destination # copy (and rename) files and folders Test-Path "path" -PathType Container # check if the existing path exists and is a folder Test-Path "path" -PathType Leaf # check if the existing path exists and is a file # start, list , kill processes Start-Process -FilePath # open a file with the default process/program Get-Process # Gets the processes that are running on the local computer Stop-Process [-Id] [-Force] [-Confirm] # Stops one or more running processes # network Get-NetIPConfiguration # Gets IP network configuration Test-NetConnection # Sends ICMP echo request packets, or pings, to one or more computers # compressing into archive Compress-Archive -LiteralPath -DestinationPath # destination can be a folder or a .zip file Compress-Archive -Path -Update -DestinationPath # update existing archive # extraction from archive Expand-Archive -LiteralPath -DestinationPath Expand-Archive -LiteralPath # extract archive in folder named after the archive in the root location # filtering stdout/stder Select-String -Path -Pattern # Finds text in strings and files ```