Welcome Guest ( Log In | Register )



 
Reply to this topicStart new topic
> Get User Input From Vbscript For Batch Files, Get user input from vbscript
netc0n
post Feb 8 2006, 05:35 PM
Post #1


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 5
Joined: 6-February 06
Member No.: 11,120



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 -
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 -
CODE
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.
Go to the top of the page
 
+Quote Post
iGuest
post Mar 20 2008, 08:57 PM
Post #2


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



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
Go to the top of the page
 
+Quote Post
iGuest
post Jul 13 2008, 10:44 AM
Post #3


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



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
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Batch Files(20)


 



- Lo-Fi Version Time is now: 12th October 2008 - 09:18 AM