The Case for PowerShell.
Brief, terse, compact, too many jokes. Excellent details. Not training, rather informational. Must have scripting/automation experience to appreciate the implications of what is covered. Without that experience, the presentation could be viewed as too light-weight.
Tag: Powershell
A Friendlier Powershell Prompt
function prompt {
$user = [Environment]::UserName;
$computer = gc env:computername;
$dir = [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath;
$user + "@" + $computer + ":" + $dir + ">"
}
This post helped with the last part.