49 questions
0 votes
2 answers
188 views
How to Get Share Name Containing File
Does a means exist, ideally in or from VBA (directly or via Win32, PowerShell, VBS, WMI, or CMD call), to programmatically return / get the first Windows share name containing a fully qualified local ...
1 vote
0 answers
826 views
How to transfer file via windows share from Android MAUI app?
I would like to be able to run commands on the command prompt on a windows pc from an Android phone. I am currently doing it by a wpf app on windows which listens for files with .dev in their file ...
1 vote
0 answers
31 views
Enumerating a folder on Windows share throwing FileNotFoundException while sub folder getting deleted in parallel
I have a Java method that looks at a folder on Windows share and delete any sub folder whose modification timestamp is 2 days or more ago. Basically delete stale directories as this is a staging ...
1 vote
0 answers
37 views
Accessing windows network share as logged in user from a web app?
After a user logs in to my web app (authenticating against Active Directory/LDAP) I need to connect to a windows network share on the same network (with their credentials/impersonating them) and ...
1 vote
1 answer
538 views
Ansible Yaml list conversion for winshare
Im trying to modify winshare permissions depending on yaml list that follows: Name: path: C:\sharepath Full: - DOMAIN\USER - DOMAIN\USER2 I have imported that list to my ansible code - ...
1 vote
0 answers
42 views
msaccess laccdb lock file on network share [duplicate]
I have a simple access database file that works perfectly fine on a local drive in a local folder. If I share that exact same folder, then map that folder on the same computer, the laccdb lock file ...
0 votes
1 answer
209 views
Writing file denied
I am getting an error writing a file, that is driving me crazy. I have an C# netcore 5 application running on RH Linux. I mounted an shared folder (windows) using: sudo mount -t cifs -o username=...
5 votes
2 answers
514 views
Do multiple instances of git operating on the same repository create problems?
My Employer just now is switching to git, so my cowokers are still somewhat inexperienced. What they did now, concerned me, so I'm writing this up. They cloned a git repository on a machine, then ...
1 vote
1 answer
1k views
Using local accounts in windows docker container to access machines on the same network
I have a Windows machine, machine 1 on a network with a local account called testlocal. I have another machine, machine 2 on the network with the same local account, testlocal. From my machine 1, I ...
-1 votes
1 answer
7k views
How to access network drive folder using credentials in php?
I am working on a php code as shown below in which I want to access network drive folder (music) using credentials in php. The credentials is being set because I want to give the full access only to a ...
1 vote
2 answers
5k views
mount error(13): Permission denied - In docker/kubernetes
I'm fairly new to kubernetes and docker, so be patient with me. I am trying to mount a Windows share in linux which is contained in docker, which is a kubernetes pod. I managed to get all the correct ...
1 vote
2 answers
737 views
Powershell leaving RemoteDrive Sessions open
Minimal Question: How do I properly dispose of the remote Session Connection left behind after doing: $session = New-PSSession -ComputerName $VM -Credential $CurrentUser Invoke-Command -Session $...
3 votes
1 answer
8k views
Mounting a Windows Share into Kubernetes pods
We are migrating some windows components (.net 4.5) to Linux containers (.net core). Existing system is a file processor, which watches a shared location and processes file from there. We can't force ...
12 votes
2 answers
26k views
Using Windows SMB shares from Kubernetes deployment app
We are migrating legacy java and .net applications from on-premises VMs to an on-premises Kubernetes cluster. Many of these applications make use of windows file shares to transfer files from and to ...
1 vote
0 answers
160 views
Windows Service cannot access local share via UNC path only at boot time
My Windows Service is trying to access a local share via its UNC path on its startup. It has full permissions and path exists, I can tell that since when starting my service long after boot, ...