I'm on Windows 8.1 Enterprise and what I'm trying to do is to have a python script that will:
- Mount an NFS share for the current user
- Create a symlink in the current working directory to a drive mapped to this share
And this seems to be impossible: according to https://stackoverflow.com/questions/15320550 I have to run script as an administrator in order to create symlink. In other hand I have to mount NFS volume from the current user so it will be able to access it.
I have no idea how to make part of my script to run using the current user privileges and another part using elevated privileges.