Via command line, can someone suggest ways to change directory (cd) to a SharePoint link (pointed via a xyz.lnk link)?
Asked
Active
Viewed 1,021 times
1 Answers
0
You can map a network drive to a WebDAV folder and use that drive to copy files (or whatever you would like to do).
net use z: https://<url>
cd z:
dir
I would use PowerShell to parse out the url from the .lnk file (if that is neccessary).

Martin Bäckström
- 177
- 9
-
@tako_tokyo, dont forget to mark the answer as correct if this helped you. – Martin Bäckström Jan 16 '17 at 18:45