Code Change Request

# 27285

Back to Code Changes

Christopher
Technical Support
StableBit DrivePool
Windows Home Server 2011
Public
Alex

* [Issue #27285] Added to dpcmd the ability to work with pools which are mounted through a symbolic link.

Note that when when quoting paths, \" inside double quotes means that you want to pass a double quote as part of the parameter.

For example:

Command.exe 1 "C:\Folder\"

Passes the following parameters:
  • 1
  • C:\Folder"
This is how you would pass a " as a parameter.

Command.exe 1 "C:\Folder\\"

Would pass:
  • 1
  • C:\Folder\
So in short:
  • Don't quote your paths unless there's a space in it.
  • If you have to, make sure to double the last backslash if it's before a double quote.