Difference between revisions of "Powershell Fundamentals"
Jump to navigation
Jump to search
(Created page with "==Get Version== $PSVersionTable") |
|||
Line 1: | Line 1: | ||
==Get Version== | ==Get Version== | ||
$PSVersionTable | $PSVersionTable | ||
==Get Log of session== | |||
Start-Transcript // will start a log transcript of everthing that is typed | |||
Stop-Transcript // stop the transcirpt | |||
transcript file is stored in MyDocuments |
Revision as of 16:52, 16 October 2024
Get Version
$PSVersionTable
Get Log of session
Start-Transcript // will start a log transcript of everthing that is typed Stop-Transcript // stop the transcirpt transcript file is stored in MyDocuments