Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
3k views

File.Exists returning false from a network share

I've been working on a ASP.NET project that is going to save uploaded files to a network share. I figured I could just use a virtual directory and be fine, but I have been struggling with permissions ...
3
votes
1answer
867 views

Access Windows Share under Network Service account

I have two computers with Windows Server 2003. One computer has some shared folders on the network, and the other has a Windows Service (written in C#, running under the Network Service account) that ...
3
votes
2answers
16k views

Access network share from within VBScript eg FileSystemObject

Is there a good way to access network shares from within a VBS script, with alternative credentials (not the credentials with which the VBS script is running)? The intention is to perform two tasks: ...
2
votes
1answer
120 views

Batch file to change all network shares on computer

I need to change all shares of //foo to //bar in a batch file. Say i have R: //foo/foo and Z: //foo/bar I need to have a batch script that makes them R: //bar/foo and Z: //bar/bar Anyone have any ...
1
vote
1answer
495 views

Read/Write a file from/to network folder/share using Python?

How to Write/Read a file to/from a network folder/share using python? The application will run under Linux and network folder/share can be a Linux/Windows System. Also, how to check that network ...
1
vote
1answer
428 views

Execute ClickOnce application located on share, through HTTP?

i have a ClickOnce application (online only) which is deployed on a network share. People can run the application by creating a shortcut to i:\ApplicationDirectory\ApplicationName.application where i ...
1
vote
4answers
2k views

Win32: API calls to list available network shares on a server?

Assume I have access to a SMB server at IP 1.2.3.4, how can I determine the list of available shares? Windows Explorer can do it when I enter a UNC path \\1.2.3.4\ - but command prompt "dir ...
1
vote
1answer
92 views

Client copying from server to same server, without roundtrip?

This is inspired by Does File.Copy() from a network share to another share on the same machine copy the file over the network? Is it possible, in .NET, for a client to get the server to copy a server ...
0
votes
1answer
61 views

IIS 7.5 ASP.Net and remote share

I have an issue with our ASP.net application not being able to read files from a remote directory. Our users log into our application using Forms Authentication, so no AD accounts are used in logging ...
0
votes
1answer
103 views

Get number of twitter shares by url

I have a question about twitter counting. Everything is so blury about this. Simply: I have website with dynamic pages, button for tweet, people go to page, press tweet, it shows on they twitter, ...
0
votes
1answer
122 views

Create Network Share with permissions

I didn't find any good info or library on the inet, about how to create a network share and set permission for a local group. I'm using c# and Windows Server 2008. Does anyone have some good ...
0
votes
2answers
232 views

How to logout from a Windows shared folder?

On my Windows XP, I am connected to a network shared folder on another Windows XP machine. I access the shared folder through UNC path, e.g.: \Server\shared_folder1\ When I access it first time, it ...
0
votes
0answers
202 views

How do you programmatically Turn Password Protected Sharing on/off in Windows 7?

Let me apologize ahead of time. I saw this question on here already, but it has not been answered completely. (How do I turn Password Protected Sharing on or off programmatically?). I couldn't figure ...
0
votes
1answer
181 views

How can I disable net share folder with C/C++ in Windows?

I want to write a program with C/C++ for disabling net share folders and to prevent users from create a new share folder. Does anyone know the methods?
0
votes
2answers
110 views

Can I install. NET COM library located on a network shared folder?

COM Server registered with reg asm located in a network folder not working properly. When you try to create the object gets the error "Automation error". Everything works correctly if the dll is ...
0
votes
1answer
297 views

Performance issue when moving of files on network shares

I'm writing an application which can copy files on a network share. Usually the files are moved on the same physical hard drive. If you test this with Windows Explorer, this operation will be executed ...
0
votes
3answers
1k views

Why am I getting a “Path not correct” error while running a batch file on a remote system?

I need to run a batch file on a remote system from a local machine. Using the code below, I am getting the following error: Path not correct I have the IP address of the machine, and I have given ...