Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
2k views

Vista UAC - Trouble Mapping Network Drives

We have an application that programmatically maps network drives. On Vista with UAC on, we get some strange issues. Our application maps the drive non-elevated, so if the user browses explorer and ...
3
votes
2answers
4k views

Error 1219. Multiple connections to a server or shared resource by the same user

I am trying to map network drive, but get error 1219 on Windows XP: net use z: \\serverA\tests password /user:serverA\alex I have tried net use * /del /yes But it has no effect, and the net ...
2
votes
1answer
139 views

Equivalent of net use (to list computer's connections) in powershell?

According to windows help NET USE, when used without options, lists the computer's connections. I'd like to find a way in powershell to get a list of the Remote entries in net use's output. I know ...
1
vote
1answer
101 views

get status column from “net use” with winapi via C#

When issuing the "net use" command in Windows there is a "Status" column. Is it possible to get that via any of the methods found in the mpr.dll? I'm currently using WNetOpenEnum and then using ...
1
vote
0answers
372 views

Error 1219 occurs when I try to map a network drive multiple server

I have a network drive (for instance, G: on Server A). And I am trying to map an additional network drive (H:) to a new server (Server B). I tried the net use command, giving to rise to error 1219 on ...
0
votes
0answers
97 views

System Error 85 has occurred. The local device name is already in use. on Map LPT1 by using “net use” command

Hi I am using Windows 7 Ultimate in my Laptop I am trying to Map a Shared Printer in DOS by use "net use" command. But its giving Error to me. one more thing is i used same command in my friend laptop ...
0
votes
0answers
80 views

Windows XP NET USE to map a specific WebDAV share from OS X Lion Server

I have three WebDAV shares in Lion Server for the same account. NET USE * http://server url/webdav/username password /user:username will map a single share, but not allow a choice of which of the ...
0
votes
1answer
152 views

Equivalent of net use \\server_name\share_name /delete in PowerShell?

does anybody know the equivalent in PowerShell of the following windows command: net use \\server_name\share_name /delete I'd like to disconnect from the shares from powershell, included the ones ...
0
votes
1answer
158 views

open folder from Network with Powershell

I would like to open a txt.File from a sharedFolder with Powershell. The problem is, that it has to run whether an user is logged on or not. I'm looking for something like net-use. The Program should ...