Difference between revisions of "Powershell Fundamentals"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
$PSVersionTable | $PSVersionTable | ||
==Get Log of session== | ==Get Log of session== | ||
Start-Transcript // will start a log transcript of | Start-Transcript // will start a log transcript of everything that is typed | ||
Stop-Transcript // stop the | Stop-Transcript // stop the transcript | ||
transcript file is stored in | transcript file is stored in My Documents | ||
==Keyboard Shortcut == |
Revision as of 17:33, 16 October 2024
Get Version
$PSVersionTable
Get Log of session
Start-Transcript // will start a log transcript of everything that is typed Stop-Transcript // stop the transcript transcript file is stored in My Documents