Last active
June 6, 2023 21:59
-
-
Save stephenlauck/3dae461ac3f1a3c46504377217c52d3c to your computer and use it in GitHub Desktop.
Relative Path Powershell Notes
This file contains 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
whoami | |
pwd | |
get-location | |
hostname | |
# Show all cmdlets | |
Get-Command | |
Get-Command ls | |
Get-Command cat | |
Get-Command nano | |
get-command | out-host -paging | |
# Manual page | |
Get-Help -Name Get-Help | |
Update-Help | |
# grep | |
cat .\foo.txt | Select-String oof -Quiet | |
# install chocolatey | |
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
# install nano | |
choco install -y nano | |
# refresh env | |
Import-Module "$env:ProgramData\chocolatey\helpers\chocolateyInstaller.psm1"; Update-SessionEnvironment | |
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
echo "foo" > file.txt
redirection
cat file.txt
cat PATHTOFILE
environment variables
dir env:
echo $Env:TMP
https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-7.3