Sign in to follow this  
Followers 0
Harlock

CX-Supervisor : WScript.echo (in Subroutines)

3 posts in this topic

Greetings and thank you very much in advance to which you respond . My question is this : They can run routines WScript.echo ? For example , this simple not work for me ( by the command WScript.echo ) :   fso = CreateObject set ( " Scripting.FileSystemObject " ) if fso.FolderExists ("c : \ windows " ) then    WScript.echo "There is a folder named \ Windows" end if   Is there any way to run the commands vbscript.echo ? Thank you!

Share this post


Link to post
Share on other sites
Even WScript.Shell or similar commands? You can not make them work?  

Share this post


Link to post
Share on other sites
An example that Works : Set objShell = CreateObject("Wscript.Shell") objShell.Run "explorer.exe shell:ControlPanelFolder"  

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0