Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Contact
  • Reviews
  • Toggle search form

Debugging: How to debug a PowerShell script

Posted on 22/10/202025/03/2024 IT Expert By IT Expert No Comments on Debugging: How to debug a PowerShell script
  1. Home
  2. Windows
  3. Debugging: How to debug a PowerShell script
PowerShell script debugging

Debugging is the process of finding and resolving issues within a computer program (software). In this article, I will be discussing some steps that you can employ to debug and fix issues in your PowerShell script. Kindly take a look at some articles on PowerShell that I have created. How to automate Windows Update with PowerShell and Task Scheduler, how to install Microsoft PSWindowsUpdate module Silently (unattended) mode.

Debugging pauses the execution code and runs the code either line by line or in whatsoever fashion you desire. The Debug-Process cmdlet attaches a debugger to one or more running processes on a local computer. This cmdlet attaches the debugger that is currently registered for the process.

Reasons to debug a script by a System Administrator

Here are a few reasons, why a System Administrator would decide to debug a script

  • To troubleshoot the errors and to help determine the cause of an error and have it fixed.

    To see how code runs and understand it better, especially if you are not the one who wrote it in the first place.
  • To debug a PowerShell script, follow the steps below. Before you start debugging, you must set one or more breakpoints. You cannot set a breakpoint unless the script is saved.

Now you want to set one or more breakpoints by selecting the line of code where you want to place the breakpoint and then right-click on “Toggle Breakpoint” or press F9. I am using this script from the Windows Update Policy for this demonstration.

A breakpoint is a designated spot in a script where you would like the operation to pause so that you can examine the current state of the variables and the environment in which your script is running.

Once your script is paused by a breakpoint, you can run commands in the Console Pane to examine the state of your script.

troubleshoot PowerShell script

Run the code by pressing F5 or make a call to the script and the code will run as usual until it reaches a breakpoint that will switch to debugging mode and we can go through the code to debug it.

We can continue line by line by pressing F11 “Step Into” as shown in the image below. If the current statement is a function or a script call, then the debugger steps into that function or script, and we can continue debugging in that function.

PowerShell debugging tasks

To fully leverage and understand the debugging functionality of PowerShell, let’s review some of its debugging tasks as shown below.

TaskDescriptionShortcut
Step IntoExecutes the current statement and then stops at the next statement. If the current statement is a function or script call, then the debugger steps into that function or script, otherwise it stops at the next statement.Press F11 or, on the Debug menu, click Step Into, or in the Console Pane, type S and press ENTER.
Step OverExecutes the current statement and then stops at the next statement. If the current statement is a function or script call, then the debugger executes the whole function or script, and it stops at the next statement after the function call.Press F10 or, on the Debug menu, click Step Over, or in the Console Pane, type V and press ENTER.
Step OutSteps out of the current function and up one level if the function is nested. If in the main body, the script is executed to the end, or to the next breakpoint. The skipped statements are executed, but not stepped through.Press SHIFT+F11, or on the Debug menu, click Step Out, or in the Console Pane, type O and press ENTER.
ContinueContinues execution to the end, or to the next breakpoint. The skipped functions and invocations are executed, but not stepped through.Press F5 or, on the Debug menu, click Run/Continue, or in the Console

Debugging a PowerShell script

Note: Here are some additional tasks that can be performed while debugging your PowerShell script.

Remove All Breakpoints: If you think you might want to use it again, consider disabling the Breakpoint instead.

Disable All Breakpoints: Disabling a breakpoint does not remove it; it turns it off until it is enabled. To disable a specific line breakpoint, right-click the line where you want to disable a breakpoint, and then click Disable Breakpoint.

List breakpoints: Displays all breakpoints in the current Windows PowerShell session.

If we want to remove the breakpoint click on that line of code and press F9. Basically, F9 is to turn on and off the breakpoint on the line where is a cursor or mouse point.

Note: Debugging in the ISE is great because you can use keyboard shortcuts to set breakpoints on various lines of code. When you hit that breakpoint, it shows up in the ISE, making it easier to tell where you are. The following table lists the keyboard shortcut.

Other tools

There are many other tools out there, but I will mention a few.

1. PS Script Analyzer

PSScriptAnalyzer provides script analysis and checks for potential code defects in the scripts by applying a group of built-in or customized rules on the scripts being analyzed. See this guide for more information on “How to perform PowerShell syntax check with PSScriptAnalyzer“.

Note: I do not recommend the manual download of PS Script Analyzer, as the file won’t be unpacked, and won’t include any dependencies. You can simply use the command below by copying and pasting to install this package using PowerShellGet.

Install-Module -Name PSScriptAnalyzer -RequiredVersion 1.11.0

2: Pester

Pester is a test framework for PowerShell. It provides a language that allows you to define test cases, and the Invoke-Pester cmdlet to execute these tests and report the results.

I hope you found this blog post helpful. Please let me know in the comment session if you have any questions.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Tags:PowerShell, PowerShell version 7, troubleshooting, Windows 10, Windows Server 2016

Post navigation

Previous Post: Difference between testing and debugging
Next Post: Open the location of a Program: How to search in Windows 10 to find a file, folder, or program in File Explorer

Related Posts

  • onedrived43
    How to share Files and Restore Previous versions of Files in Microsoft OneDrive Backup
  • Featured image dataTransfer.
    How to transfer data from an old PC to a new PC Windows
  • screenshot 2020 02 09 at 21.47.28
    How to find Computer Model and Serial Number Windows
  • windows 10 technical preview windows 10 logo microsoft 97543 1920x1080
    Windows Editions: Various Operating Systems available for Windows Windows
  • How to Hide or Fix HP Printer Updates Windows Error 0x800f020b
    Hide Windows Updates: How to Hide or Fix HP Printer Windows Updates Error 0x800f020b Windows
  • Defender Antivirus
    Windows Defender Antivirus Management with Intune Anti-Virus Solution

More Related Articles

onedrived43 How to share Files and Restore Previous versions of Files in Microsoft OneDrive Backup
Featured image dataTransfer. How to transfer data from an old PC to a new PC Windows
screenshot 2020 02 09 at 21.47.28 How to find Computer Model and Serial Number Windows
windows 10 technical preview windows 10 logo microsoft 97543 1920x1080 Windows Editions: Various Operating Systems available for Windows Windows
How to Hide or Fix HP Printer Updates Windows Error 0x800f020b Hide Windows Updates: How to Hide or Fix HP Printer Windows Updates Error 0x800f020b Windows
Defender Antivirus Windows Defender Antivirus Management with Intune Anti-Virus Solution

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • image 92
    Install Let’s Encrypt Wildcard SSL Certificate in cPanel using Certify Configuration Management Tool
  • Cyclic Redundancy
    Cyclic Redundancy: Resolve Data Error on Inaccessible Hard Drive Windows
  • ddedw
    You require permission from trustedinstaller: How to delete or rename files protected by Trusted Installer Network | Monitoring
  • zoom 2
    How to stop Zoom App from launching automatically at startup on Mac Mac
  • posfix as an smtp server
    How to Install and Configure Postfix as a Send-Only SMTP Server Linux
  • Screenshot
    How to change the Windows Pagefile Size Windows Server
  • maxresdefault
    Error 0x8007232B: Can’t activate Windows on this device as we can’t connect to your organization’s activation server Windows
  • 785509289 780x439
    Integrate Pleasant Password Server with Active Directory Password Manager

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,791 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.