I wanted to make a quickie on how to start learning PowerShell. I hope you enjoy!
Commands:
- Get-Command
- Get-Help
- Get-Member
- Select-Object
- % is the same as foreach-Object{} and allows us to loop things
- alias shows us convenient aliases
- out-gridview so we can visualize data really quickly and easily
Extra tip for auto-completion in PowerShell:
Add file Profile.ps1 in your folder: C:\Users\ChrisDale\Documents\WindowsPowerShell\
Add content: Set-PSReadlineKeyHandler -Key Tab -Function Complete
[ Ссылка ]
Ещё видео!