• Our Services & Products
    • Corporate desktop wallpaper packages
    • SCCM Task Sequence Orchestrator
    • SCCM Reports
  • About Us
  • Get in touch
  • Privacy
    Sign in
    • Our Services & Products
      • Corporate desktop wallpaper packages
      • SCCM Task Sequence Orchestrator
      • SCCM Reports
    • About Us
    • Get in touch
    • Privacy

    Category: PowerShell

    Network Drive Inventory Report using SCCM

    SCCM Network drives inventory. List all user network mapped drives

    Topaz George 5 May 2020
    3 Comments
    Install software updates PowerShell script

    Install Microsoft Updates using PowerShell

    Topaz George 29 April 2020
    0 Comments

    A PowerShell script to list all installed Microsoft Windows Updates

    Topaz George 29 April 2020
    8 Comments

    Your first PowerShell scripts | Gaining more understanding

    It is true that “A Journey of a Thousand Miles Begins with a Single Step” I had to start a few years ago; this was…

    Luna Stella 27 April 2020
    3 Comments

    Record your PowerShell session | Start-Transcript

    According to Microsoft docs, the Start-Transcript cmdlet creates a record of all or part of a PowerShell session to a text file. The transcript includes…

    Luna Stella 24 April 2020
    0 Comments

    © 2023 - osd365 limited

    Forum Description

    According to Microsoft docs, the Start-Transcript cmdlet creates a record of all or part of a PowerShell session to a text file. The transcript includes all command that the user types and all output that appears on the console. As a Systems consultant who uses PowerShell all day everyday; I want to record all the commands that I run, either to reuse them or to capture them as proof of execution. 'Start-Transcript' cmdlet in my opinion is one of the best cmdlets out there. This is how you use it. Open PowerShell. Type the name of the cmdlet and point at a path you'd like to transcribe to.
    start-transcript cmdlet
    Now you're all set to transcribe. Every thing you see on your screen will be transcribed. The below image shows 4 commands executed. The final command "Stop-Transcript" stops the transcribing process and writes the content of the screen to the file specified in step 1. The final transcription will like the below image.