Link to home
Start Free TrialLog in
Avatar of E=mc2
E=mc2Flag for Canada

asked on

What program can look at a script and indicate where a problem is?

I would like to use a program that would examing a vbs, powershell or batch script and try to indicate where an error might be in the code.
Especially useful where echo is off and one needs to see where there is a problem in a script.
Is there such a Windows program or editor which can breakdown the script and tell you where there might be problems?
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

Something like Powershell ISE (Integrated Scripting Environment) can detect and will show you when you have improper syntax and outlines issues underlining in red. This is built-in to all windows machines. You also need to be running at least powershell v2.0 for ISE to be available.

Will.
SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of E=mc2

ASKER

Have not tried any yet but looks comprehensive, thanks.