Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Windows » Debugging: How to debug a PowerShell script

Debugging: How to debug a PowerShell script

Posted on 22/10/202025/03/2024 Christian By Christian No Comments on 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

  • rdp4
    How to change the default RDP port in Windows Network | Monitoring
  • template 1
    Install Group Policy Templates for Microsoft Edge and Google Chrome browsers on Windows Windows
  • Screenshot 2022 04 02 at 22.17.10
    How to Install Kubectl on Windows 11 Windows
  • Featured image System Tray icons
    How to Fix System Tray Icons not showing in Taskbar on Windows 11 Windows
  • WonderFox Video Watermark
    Install and use WonderFox Video Watermark Windows
  • taskbar1
    Hide or Remove Search Button from Windows 11 Taskbar Windows

More Related Articles

rdp4 How to change the default RDP port in Windows Network | Monitoring
template 1 Install Group Policy Templates for Microsoft Edge and Google Chrome browsers on Windows Windows
Screenshot 2022 04 02 at 22.17.10 How to Install Kubectl on Windows 11 Windows
Featured image System Tray icons How to Fix System Tray Icons not showing in Taskbar on Windows 11 Windows
WonderFox Video Watermark Install and use WonderFox Video Watermark Windows
taskbar1 Hide or Remove Search Button from Windows 11 Taskbar Windows

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

  • tsx
    Error Code: 0x80070035: MDT unable to access the Log share, the Network Path was not found Windows
  • Featured image new 1
    Detect if an application was uninstalled on Windows: Find out who has uninstalled an application via Windows Event Viewer Windows
  • VMware Tech Showcase
    Great details on VMware Tech Showcase Virtualization
  • Slide2 3
    Sudo Error on Ubuntu: Fixing ‘unknown uid 1000: Who are you?’ Linux
  • images 3
    Install Minimal Container Templates on Proxmox Server Virtualization
  • banner 5
    How to fix Wi-Fi not connecting on Windows 11 Windows
  • Lockout7
    Change Account Lockout Threshold for Local Accounts in Windows: The reference account is locked Windows
  • Enable Hyper V on Windows 11 Create a VM with PowerShell
    Run Hyper-V on Windows 11: Convert Physical PC to Hyper-V VM Virtualization

Subscribe to Blog via Email

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

Join 1,808 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

AWS 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.