Difference between revisions of "Powershell Fundamentals"

From rbachwiki
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 everthing that is typed
  Start-Transcript // will start a log transcript of everything that is typed
  Stop-Transcript // stop the transcirpt
  Stop-Transcript // stop the transcript
  transcript file is stored in MyDocuments
  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

Keyboard Shortcut