Skip to content

Instantly share code, notes, and snippets.

@rossarioking
Created March 7, 2020 18:08
Show Gist options
  • Save rossarioking/6a7bdc110fad467413928e419f4637ee to your computer and use it in GitHub Desktop.
Save rossarioking/6a7bdc110fad467413928e419f4637ee to your computer and use it in GitHub Desktop.
Creating PowerShell Transcripts #PowerShell
#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