Disable-PSBreakpoint - Powershell 2.0 CmdLet
ActiveXperts Network Monitor ships with integrated Powershell scripts to monitor complex network. The scripts run out of the box
Download the ActiveXperts Network Monitor FREE version now »
Disable-PSBreakpoint
Short description Disables the breakpoints in the current console. Syntax Description The Disable-PSBreakpoint cmdlet disables breakpoints, which assures that they are not hit when the script runs. You can use it to disable all breakpoints, or you can specify breakpoints by submitting breakpoint objects or breakpoi nt IDs. Technically, this cmdlet changes the value of the Enabled property of a breakpoint object to False. To re-enable a breakpoint, use the Enable-PSBreakpoint cmdlet. Breakpoints are enabled by default when you create them by using th e Set-PSBreakpoint cmdlet. A breakpoint is a point in a script where execution stops temporarily so that you can examine the instructions in t he script. Disable-PSBreakpoint is one of several cmdlets designed for debugging Windows PowerShell scripts. For mo re information about the Windows PowerShell debugger, see about_Debuggers.