Jump to content
xisto Community
Sign in to follow this  
netc0n

Get User Input From Vbscript For Batch Files Get user input from vbscript

Recommended Posts

Hello, I didn't see a tutorial on this subject so i'll go ahead and do it.

Long ago I used batch file programming a quite a bit. I used vbscript files
to get user input for the batch files. So here is a simple example of using the
'call' command to call for the vbscript file which should be in the same folder as the .bat file.

in the batch file pretty much anywhere you can start the vbscript, and call another
.bat file- using @ to of course not echo the line of code -

@ start /w wscript.exe userin.vbs @ call ~anyname.bat @ del ~anyname.bat

now for the .vbs file : create userin.vbs using a text editor such as notepad -
strUserIn = InputBox("This is the the input box will say") Set fs = CreateObject("Scripting.FileSystemObject") strFileName = fs.BuildPath(Wscript.ScriptFullName & "\..", "~anyname.bat") strFileName = fs.GetAbsolutePathName(strFileName) Set ts = fs.OpenTextFile(strFileName, 2, True) ts.WriteLine "set userin=" & strUserIn ts.Close[code]Now we use what ever was typed in to execute a command.So any dos/batch command that makes sense will fit there[code]@ Batch/doscommand -A %USERIN%

And that is the basic idea of using vbs for batch files.

Share this post


Link to post
Share on other sites

question

Get User Input From Vbscript For Batch Files

 

I search for a thing like this.

I would like to open in a VBS file a custom Windows dialog box to find for a file in my computer (the custom dialog in File -> Open) and pass the path of the file to a BATCH file.

Is it possible ?

 

-reply by cgialloporpora

Share this post


Link to post
Share on other sites

how to transfer data from one folder to another automaticali using vbscript batch file

Get User Input From Vbscript For Batch Files

 

How to transfer data from one folder to another automaticali using vbscript batch file

 

-question by shrikant

Share this post


Link to post
Share on other sites
ASP Classic validation of user inputGet User Input From Vbscript For Batch FilesI have made a registration form that take the user input I need code to validate it at server side I need urgent help.-question by suman

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  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.