Search found 3 matches

by Gimson
30 Dec 2008 07:44
Forum: DOS Batch Forum
Topic: How to find a replace a string using batch script
Replies: 5
Views: 10220

"C:\\WINDOWS\\st6unst.exe -n "C:\\Program Files\\Myapp\\ST6UNST.LOG" Are you sure you need to have three quote marks here ? EDIT well, here goes : @ECHO OFF :: here goes ... SET var="C:\\WINDOWS\\st6unst.exe -n "C:\\Program Files\\Myapp\\ST6UNST.LOG" ECHO original stri...
by Gimson
30 Dec 2008 03:08
Forum: DOS Batch Forum
Topic: How to find a replace a string using batch script
Replies: 5
Views: 10220

Also i need to store the string C:\\WINDOWS\\st6unst.exe -n "C:\\Program Files\\Myapp\\ST6UNST.LOG" in a variable Thanks. For storing a registry value in a variable I guess you can try the following approach: @ECHO OFF set reg_branch="HKEY_LOCAL_MACHINE\SOFTWARE\Skype\Phone" set...
by Gimson
29 Dec 2008 06:21
Forum: DOS Batch Forum
Topic: SET command versus the cmd window input buffer
Replies: 3
Views: 11437

SET command versus the cmd window input buffer

Hi all ! I have a batch script that has certain variables used as parameters. I predefine the variables at batch file startup and then ask the user whether he would like to change the variables (default / user settings). If the values are to be left to default, the user is supposed to just press ENT...