Summary: Find all disabled breakpoints in a Windows PowerShell session.
How can I use Windows PowerShell to see what breakpoints are disabled in my current session?
Use the Get-PSBreakPoint cmdlet, and filter breakpoints that are not enabled, for example:
Get-PSBreakpoint | where {-not ($_.enabled)}