Network Drive setup

0

I have been trying to setup network drive on Windows 8.1 for a Box account. Initially it didn't connect so followed these steps here.

https://helpdesk.egnyte.com/entries/21587905-Error-message-0x80070043-the-network-name-cannot-be-found-while-setting-up-Mapped-drive-Prompt-for-U

As soon as i enter the registry values(WDNP32,SnacNp,RDPNP,LanmanWorkstation,webclient) the box account gets connected.

But the problem is the registry values gets reverted back to original after a restart.

Why registry is not saving these values? How do i save it permanently?

Thanks!!!

windows
windows-registry
network-drive
asked on Super User Nov 18, 2013 by Ram Kumar

1 Answer

1

I would use a logon script instead of manually messing with the registry.

To do a user profile script:

open:

%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
  1. Right click, and create a new text file.
  2. Edit the text file to include your mapped drive information.

For example, to map a drive letter M with the current Windows account

net use M: \\serverName\ShareName

If you need to use alternate credentials on the share, use the following format:

net use M: \\ServerName\ShareName /user:UserName yourPassword
  1. Save
  2. Rename the text file to "WhateveryouWant.bat" Make sure the new extension is .bat
answered on Super User Nov 18, 2013 by Austin T French

User contributions licensed under CC BY-SA 3.0