0
votes
1answer
115 views
Hide CMD window after using START to run a network application
I have an application that is run over a network. I need to be able to run this application from a batch file, and had ended up using this:
pushd \\server\folder
start /wait prog …
0
votes
1answer
57 views
Access to the path ‘\\Image0\Abc’ is denied.
var directory = new DirectoryInfo(
"\image0\Abc"
);
if (!directory.Exists)
{
directory.Create();
}
when I user ab …
0
votes
0answers
118 views
Java Web Start: How to write files to windows UNC Path?
I have an Java application for copying large amounts of data from users' workstations to a server. The java.io.File class is supposed to work with UNC paths very well and in fact i …
1
vote
1answer
72 views
Open/close connection to UNC without credentials
I have a .NET client app that intermittently loses connection to a UNC share where the user is either on a domain or has a local account with the same credentials on the server. Bo …
1
vote
3answers
140 views
How to access file with UNC path from asp.net
When I access file whith UNC file path from asp.net, I found the following problem. Logon failure: unknown user name or bad password. Pls help me.
1
vote
5answers
1k views
How can I mount a windows drive in Java?
We are working with some legacy code that accesses a shared drive by the letter (f:\ for example). Using the UNC notation is not an option. Our Java wrapper app will run as a serv …
0
votes
1answer
31 views
WNetGetUniversalName Not Found
Hi,
I'm writing my first Windows Explorer Shell extension that will allow me to right click on a drive or file system object and select 'copy path'. This will copy the full path o …
1
vote
3answers
254 views
Get UNC path from a local path or mapped path.
In Delphi there is a function ExpandUNCFileName that takes in a filename and converts it into the UNC equivalent. It expands mapped drives and skips local and already expanded loc …
0
votes
2answers
141 views
Linking a UNC / Network drive on an html page.
Just a basic html link question.
I have an intranet setup, and I need to link to some network drives. They are located on drives such as \server_drive\blahblah\doc.docx
Using f …
2
votes
2answers
307 views
Preventing UNC Share error at build time
At work we have a bunch of sites hosted on our development server. The folder containing all these sites is mapped as a network drive.
In VisualStudio I open the root of the site …
2
votes
2answers
486 views
C#: How to logon to a share when using DirectoryInfo
If I want to instantiate a DirectoryInfo object with an UNC path
DirectoryInfo myDI = new DirectoryInfo (@"\\server\share");
how can I pass a username / password that is requir …
0
votes
0answers
131 views
Printing to a UNC to emulate command prompt ‘copy’
We have several applications that generate their own PCL and Postscript via C#. When it comes to print we've traditionally allowed for multiple outputs such as IP (LPR or RAW 9100 …
0
votes
1answer
133 views
Can you disable UNC paths in Windows?
We are trying to lock down a Terminal Server, and want to remove a commercial package's ability to accept UNC file paths, ie. paths in the app can then only be entered using the wi …
1
vote
2answers
200 views
On Windows, can you use UNC like paths to files in PHP, for functions like file_get_contents(), etc?
(Assuming the network folders/permissions are correctly set up and working in Windows, and a 'default' PHP setup...)
Is it possible to use UNC network paths [like \\ServerName\Fol …
1
vote
3answers
1k views
C# Get UNC path from local directory
Hello,
Here is my program:
I'm uploading an image(Stream, FileInfo or whatever you like) to a server at this virtual directory: "C:\_Resources\Assets"
But then, I want the server …
