MKS Toolkit commands support long file names with spaces by allowing the use of double quotes around a path. You can also put a backslash in front of each space.
Examples:
cd "Program Files"
cd Program\ Files
MKS Toolkit commands support UNC names in a similar way to the rest of Windows except instead of backslashes it requires forward slashes:
cd //machinename/sharepoint
You could also use:
\\\\machinename\\sharepoint
|