Created
March 7, 2020 18:08
-
-
Save rossarioking/6a7bdc110fad467413928e419f4637ee to your computer and use it in GitHub Desktop.
Creating PowerShell Transcripts #PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create Folder where transcript files will be saved, | |
md C:\Transcripts | |
#This captures all of the console data and outputs it to a transcript file. | |
Start-Transcript -path .\Transcripts\Mytranscript.txt -append | |
# All Data inbetween these commands will be written to the trascript file. | |
#Stops recording Transcript input. | |
Stop-Transcript |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment