# Deploying from windows

**URL:** https://discourse.roots.io/t/deploying-from-windows/4434
**Category:** trellis
**Created:** 2015-08-07T14:46:44Z
**Posts:** 14
**Showing post:** 5 of 14

## Post 5 by @matth — 2015-09-04T08:37:14Z

Thanks for the message, much appreciated. Will check this out shortly.

I had previously posted regarding performance, which indeed made the development process unbearable. I have successfully resolved this using winnfs

```
$ vagrant plugin install vagrant-winnfsd
```

And amended the VagrantFile to set the synced\_folder call for windows to use nfs

```
config.vm.synced_folder local_site_path(site), remote_site_path(name), owner: 'vagrant', group: 'www-data', mount_options: ['dmode=776', 'fmode=775']
```

becomes…

```
config.vm.synced_folder local_site_path(site), remote_site_path(name), type: 'nfs'
```

You should find the performance is vastly better using this rather than shared folders.

---

_[View the full topic](https://discourse.roots.io/t/deploying-from-windows/4434)._
