Windows 8 'net use' no longer works

3

1

The net use was able to show the source of my network drives, to up to Win 7.
Now under Windows 8:

D:\>net use
New connections will be remembered.

There are no entries in the list.

So how can I get a list of the source of my network drives under Windows 8?

EDIT: I'm not talking about the network drives manually added by net use itself, but network drives assigned to me when I log in into my domain. In my company, I have win7 and win8 environments. Same account, same policy, only different is the host that I remote in, and the result of net use do behave differently. On win7, I can see the mapping of my X: Y: and Z: network drives, whereas in Win8, I only get "There are no entries in the list", even though I do have my X: Y: and Z: network drives.

Thanks

xpt

Posted 2013-12-30T21:32:56.003

Reputation: 5 548

How exactly are they being applied by GP? Login scripting? computer startup scripting? Group Policy Preference mappings? – Ƭᴇcʜιᴇ007 – 2013-12-31T15:53:03.587

Is there any way that I can tell? I'm just a normal domain user BTW. – xpt – 2013-12-31T19:14:04.350

Answers

6

Net Use under Windows 8 works exactly as it did in Windows 7 (and Vista, and XP, etc.).

You have no Net Use entries set (aka: nothing "mapped"), hence it tells you "There are no entries in the list".

You may be running into a user vs. administrator context confusion though. If you map the drives as your user, and then start a command prompt "As Administrator", then it's a different user context, so the command-line doesn't have the mapped drives.

This too is exactly how Windows 7 worked.

Ƭᴇcʜιᴇ007

Posted 2013-12-30T21:32:56.003

Reputation: 103 763

It may appear the same to you in your environment, but net use definitely behaves differently in my environment. Can you see your normal network drives and mapping in your net use output from your win7? If not, your win7 environment is different then mine then. – xpt – 2013-12-31T14:59:51.753

Passed my 5min, In my Corp, I have win7 and win8 environments and they do behave differently. – xpt – 2013-12-31T15:05:19.930

@xpt "Can you see your normal network drives and mapping": I'm not sure what you mean by "normal network drives". In both Window s7 and 8, if I have any network drives mapped then Net Use shows me them. Perhaps you could edit your original question to further explain exactly what you expect to see, and include how you are connecting/mapping to the shares? – Ƭᴇcʜιᴇ007 – 2013-12-31T15:27:01.547

original question edited. – xpt – 2013-12-31T15:45:40.907

1

I use the enable linked connections setting so that my as "administrator" consoles can see my user mapped drives while under the administrator token. The problem is the split-token in UAC is prevented from seeing the drives for your 'safety'.

Here is the fix, it runs from Powershell.

New-ItemProperty -Path "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLinkedConnections" -Value 1 -PropertyType "DWord"
#

http://technet.microsoft.com/en-us/library/ee844140%28v=ws.10%29.aspx

Knuckle-Dragger

Posted 2013-12-30T21:32:56.003

Reputation: 1 817

Thanks. doesn't work for my case though. – xpt – 2013-12-31T15:01:02.900