Difference between revisions of "Powershell Fundamentals"

From rbachwiki
Jump to navigation Jump to search
Line 9: Line 9:
  ALT-SHIFT + (PLUS)  // Split panes horizonatally
  ALT-SHIFT + (PLUS)  // Split panes horizonatally
  ALT-SHIFT - (MINUS) // Split panes vertically
  ALT-SHIFT - (MINUS) // Split panes vertically
CTRL + To zoom in
CTRL - To Zoom Out
ALT Arrows will jump from one pane to the next
ALT Shift Arrows will resize panes
CTRL SHIFT W Closes Panes

Revision as of 18:30, 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

ALT-SHIFT + (PLUS)  // Split panes horizonatally
ALT-SHIFT - (MINUS) // Split panes vertically
CTRL + To zoom in
CTRL - To Zoom Out
ALT Arrows will jump from one pane to the next
ALT Shift Arrows will resize panes
CTRL SHIFT W Closes Panes