Tagged Questions

2
votes
0answers
50 views

Mapping an sFTP connection to a Windows drive ? [closed]

Hello, I'm looking for a way to map an sFTP connection to a Windows (Vista) drive. In other words, a tool that would add a new drive (let's say N:) to my computer, that would dire …
2
votes
8answers
1k views

Keeping Visual Studio Projects on a Network Drive

We just did a move from storing all files locally to a network drive. Problem is that is where my VS projects are also stored now. (No versioning system yet, working on that.) I kn …
1
vote
0answers
13 views

How to prevent FileIOPermissionException(and others) when run .NET application from network drive.

My C# application (.NET 3.5 SP1) works very well when if execeuted from local drive. However, if I run it from a network drive, it execute (IT IS .NET 3.5 SP1), but failed to read …
0
votes
1answer
256 views

How to programmatically check/set access permissions to a network drive?

How do you check to see if you have access (yet - because it will work fine after you have navigated there at least once before in this windows session and entered name/pass) to a …
0
votes
6answers
1k views

How does one map network drive from windows service?

I'm trying to map network drive from windows service, I use batch file for executing the following command NET USE U: \\192.168.55.6\folder password While executing batch file e …