|
Hi,
My windows service is creating a directory on a shared folder, and I am getting a error:
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.Directory.InternalCreateDirectory(String fullPath, String path,DirectorySecurity...
Started by Blankman on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
As a complete (and assuming a windows based server) guess cross check both the share AND the folder have write....
For security in shared folders on .net you need to configure the .net security with ".net Framework server runs.
|
|
I've got an application which stores its settings and other data in a specific folder on my hard drive. I cannot change this location without reverse-engineering the application.
I use the application on two computers at my home. I would like them both...
Started by Vilx- on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I doubt you can do I guess you would have to make the shared folder on the XP machine (which is already the setting, and then make a symlink....
Work only on one of the computers, the one which physically has the shared folder.
|
|
How to create shared folder in C# with read only access? I see this example, but it gives write access too
Started by ArsenMkrt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
With Shared Folders
IWHSInfo2 info = new WHSInfoClass(); IShareInfo2 share = info.CreateShareTry this:
File.SetAttributes("C:\Path\To\Folder", FileAttributes.ReadOnly);
See this link Working(); perm1.userName = "User1"; perm....
|
Ask your Facebook Friends
|
I need to open a password protected shared folder on a network to gain access to an Access 97 database. How do I open the folder and pass in the password?
Thanks,
Answer Snippets (Read the full thread at stackoverflow):
You could.
Hi,
one solution would be to map the network folder to an available drive letter.
|
|
I am running Fedora from VirtualBox with Windows XP as the OS host. How do I mount the selected shared folder in Linux?
Started by cmserv on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Not sure what the command is exaclty for fedora, but here are a couple of examples:
sudo smbmount \\\\192.168.1.10\\c\$ /mnt/localFolder/ -o username=administrator mount -t cifs \\\\WindowsHostName\\utility /mnt/localfolder -o username=administrator
And... .
|
|
I'd like to place all my family's media in one shared folder for everyone to use from any computer. Whether it's a PC or home server.
What is more appropriate:
Create it in my home folder ( /home/lamcro/media/ ) Create a new account called media ( /home...
Answer Snippets (Read the full thread at superuser):
You could instead place your files within a folder in /media , e.g /media....
This is where share when you plug in some media e.g an external USB drive.
You should find an existing folder in that location.
Media : Not such a good idea.
|
|
Banging my head against any hard surface trying to figure out why I cannot connect the RICOH copier to a shared folder on my SBS 2008.
Here's the particulars:
New SBS 2008 Server New Network clients running Win XP Pro SP3 New Ricoh multifunction copier...
Started by Critter on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
Its own domain account, gave that account NTFS and share permissions to the Scans folder from:
\\servername\scanned folder
to
\\servername\scannedfolder
By removing the space in the shared folder on Windows 2008 servers....
|
|
Over the last few months/years, I have shared a folder or two with numerous people on my domain. How do I easily revoke those shares to keep access to my system nice and tidy?
Started by Michael Haren on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could delete the shares or change the permissions on the shareOn Windows XP, go to:
Administrative Tools > Computer Management > System Tools > Shared;net share share....
Of all folders that are shared.
|
|
I am looking for freeware/open source application which can monitor the shared folder on local network. I did use some freeware application , But stupid enough to forget its name :)
Thanks in Advance.
PS: @Shark, I Would like to see who are all currently...
Started by UK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Modified or Deleted Files in Your Shared Folder
Have you tried Lansee or TeamViewer?
If you're looking for a tool to alert you when someone is accessing your shared folders, see this article:
Monitor and Notify when Shared....
|
Is there a way to allow a Windows service (unmanaged c++) to write files on a shared network folder?
I tried running the service in the "Local System" : didn't work.
I tried running the service in an account having rights on the network shared folder : didn't work.
Do I have to create a standalone application for this and launch this application as a...
Started by Nicolas on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I have no idea why it doesn't.
It won't necessarily work on Novell account in the active directory that you can give share permissions to.
I have a service that does just that.
shared folder does work.
|