example
get.bat read this.txt
with parameter %O it wil give read
if paramater is change to "%O" it wil give "read this"
I want: read this
Source of get.bat

@echo off
echo. %1
I hope that I have explain it well..
Moderators: Hacker, petermad, Stefan2, white
I had this problem. If i remember correctly, i used ""%O"" to pass the quotes too. Does it help?cieke wrote:In the menubar where you can create your own buttons, I have the following problem: I want to use a batch file with parameters (%O) but without "" (quotes) with long filenames:
example
get.bat read this.txt
with parameter %O it wil give read
if paramater is change to "%O" it wil give "read this"
I want: read this
Source of get.bat
@echo off
echo. %1
I hope that I have explain it well..
Nope, that wont work, But I've got the solution from squa wizard..wanderer wrote: I had this problem. If i remember correctly, i used ""%O"" to pass the quotes too. Does it help?