In general, the OneDrive utility mounts the user's OneDrive folder to a directory under the logged in user's home folder.


For example, 


"C:\Users\USERNAME\OneDrive - Blue Ridge Community College"


IT staff can create a Windows login script that automatically maps the above path to a specific drive letter such as "G:".


This is particularly useful if the user has files or programs that are dependent on a particular drive letter mapping.


Example mapping script:


"

@ECHO OFF

subst G: "C:\Users\%USERNAME%\OneDrive - Blue Ridge Community College"

"