Questions tagged [shared-drive]
22 questions
3
votes
1 answer
How to obtain a list of all users with access to a Google shared drive using apps script
I used getEditors to obtain a list of editors of a spreadsheet and the returned list includes shared drive users. However, users with 'content manager' access to the shared drive are not included in the list. Any reason why this is the case?
I also…

Jabak
- 61
- 1
- 5
2
votes
0 answers
Detect changes in private Google Drive folder with Google App Script
The goal is to detect newly created Meet recording that are saved in a specific Drive folder on the private drive of an account. When a new file is detected it is then moved to a shared drive. All this with Google App Script.
I've looked around and…

YiLa
- 21
- 1
1
vote
1 answer
How to run exe available on shared drive using command prompt
I have a exe available on shared drive example "\domain.com\folder\test.exe"
How to access this path using command prompt and execute exe.
I tried "net use y: \domain.com\folder" command. It created network drive but dont know how to execute exe.

Anil
- 1,669
- 5
- 19
- 44
1
vote
0 answers
File link to Outlook item on shared drive
I'm a technical writer for my company, and we've been tasked with doing an internal knowledge database. I'm trying to take it to the next level and am absolutely stumped with this problem:
I am trying to create links to a shared drive through a CMS…

Diomedes
- 33
- 5
1
vote
1 answer
How to move a file in a shared google drive to trash using a service account
I use a service account that is content-manager. I have no problem uploading files to the shared drive using the drive-api from python. Using
service.files().list(q="name='file_name'", fields="files(id)").execute()
I obtain the file_id from my…

manu58
- 13
- 4
1
vote
1 answer
Google Drive SA accounts can't access objects on a shared disks created by other users
I would like to have an access to objects on a shared disks created by other users using SA accounts.
I discovered that by making a call to https://www.googleapis.com/drive/v3/files with the following…

user14221041
- 11
- 1
0
votes
0 answers
"[Errno 2] No such file or directory:" when reading from shared drive
I am attempting to access files from an organization-wide shared folder (H-drive). By using a normal df1 = pd.read_excel('H:\full\file\path.xlsx') gives the error [Errno 2] No such file or directory:.
The file path was directly copied from the file…

Max Duso
- 305
- 1
- 4
- 15
0
votes
1 answer
Connect to windows shared using IP address in SMB
I need to connect to Windows shared drive in Python, and for that I'm using the pysmb library.
The code I have used is as follows:
from smb.SMBConnection import SMBConnection
username = "username@domain.com"
password =…

Gary
- 31
- 1
- 6
0
votes
0 answers
How to remove organizer from the Google shared drive using Apps script
I want to remove organizer and fileOrganizer from the shared drive.
But by using the following it says deleted but the authorization of the shared drive doesn't work.
folder.removeEditor(email);
folder.removeViewer(email);
function folderOps(){
…

MaruU
- 1
- 1
0
votes
1 answer
Download file from windows shared drive faster
I need to download files from remote shared drive in my local system,
and for that I'm using pysmb library to make a connection.
The code is as follows:
import pysmb
conn = SMBConnection(username, password, client_machine_name, server_name,…

Gary
- 31
- 1
- 6
0
votes
0 answers
VBA to save to a shared OneDrive account via local shortcut
Morning, Afternoon, Evening.
What I'm trying to do.
I'm trying to save a pdf file from an excel worksheet to a folder shortcut for a shared OneDrive account. The workbook sits in the parent folder to where I want to save the pdf.The workbook sits in…

Ian
- 113
- 1
- 10
0
votes
1 answer
Unable to Determine if Root Directory Exists (shared drive)
I made a desktop application with swing gui using jdk 19. It parses the metadata of the files and then moves the files from a specific folder to a shared drive (Checks if the necessary directories exist and if not, then creates them and copies files…
0
votes
1 answer
How to get a Subfolder with the SMBLibrary in .Net Core?
So I need to acces a subfolder in Sharedrive with the SMBLibrary.
I was expecting a list of folders of the subfolder but I always get a 0 count.
SMB2Client client = new SMB2Client();
bool isConnected = client.Connect("myServername",…

AaronH2001
- 48
- 5
0
votes
0 answers
Is there a way to get Used disk space & Available space from Windows share in Prometheus
Is there a way to get Used disk space & Available space from Windows share in Prometheus?
Only on an explicitly mounted drive on a Linux machine, does it seem to work with node exporter.
100 -…

vinWin
- 509
- 1
- 5
- 18
0
votes
1 answer
Virtual Shared Driver Indexing problems
We just virtualized a Windows server in Azure and everything in working fine on Client side, but we are not being able to solve the indexing search problem.
When you have a local drive, Windows can index the path and searches works fine using…