How to pass a parameter that has double quotation marks in vbs
Atalho.Arguments = ""args.ext""
How to pass a parameter that has double quotation marks in vbs
Atalho.Arguments = ""args.ext""
With double quotation marks, this will escape the quotes and generate the value as "args.ext"
.
Atalho.Arguments = """args.ext"""