can cfconfig not use UNC paths? if I do somethin...
# box-products
u
can cfconfig not use UNC paths? if I do something like cfconfig show from=\\server1\c$\cf2018\cfusion fromFormat=adobe@2018 it will tell me the CF home directory doesnt exist. but if I map the drive with the same path. it works ok.
b
@uiswjd0 it should work
I tested it as one point, but I don't use it regularly so perhaps something got broken
UNC support is universal to CommandBox in general-- CFConfig itself doesn't really do anything to support it.
Oh wait, I know what it is
you're command is wrong
You need to escape your backslashes
This is a common mistake
Copy code
\\server1
becomes
Copy code
\server1
So you need to actually use
Copy code
\\\\server1
to preserve both of the backslashes
u
ah... your the man.. ty
👍 1