Difference between revisions of "Powershell Fundamentals"

From rbachwiki
Jump to navigation Jump to search
Tag: Reverted
Line 15: Line 15:
  CTRL SHIFT W Closes Panes
  CTRL SHIFT W Closes Panes
== Help ==
== Help ==
<p> Use <span> Get-Help </span> followed by the service name </p>
<p> Use <span class="yp"> Get-Help </span> followed by the service name </p>
  Get-Help Get-Service
  Get-Help Get-Service

Revision as of 14:47, 17 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 horizontally (WILL NOT WORK WITH THE NUMBER KEYPAD)
ALT-SHIFT - (MINUS) // Split panes vertically (WILL NOT WORK WITH THE NUMBER KEYPAD)
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

Help

Use Get-Help followed by the service name

Get-Help Get-Service