Shell and quotes

I need to know more [Eek!]

Any commandline freaks out there ?

Win2k+ Shell treats quotes in a different way than the previous M$ OS's

This is a valid Shell execution in Win9x + WinNT:
Shell '%COMSPEC% /C "\\Server\Share\Oracle install\setup.exe" -responseFile "\\Server\Share\Oracle Install\Clientappuser.rsp" -nowelcome'

In Win2k+ Only one pair of quotes is allowed on the commandline by default

So how do i pass this to a Shell;
Shell '"Path\Program" -Arg1 "Path\ParameterFile" -Arg2'

Where both:
"Path\Program"
And
"Path\ParameterFile"
Contains spaces

-Erik