I\'m trying to build an MSBuild script that maps a network drive to a drive letter in the script, but unfortunately the path to the target folder includes an embedded space. Th
You can use single quotes for command ,e.g.
<Exec Command='explorer.exe "$(DestinationDir)"' IgnoreExitCode="true" />
(From MSBuild exec task without blocking)
Use " to encode the double quotes that you want net
to see inside the Command
attribute value :
<Exec Command="net use x: "\\ofmapoly703\c$\program files\ar\iap" /user:$(UserID) $(Password)"
WorkingDirectory="c:\"
ContinueOnError="false"
/>