My $profile script starts a transcript whenever it is run. I am piping the output of Start-Transcript to a variable ($log) like so: Start-Transcript -path $logFile -append > $global:log
I would like to be able to read this variable from the console. As you can see I tried explicitly setting the $log variable scope to Global (it didn't work).
For instance I would like to be able to run the following command: notepad $log1
And have the transcript open in notepad.
Is this even possible? I've been running amok in Google for about an hour, and I can't find anything with relevance to this (which probably means it can't be done, but I figured I'd ask anyway).
Alternatively, is there a way to get the path to the current transcript file some other way?