Works on: Windows 10 | Windows 8.1 | Windows 8 | Windows 7 | Windows 2012 SHA1 Hash: 2c53095d4ff955c9923ebfcbc8749c1c1e350fe5 Size: 33.02 KB File Format: zip
Rating: 1.869565217
out of 5
based on 23 user ratings
Downloads: 372 License: Free
Winput is a free software by Horst Schaeffer and works on Windows 10, Windows 8.1, Windows 8, Windows 7, Windows 2012.
You can download Winput which is 33.02 KB in size and belongs to the software category Miscellaneous. Winput was released on 2010-09-02 and last updated on our database on 2017-02-27 and is currently at version 1.25.
Thank you for downloading from SoftPaz! Your download should start any moment now. It would be great if you could rate and share:
Rate this software:
Share in your network:
Winput Description
Winput is a command line program that will offer a user an input window for batch processing. The input string will be inserted into a user defined output string, which can be redirected to a file. For example, you can send a command to a batch file like this
Example:
Winput "SET Name=$input" "Please enter your name" > temp.bat
if not errorlevel 1 call temp.bat
This will send a set statement to the file temp.bat, and after you execute this BAT file, you will have the input string in the environmental variable %name%.
You can produce and execute any other command this way, or you can simply write the input string to a file.
Arguments:
· OutputString: must include the token "$input"; will be sent to STDOUT
· PromptString: text message above input field; line feeds by caret character ("^")
· InitialString: for the input field (optional)
Notes:
The string parameters must be enclosed in double quote marks.
If you need double quote marks inside the OutputString or PromptString,
use two single quote marks (), which will be replaced.
Case ignored for the options and the $input token. All parameters and options must be separated by blank space (no commas!).
The output string comes without terminating CR+LF.