As many remote storage solutions now provide a WebDav access (from Sharepoint to Nextcloud), having the ability to natively upload and download files from a WebDav Server on Windows Server 2016 may be useful.
As opposed to the previous versions, you do not need to install the Desktop Experience feature to make this available on Windows Server 2016. However you’ll need a reboot and to tweak some services.
Start by installing the feature called “WebDav-Redirector”.
1 |
Install-WindowsFeature WebDav-Redirector -Restart |
The reboot is mandatory so if you don’t specify the restart parameter, you’ll get this error :

In fact, the reboot is needed as the package is made of a service and a driver, and they’re not installed unless you reboot:

For some unknown reason, the services are set to be manual triggered. If you want to have them for any task, you must set them as ‘automatic’:

1 |
@('WebClient','MRxDAV') | Foreach-Object { Set-SErvice $_ -StartupType Automatic } |
Then you’ll be able to issue commands such as :
1 |
net use * \\live.sysinternals.com |