Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Find All Disabled Breakpoints in PowerShell

$
0
0

Summary: Find all disabled breakpoints in a Windows PowerShell session.

Hey, Scripting Guy! Question How can I use Windows PowerShell to see what breakpoints are disabled in my current session?

Hey, Scripting Guy! Answer Use the Get-PSBreakPoint cmdlet, and filter breakpoints that are not enabled, for example:

Get-PSBreakpoint | where {-not ($_.enabled)}


Viewing all articles
Browse latest Browse all 3333

Trending Articles