How does one map network drive from windows service? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:05:44Z http://stackoverflow.com/feeds/question/792868 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service 0 How does one map network drive from windows service? Ahmed 2009-04-27T09:41:45Z 2009-04-28T09:03:04Z <p>I'm trying to map network drive from windows service, I use batch file for executing the following command</p> <pre><code>NET USE U: \\192.168.55.6\folder password </code></pre> <p>While executing batch file either in service constructor or in onstart event, drive is not mapped?</p> <pre><code> Process process = new Process(); process.StartInfo.FileName = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) + "\\MAP.BAT"; process.StartInfo.CreateNoWindow = false; process.Start(); </code></pre> <p>How does one map network drive from windows service?</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/792881#792881 0 Answer by Andomar for How does one map network drive from windows service? Andomar 2009-04-27T09:45:50Z 2009-04-27T11:20:48Z <p>I think services can't map network drives unless they have the right "interact with desktop" ?</p> <p>Try to run the service under the "Network Service" account, instead of "Local System" ?</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/792902#792902 0 Answer by MSalters for How does one map network drive from windows service? MSalters 2009-04-27T09:58:23Z 2009-04-27T09:58:23Z <p>Are you running the service under the user account that belongs to the password? The <code>MAP USE</code> command will use the current user, unless you pass /USER:anotheruser</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/793053#793053 0 Answer by MSalters for How does one map network drive from windows service? MSalters 2009-04-27T10:58:26Z 2009-04-27T10:58:26Z <p>It might be better to just call the right API function, instead of calling a batch file to call another executable. The function you're looking for is <a href="http://msdn.microsoft.com/en-us/library/aa363904%28VS.85%29.aspx" rel="nofollow"><code>DefineDosDevice()</code></a></p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/793387#793387 0 Answer by Winston Smith for How does one map network drive from windows service? Winston Smith 2009-04-27T13:00:04Z 2009-04-27T13:00:04Z <p>As far as I know, a mapped drive is only mapped for the duration of the user session. If your windows service is running on startup, or is otherwise not part of a user session, the drive mapping is lost.</p> <p>This may or may not be true but it is worth looking into - I remember something about it from a similar scenario I had about 7 years ago.</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/796377#796377 0 Answer by David L Morris for How does one map network drive from windows service? David L Morris 2009-04-28T05:47:36Z 2009-04-28T05:47:36Z <p>There are two issues.</p> <p>1) Mappings are only in use for the user session, which means that effectively you can't used a mapped drive for a Service. You would need to use the UNC path.</p> <p>2) The second issue is that a service (using the local system account) does not have access to the network, or more specifically, to the resource required. To resolve this, you would need to, either: Give the 'computer' on which the service is running specific access to the folder, or, set up the service to use a network (DOMAIN) account that has access to the resource.</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/796908#796908 0 Answer by Ahmed for How does one map network drive from windows service? Ahmed 2009-04-28T09:03:04Z 2009-04-28T09:03:04Z <p>All issues solved by using <a href="http://www.codeproject.com/KB/system/mapnetdrive.aspx" rel="nofollow">Map Network Drive (API)</a> to map network drive. I map required drives while OnStart event of service.</p>