Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Click here to start participating now! Also, check out the New User Guide.
[Batch Help] Findstr + Set
Name: biatche Date: March 21, 2008 at 04:39:08 Pacific OS: win CPU/Ram: intel Product: intel
Comment:
say I have a file named config.ini
content of config.ini is
video=nvidia os=microsoft
=========
OK, now how do I
SET vga=$(video) SET os=$(os)
by reading config.ini
... Basically I wanna write a batch file that obtains variables from another file
Summary: Hi, I'm having a hell of a time trying to figure out why this isn't working out for me. I've reduced the program to it's simplest useful part, and I'd like to know what exactly I'm doing incorrectly. ...
Summary: To create an interactive batch use the Set /P command (Win NT/2K/XP only) Set /P MyFolder=Enter the Folder Name^> Md %MyFolder% That displays "Enter the Folder Name>" and you have to type your desider...