cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
WindChaser
Level 4

Easy question re. scripting

I have the following in a prerequisite script where I need to execute an application with line parameters:



cmdline=" /qb /settings <C:\SQLServerOptions.txt>"
/>

Using the above, I get an error but I know that the C:\SQLServerOptions.txt file is present and valid. I presume that the error has to do with the quotes. So how do I specify quote-unquote in a prerequisite script?
Labels (1)
0 Kudos
(1) Reply
Sairen
Level 7

Try using \" as your escape character. I think that should work...

cmdline=" /qb /settings \"C:\SQLServerOptions.txt\""
0 Kudos