You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, when we try to map to a directory with spaces in the name, e.g. \\servername.domain.com\folder1\some folder we got an error The specified network resource or device is no longer available.
The reason for that is that suddenly there are quotes around the directory name and the Trim functions in /flexvolume/windows/plugins/microsoft.com~smb.cmd/flexvolume.ps1 do not work correctly. The @JSON variable contains a beginning quote, but not ending one.
We fixed it with two edits. One in line 241, adding another Trim at the end:
Hi, when we try to map to a directory with spaces in the name, e.g.
\\servername.domain.com\folder1\some folder
we got an errorThe specified network resource or device is no longer available
.The reason for that is that suddenly there are quotes around the directory name and the Trim functions in
/flexvolume/windows/plugins/microsoft.com~smb.cmd/flexvolume.ps1
do not work correctly. The @JSON variable contains a beginning quote, but not ending one.We fixed it with two edits. One in line 241, adding another Trim at the end:
and secondly with adding quotes around the remotepath in line 128:
The text was updated successfully, but these errors were encountered: