Linked Questions
42 questions linked to/from Map a network drive to be used by a service
1
vote
1
answer
4k
views
How to map Shared Drive for a service where the Service isn't logged in as System [duplicate]
I have a glassfish service running as a non system user. Glassfish needs to access a shared drive. How do I mount the shared drive for the glassfish service. Also, I would like this to remount at ...
0
votes
0
answers
125
views
PHP cannot access files/dirs on LAN [duplicate]
I have found similar questions but the result didn't help me.
I need to access - read, write, list files and dirs on computer in local network but php is not able to find or read it.
I use this code
$...
0
votes
0
answers
81
views
Remote monitor directory via FileSystemWatcher [duplicate]
I need to track changes in network drive (Z:) using FileSystemWatcher in C#.
When I try to set the Path property of FileSystemWatcher in Wndows form application everything OK.
But when I try to do ...
9
votes
5
answers
17k
views
VB6 Application on Windows 7 Cannot Access Mapped Drives
I have a VB6 application which links to several POS terminals from a Windows 7 32-bit machine. The POS terminals are mapped to the Windows 7 machine and I can access the POS terminals from the ...
12
votes
3
answers
14k
views
Accessing virtual directory(mapped drive) via c#/asp.net webpage with IIS7
So i have a server A and server B.
Server A: Windows Server 2008R2
Server B: Windows Server 2003
Web page is using framework 4.0, created with VS2013 Pro RC
on server A my asp.net/c# webpage is ...
7
votes
6
answers
19k
views
Directory.exists returns false for mapped drive in c# coding
I am using Directory.Exists() in my windows service (that is programmed in C#, 3.5 framework)to check to see whether a particular directory exists in the drive. When I run in local machine it works ...
1
vote
2
answers
12k
views
Possible permissions issue when using exec commands in PHP
We have a small office intranet, built in PHP (on an apache server - so WAMP), that allows us to create project folders on our file server. This works by copying a set of template folders to a new ...
5
votes
2
answers
5k
views
Why does DriveInfo.GetDrives() not get network mapped drive in windows service
I have a windows service developed in .NET C# using VS 2010, I'm calling the DriveInfo.GetDrives() but it is not getting the Z: drive (a mapped network drive),
I did some googling and found some ...
2
votes
2
answers
7k
views
Ant move, copy tasks failing on mapped drives in jenkins
I have an ant file which has move and copy tasks. The source and destination locations are on the mapped network drive R:\. When I run them on the command prompt the build is successful but when I ...
4
votes
1
answer
8k
views
Accessing mapped folder from a Windows Service written in C#
I have a windows service which polls for a specific folder for creation of new files. This works fine when the folder is in one of the local drives such as C: or D:
The service fails to find a folder ...
2
votes
2
answers
12k
views
Jenkins - remote access denied
I'm using the ArtifactDeployer plugin to deploy the build job artifacts to a remote location (Windows share SMB).
However Jenkins never manages to succeed. Throwing errors like:
[ArtifactDeployer] - ...
2
votes
2
answers
2k
views
cfdirectory a network drive
This works:
<cfdirectory action="list" name="qry" directory="C:\inetpub\wwwroot\Atlas\" >
</cfdirectory>
<cfdump var="#qry#">
So I know that cfdirectory is working. But this doesn't ...
3
votes
3
answers
11k
views
How to create a Windows service account for MS SQL Server in a workgroup environment?
I have two Windows Server 2012 R2 servers in a workgroup, on the first one I have MS SQL Server, the other is used (among other things) as a storage for backups. On the database server both the SQL ...
2
votes
1
answer
2k
views
Team Build can't access mapped network drive
In my solution, I have a reference to the assembly files which are placed in network place and mapped that network to a drive letter (P:). the project files are referencing the assemblies from that ...
3
votes
1
answer
3k
views
Python 3 Windows Service starts only in debug mode
I first posted an answer in this post, but it didn't conform to the forum standards. I hope this time te answer fits the forum standards. This code should be more clear and easy to read.
In Python 3+...