Solved Mapping OneDrive Business to a drive letter
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
So, update on my original topic.
@coliver said in Mapping OneDrive Business to a drive letter:
This is the script I am using. It works fairly well.
This script apparently broke about 3-4 months ago because of something that MS has changed within their systems. However, the author suggested IAM Cloud Drive Mapper for production use. If you use him as a reference, you get 25% off for the first year.
I am trying it out for 2 weeks, but it requires a client on the person's computer along with some alterations to the registry of the RDP servers. Not entirely comfortable with that.
My next option would be to place a shortcut on the desktop that will point to OneDrive for Business for the user to upload their files.
Hmm I JUST used it with no issue.
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
This script apparently broke about 3-4 months ago because of something that MS has changed within their systems. However, the author suggested IAM Cloud Drive Mapper for production use. If you use him as a reference, you get 25% off for the first year.
Did you try the script? I've been using it non-stop (and upgrading it) for the past 1-1.5 years. On my work computer to connect to my onedrive system. Not sure what changed but it doesn't appear to be affecting me.
-
@carnival-boy said in Mapping OneDrive Business to a drive letter:
@nerdydad said in Mapping OneDrive Business to a drive letter:
I am trying it out for 2 weeks, but it requires a client on the person's computer along with some alterations to the registry of the RDP servers. Not entirely comfortable with that.
Yuck. You're right to be uncomfortable. And, of course, at some point Microsoft will change something else and it will break this too.
That's sadly accurate.
-
@scottalanmiller said in Mapping OneDrive Business to a drive letter:
Did you try sync clients? The problem with moving away from mapped drives is like moving away from relational databases... we only define what we are "not" doing but there are many options of alternatives. So it's not one things versus another, it's one thing vs everything else.
What we do for our own is sync clients which allows our users to have local folders just like they are used to, and local speeds that are faster than mapped drives, and work offline for mobility.
Downside is local storage is used.
How do you deal with a large'ish shared drive?
We have a 100 GB (yeah I know not huge) shared drive. If everyone synced that, what would my chances of having a problem caused by two people editing the same file? We have many documents that are edited by many people. So this collision would be a huge problem for us.
in otherwords - does file lock go across these sync'ed files in Sharepoint/NC? -
With the wonderful help of @JackCPickup, we were able to use the script previously mentioned that I thought broke. One of my coworkers has been able to confirm that it works for them as well, as is. Perfect!
Now, next task is to automate the execution of the script when the user logs in.
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
With the wonderful help of @JackCPickup, we were able to use the script previously mentioned that I thought broke. One of my coworkers has been able to confirm that it works for them as well, as is. Perfect!
Now, next task is to automate the execution of the script when the user logs in.
You'll also need to run it when the login token expires. Not sure if you force your users to logout after a certain period of time or not.
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
With the wonderful help of @JackCPickup, we were able to use the script previously mentioned that I thought broke. One of my coworkers has been able to confirm that it works for them as well, as is. Perfect!
Now, next task is to automate the execution of the script when the user logs in.
SUCCESS!!!
I threw the script into my SysVol. Then threw this little snippit into my batch file
@start powershell.exe -Command ". '\\<AD Server>\sysvol\<Domain>\scripts\OneDriveMapper.ps1'"
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
@nerdydad said in Mapping OneDrive Business to a drive letter:
With the wonderful help of @JackCPickup, we were able to use the script previously mentioned that I thought broke. One of my coworkers has been able to confirm that it works for them as well, as is. Perfect!
Now, next task is to automate the execution of the script when the user logs in.
SUCCESS!!!
I threw the script into my SysVol. Then threw this little snippit into my batch file
@start powershell.exe -Command ". '\\<AD Server>\sysvol\<Domain>\scripts\OneDriveMapper.ps1'"
Is it a sync, or does it map it without synchronizing all the OneDrive contents locally? A remote-only mapping would be great, or did I miss that somewhere above?
-
I've seen issues with users who have multiple devices, where their OneDrive would fill up their hard drive on another device with less disk space.
And it's impossible to go around to hundreds of computers to customize OneDrive folder content sync settings.
-
These are all just webDAV pointers without synchronizing OneDrive to all of the computers.
You are correct. We couldn't afford the storage that it would take for us to sync up everybody's OneDrive profiles across all of our servers, plus the backups that it would cost us. Dedup would help, but wouldn't be enough.
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
These are all just webDAV pointers without synchronizing OneDrive to all of the computers.
You are correct. We couldn't afford the storage that it would take for us to sync up everybody's OneDrive profiles across all of our servers, plus the backups that it would cost us. Dedup would help, but wouldn't be enough.
Onedrive has gotten better with Files on Demand but I would only recommend for user's individual files, not file shares. There is no file locking, and its just a mess for larger data sets. Those webdav scripts are a joke, wasted a lot of time on it. Your users will hate you.
For situations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
-
@nerdydad said in Mapping OneDrive Business to a drive letter:
You are correct. We couldn't afford the storage that it would take for us to sync up everybody's OneDrive profiles across all of our servers, plus the backups that it would cost us. Dedup would help, but wouldn't be enough.
Why would you back it up more than once?
-
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
-
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
Sharepoint versioning doesn’t help in an excel spreadsheet that is constantly being updated, there would just be versions with disparate data.
Azure Files on a decent internet connection feels just like a file server. Was skeptical at first but haven’t had any issues yet.
-
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
Sharepoint versioning doesn’t help in an excel spreadsheet that is constantly being updated, there would just be versions with disparate data.
Azure Files on a decent internet connection feels just like a file server. Was skeptical at first but haven’t had any issues yet.
Oh believe me, a real file server is way better and yes it would render better results.
-
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
Sharepoint versioning doesn’t help in an excel spreadsheet that is constantly being updated, there would just be versions with disparate data.
Azure Files on a decent internet connection feels just like a file server. Was skeptical at first but haven’t had any issues yet.
Oh believe me, a real file server is way better and yes it would render better results.
Nothing like telling customers they are getting upgraded to the cloud only to realize their synced folder sucks compared to their 10 year old file server lol.
-
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
Sharepoint versioning doesn’t help in an excel spreadsheet that is constantly being updated, there would just be versions with disparate data.
Azure Files on a decent internet connection feels just like a file server. Was skeptical at first but haven’t had any issues yet.
Oh believe me, a real file server is way better and yes it would render better results.
Nothing like telling customers they are getting upgraded to the cloud only to realize their synced folder sucks compared to their 10 year old file server lol.
Yeah, and a lot of special characters limitations.
-
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
Sharepoint versioning doesn’t help in an excel spreadsheet that is constantly being updated, there would just be versions with disparate data.
Azure Files on a decent internet connection feels just like a file server. Was skeptical at first but haven’t had any issues yet.
Oh believe me, a real file server is way better and yes it would render better results.
Nothing like telling customers they are getting upgraded to the cloud only to realize their synced folder sucks compared to their 10 year old file server lol.
Synced folders should have local speed. That sounds like a Windows syncing problem if they aren't screaming fast.
-
@scottalanmiller said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
@dbeato said in Mapping OneDrive Business to a drive letter:
@bigbear said in Mapping OneDrive Business to a drive letter:
ituations like these I have been using Azure Files. The SMB 3.0 stuff allows you to map drives directly to the cloud and you get the usual SMB features (and file locking). You can also install a premise server for caching of larger active datasets. SMB 3.0 includes all the good stuff from the Storsimple acquisition. Combine with Azure Domain Servers and Azure Active Directory, lots of options.
For that, I would recommend enabling Recycle Bin of the whole Sharepoint Share and also users will get versioning instead of locking as you stated.
Sharepoint versioning doesn’t help in an excel spreadsheet that is constantly being updated, there would just be versions with disparate data.
Azure Files on a decent internet connection feels just like a file server. Was skeptical at first but haven’t had any issues yet.
Oh believe me, a real file server is way better and yes it would render better results.
Nothing like telling customers they are getting upgraded to the cloud only to realize their synced folder sucks compared to their 10 year old file server lol.
Synced folders should have local speed. That sounds like a Windows syncing problem if they aren't screaming fast.
Not talking about speed, that’s fine. The lack of file locking for many small businesses the use excel heavily is insurmountable. Opening in multi user mode is a possible solution but even for me has been unreliable.
Also no support for virtual desktops without profile containers is a deal breaker for me as you know love my Remote Desktop Servers...
-
@bigbear said in Mapping OneDrive Business to a drive letter:
Also no support for virtual desktops without profile containers is a deal breaker for me as you know love my Remote Desktop Servers...
Not sure how OneNote does it, but we use NextCloud with remote desktop and it works great.