Reputation: 14389
I have a Web Service running on IIS and I want to access a mapped network folder. How will I inform IIs for the mapping..
If I try to use the UNC path it outputs the error "current format not supported"...
Thank you
Upvotes: 1
Views: 1018
Reputation: 8081
If you're running Windows Server 2008 or Window 7 you can try to create a link to the UNC path.
mklink /D D:\IISFolder \\servername\sharediisfolder
The server share can then access D:\IISFolder.
If you're on older windows servers use
net use
Upvotes: 3