kinji5 Posted March 31, 2006 Posted March 31, 2006 Greetings, I am trying to make this work in a RunOnceEx.cmd file-------------------------------------------------------------------------REG ADD %KEY%\034 /V 1 /D "c:\MsnMsgs75.msi IAGREE="Yes" ADDEXPLORERTOOLBAR="" SETSEARCHENGINE="" SETHOMEPAGE="" /qb- " /f-------------------------------------------------------------------------Where do I need to add the \" ? I read serveral posts but I still can not get it to work. thanks
Yzöwl Posted March 31, 2006 Posted March 31, 2006 (edited) Simple answer…The registry data, (indicated by the /D switch), should be sat inside double quotes i.e./D "your data in here"Any double quotes needed within this data is simply prefixed with a backslash as an escape character, (\")."C:\MsnMsgs75.msi IAGREE=\"Yes\" ADDEXPLORERTOOLBAR=\"\" SETSEARCHENGINE=\"\" SETHOMEPAGE=\"\" /qb-" Edited March 31, 2006 by Yzöwl
kinji5 Posted March 31, 2006 Author Posted March 31, 2006 Simple answer…The registry data, (indicated by the /D switch), should be sat inside double quotes i.e./D "your data in here"Any double quotes needed within this data is simply prefixed with a backslash as an escape character, (\")."C:\MsnMsgs75.msi IAGREE=\"Yes\" ADDEXPLORERTOOLBAR=\"\" SETSEARCHENGINE=\"\" SETHOMEPAGE=\"\" /qb-"Thanks! that worked great! couldnt' believe it was so easy..
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now