Debugging breakpoints - Step in functionality

The script debugger enables you to pause the execution at a specific position in the script. For example, you can set a break point to execute when the variable containing the display name of the service is “Messenger”.

To do this in the example script, you would go to line 17 (“echo("Service Name= ")”), and put the break point (Press F9) just under the “if” statement. During execution use the F10 key (step in) to execute the remaining code line by line.