Announcement

Collapse
No announcement yet.

.VBS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • .VBS

    When I run a .vbs from tools i.e. "C:\scripts\sample.vbs" %E% it sais ir is not a reconized win32 app. What do I do?

  • #2
    Re: .VBS

    Try using it like this:

    cscript "C:\scripts\sample.vbs" %E%

    If that doesn't work, try this:

    cmd /c cscript "C:\scripts\sample.vbs" %E%

    Comment

    Working...
    X