How to connect a network drive. Connect a network drive Install a network drive

💖 Do you like it? Share the link with your friends

Click " Service"- "Connect a network drive"

ReviewOK".

You can change the drive letter if it is busy, to do this, click Disk and select a letter. When finished, click " Ready".

As a result, you will see the mapped network drive.

How to map a network drive in Windows 7.

Before connecting a network drive on Windows7, you need to check network settings, for this go to " Start" - "Control Panel" -" or click on the button Network connection on the taskbar and select "Network and Sharing Center".

In the window that opens Network and Sharing Center look at what network is being used (in this example - Work) click on "".

In the profile you are using (home, work or general), check whether it is enabled Network discovery, if it's off, turn it on. Save your changes.

Now you can proceed directly to connecting a network drive; to do this, go to Computer, press " Connect a network drive".

The Network Drive Mappings window will open. Click " Review", select the computer on which the network folder is located, click on it and select the required folder, click " OK". You can change the drive letter, to do this, click on the highlighted field yellow and select another letter. At the end press " Ready".

In addition to this method for connecting a network drive, you can

How to map a network drive in Windows 8.

Before connecting a network drive on Windows8, you need to check the network settings; to do this, go to "Control Panel" - "Network and Sharing Center""or click on the Network connection button on the Taskbar and select "Network and Sharing Center".

In the window that opens, look at what network is being used (in this example - Public) click on " Change Extra options public access".

In the profile you are using (private, guest or public), make the necessary changes, namely:

Enable network discovery;

Save your changes.

Now you can connect a network drive, to do this, click on the shortcut Computer select tab "Computer"-"Connect a network drive".

The Network Drive Mappings window will open. Click " Review", select the computer on which the network folder is located, click on it and select the required folder, click " OK". You can change the drive letter, to do this, click on the field highlighted in yellow and select the letter. At the end, click " Ready".

As a result, a network drive will appear.

Mapping a network drive using a script in Windows XP, Windows 7, Windows 8.

To connect/disconnect a network drive and network printer the command is used net use, here is the syntax of this command:

NET USE
[devicename | *] [\\computer_name\resource_name[\volume] [password | *]]
Username]
Username]

[ | ]

NET USE (devicename | *) [password | *] /HOME

NET USE

The NET USE command connects a computer to a share or disconnects a computer from a share. When the command is used without parameters, a list of connections is displayed of this computer.

device_name Assigns a name to connect to a resource or specifies a device to disconnect from. There are two types of device names: disk devices (letters D: to Z:) and printers (LPT1: to LPT3:). If you enter an asterisk (*) instead of a device name, the next unused name is assigned.
\\computer_name Specifies the name of the computer that controls the share. If you use spaces in the computer name, you must enclose the entire parameter in quotation marks along with two backslashes (\\). The computer name can be from 1 to 15 characters long.
\resource_name Specifies the network name of the share.
\volume Specifies the NetWare volume on the server. To access NetWare servers, you must install and run the NetWare Client Services (Windows Workstations) or the NetWare Gateway Service (Windows Server).
password Specifies the password required to access the share.
* Prompts for a password. The password is not displayed when entered on the command line.
/USER Specifies a different username with which to establish the connection.
domain name Indicates a different domain. If the domain is not specified, then the current domain used when logging into the network is assumed.
Username Specifies the username to log into the network.
/SMARTCARD Indicates that this connection uses smart card credentials.
/SAVECRED Specifies that the username and password should be saved. This parameter is skipped if the command does not prompt for a username and password.
/HOME Connects the user to the home directory.
/DELETE Cancels a network connection and removes it from the list of persistent connections.
/PERSISTENT Controls the use of persistent network connections. The default is the last used parameter.
YES Saves established connections and restores them the next time you log on to the network.
NO Does not save established connections or subsequent connections, as a result they will not be restored the next time you log in. To delete persistent connections, use the /DELETE parameter.

An example of using the net use command:

net use z: /delete
net use z:\\computer1\Shared Folder
net use /Persistent:Yes

net use z: /delete - command to unmount network drive Z.

computer1\Shared Folder - path to the shared folder (network folder)

net use /Persistent:Yes- when rebooting, restore mounted disks (if you specify NO - reset settings).

To create a script, create text file, write down the necessary commands and save. Change file extension from TXT to BAT. Now you can simply launch the BAT file with two mouse clicks and all the specified commands will be executed.

At the command line, NET USE is used to connect to and disconnect from network shares (drives) and to display information about current connections. When the command is used without parameters, a list of all connections on this computer is displayed. On a personal note, I would like to note that the Net use command can also be used when working with Windows 10.

NET USE Command Syntax

To display help for the specified net command, enter the command net help use.

  1. net use [(devicename|*)] [\\computername\resource[\volume]] [(password|*)]] ] username] [(/delete | /persistent:(yes|no))]
  2. net use [devicename]
  3. net use where
  • DeviceName - specifies the resource name when connecting or the device name when disconnecting. There are two types of device names: names for disk devices(that is, disks with letter designations from D: to Z:) and for printers (respectively from LPT1: to LPT3:). Entering an asterisk (*) in place of a specific device name will assign that device the closest available name.
  • \\computer_name\resource_name - specifies the name of the server and share. If the ComputerName parameter contains spaces, the entire computer name from the double backslash (\\) to the end (for example, "\\Computer Name\Share Name") must be enclosed in straight quotation marks ("). The computer name can be anywhere from 1 to 15 characters.
  • \volume - specifies the name of the NetWare system volume. To connect to NetWare servers, you must install and run the Client for NetWare Networks.
  • Password - specifies the password required to connect to the shared resource. Enter an asterisk (*) to display a password prompt. When entering from the keyboard, the password characters are not displayed on the screen.
  • /user - specifies a different username to connect to the shared resource.
  • domain name - specifies the name of another domain. Omitting the domain_name parameter causes the net use command to use the domain name specified at logon.
  • Username - specifies the username for connection.
  • domain_name _with_dot - indicates the fully qualified domain name in which the user account exists.
  • /savecred - saves the entered credentials for future use.
  • /smartcard - indicates the need to read credentials from the smart card for a network connection. If you have multiple smart cards, you will be asked to specify one of them.
  • /delete - cancels the specified network connection. If a connection is specified with an asterisk (*) symbol, all network connections will be canceled.
  • /persistent:(yes|no) - manages constants network connections. The default is the last used value. Connections without a device are not permanent. Selecting Yes causes all existing connections to be saved and restored the next time you connect. If you select No, connections made and subsequent connections are not saved. Existing connections are restored the next time you log in. To delete persistent connections, use the /delete switch.
  • /home - connects the user to his home directory.

As you can see, the command syntax is quite long, but it should be noted that not all of its parameters are used in practice.

Thus, the NET USE command connects or disconnects a computer to a share. Although the NET USE command has a fairly extensive syntax, not all of its parameters are used in real life. Let's try to understand the work of this popular team and give real examples that will be useful in work.

  • To display information about current connections, enter the command net use.
  • To connect a network drive using the net use command with the drive name Z: from the public directory Public2$ of the computer \\Nuclear, enter the command - net use z: \\Nuclear\Public2$
  • Example net use delete. To disconnect from the \\Nuclear\Public2$ directory connected by a network drive with the name drive Z: use the command - net use z: /delete
  • To connect the Backup$ shared folder from the Nuclear computer under the administrator user as if he were connecting from the Podryad.local domain, you should enter - net use d: \\Nuclear\Backup$ /user:Podryad.local\administrator
  • If the computer name consists of several words and there are spaces between them, then the entire computer name from the double backslash to the end must be enclosed in straight quotes. For example, to connect to Share1 on Server 1, the command would be - net use k:\\"Server 1"\Share1
  • Recovery current connections at the next logins to the network, regardless of future changes, the command is used net use /persistent:yes.

Video - Working with NET USE examples of connecting/disconnecting network drives

We will look at the reasons why a network drive may not connect and how to fix this problem on the Windows 7/10 operating system.

Opening access to a folder

Read also: TOP 3 Easy ways to show hidden folders or hide a required folder and set a password on it in Windows 10

Open the folder that you plan to use as the new device on your . It won’t be difficult to do this, it’s just important not to miss a few points.

Correctly configure the local network by logging into the control center and clicking on the link "change advanced settings" .

In the window that opens, click "Network Discovery" .

Disable « General access» if you don't need it.

Open access to the directory that should be connected as an application. Right select "Properties" , if the network drive is not connected.

Open the tab "Access" and and select "General access" .

In the new window, click "All" And "Add" . A list of users will appear in the list "All" . The user will have access to the folder.

At the last stage, confirm opening access to the folder by clicking on "Ready" . As a result, access to the folder will be opened.

Now you need to move on to connecting the drive on the second computer. Open "My computer" , press "Connecting a new floppy disk" on the tab "computer" .

After the Map Network Drive Wizard has started, it will open "Device connection" , select the appropriate drive letter and specify the access address to the network folder.

You can select any drive letter. The folder address should be specified like this: /Computer name/Shared folder name.

For example, you can select drive Z and specify the address as notebook/tmp. If you have forgotten the name of the shared folder, click "Review" .

Near "Restore connection when logging in" , check the box to connect the new application again after rebooting the device.

After all settings have been made, confirm the action and click "Ready" .

If everything is done correctly, the system will mount the folder as installed add-on and opens the window. It will appear in the window "My computer" .

Methods for connecting a network drive

Read also: TOP 10 Best Network Attached Storage (NAS) for Home and Work | Rating of current models in 2019

You can connect the device you are using in the following ways. So, you can create an additional service that can handle two functions.

That is, it starts the mount, and after that it starts an additional service that uses this add-on. It should have the following properties:

  • It is important that the helper service executes the same commands as the normal service, i.e. start/stop/restart.
  • The auxiliary and main services should perform tasks on behalf of the same user to avoid problems with access rights. If the main service is launched from LocalSystem, there may be problems with access to various applications.

A more interesting option is also possible. But you should use it at your own risk. This will require Sysinternals Suite. So, the steps are as follows:

1 Open cmd.exe(on behalf of the administrator);

2 Select the PsExec.exe option. Go to the SysinternelsSuite folder and run the command psexec –I –s cmd.exe . As a result, the user will receive nt authority/system rights. You can check this by typing whoami. The i option is needed because floppies cannot be displayed without user interaction.

3 You need to create a permanent connected application that will be used as the SYSTEM account. To do this, type the following command net use z://servername/sharedfolder /persistent:yes

This add-on can be disabled in the same way it was created, along with .

If you need to remove it, follow the first and second steps, but in the third step change the command, namely write

Net use z: /delete .

Connection using group policies

Read also: [Instructions] Unidentified network without Internet access - How to fix it? | 2019

Many people believe that the method of creating a new application through Group Policy is outdated. However, most system administrators prefer this option.

So, with the help group policy You can connect the installed device as follows.

First, launch the Group Policy console by clicking on the Win + R combination. In the window that opens, click "Run" and enter the command gpmc.msc. After this, the user will see the Group Policy Management Console on the screen.

If the network drive does not connect, going to "Group Policy Management Editor" do the following "user configuration-settings-configuration-floppy mapping" .

In the right half of the window, right-click "create-mapped device" .

Enter its name and check the box next to the option "reconnect" . Then go to the tab "Common parameters" .

In the tab, check the box next to "Target element level" and press "targeting" .

Going into "targeting editor" click the button "creating elements" and select "security group" .

There, specify the name of the user who needs to be connected to the floppy disk being used. Activate the item "Users in group" .

Many users say that this method is quite difficult.

It is especially difficult for those who do not have sufficient knowledge of Windows architecture. So it is recommended for use by people with a high level of training.

Read also: Control Panel in Windows 10: where it is, how to open it and how to make a shortcut to the desktop

If necessary, you can easily create a shortcut to any application by matching its position.

Once the user has connected the device, it will be displayed in File Explorer, so it can be easily accessed required file, as if the user was working with an existing local floppy disk.

You can create a similar shortcut for a new device in the OS as follows:

  • With File Explorer open, click "My computer" .
  • By clicking “Connect new add-on” , choose "Connecting the application you are using" (this option is located next to the tab "Computer" , which opens automatically when the user goes to the PC in the specified way).
  • Having selected the diskette letter that you plan to use for network folders, click "Review" .
  • Having navigated to the folder for which you want to create shortcuts, click OK after selection.
  • Don't forget to confirm your choice and click on "Ready" . The user can choose to permanently connect to this particular folder during the login process. As a result, it will be constantly available, and, if necessary, you can use another account computer user to connect to the folder.

Once the user is done with the settings, he should see under the shortcut "New device" . This will give him the ability to access content and other folders on the PC.

If you no longer need a network application and want to disable it, right-click on it and select "Disable" .

Connection methods in Windows XP

Read also:

To quickly access shared resources, assign floppy drive letters to them. This way you can make it easier to access.

As a result, in the folder "My computer" a special icon will appear. So you don't need to surf the web to find necessary information from network resources.

The main way to connect a device from "My Network Neighborhood" :

  • Click on "Network environment" on the menu "Start" by selecting the command "Net" , double click on "Windows Network" ;
  • Double click on the domain you want to open;
  • Don't forget to double-click on the one that contains the shares you want to connect. The windows will display the device's shared resources.
  • Press "shared resource" , which needs to be connected, right-click, and in context menu select team

    If necessary, you can connect a network drive on Mac OS

    Instructions for users who are wondering how to connect a network drive to the following. First, you should open Finder.

    To open a window "Connect to the server" , press Command + K. Don't forget to enter the path to the gadget you want to connect to.

    Enter the path in the following format: Protocol/Computer name. It is not necessary to specify the protocol at the beginning. After the user has entered the password, the OS will ask you to specify the required folder for the connection.

    The network drive will become accessible after the computer is turned on if you add it to "Login Objects" . After clicking on the menu, click on "System Setting" .

    Having chosen the appropriate option, click on "Add" . If nothing is displayed, you need to open Finder by going to Settings and pressing Command.

    Selecting a tab "Are common" , check the box next to "Server Connection" . As a result, the required icon will appear on the display.

A network drive is a logical drive (folder) created for sharing files among PC users. The disk can be located on a PC, server, or network device data storage, used in one local network.

A network drive is often created in enterprises and educational institutions storing documents on servers, providing more storage space and Reserve copy files. However, as the amount of data grows, the disk becomes relevant on the home network.

To connect a network folder, you must transfer all PCs connected to it to a common workgroup.

Step 1. Press the key combination Win+R. Type sysdm.cpl into the menu and click OK.

Step 2. Click the Computer Name tab and click Change.

Step 3. Type name in "Is a member" " working group» in English letters. You can choose any “Computer name” or leave it the same. Click "OK".

Step 4. Restart your PC for the changes to take effect.

Step 5. Do it Steps 1-4 on all computers located on the shared network, specifying the same workgroup name for them.

Setting up folder access

Before making a connection, you need to create a folder on the selected device located on the public network, naming it in English letters.

Step 1. Click on the created network folder and select “Properties”.

Step 2. Click on the "Sharing" shortcut and click "Sharing".

Step 3. Select “All” from the drop-down list and click “Add”.

Step 5. Click "Done".

The folder will be shared.

Disable network credential entry

When connecting online, it is often necessary to disable the prompt for network credentials in Windows 7, 8 and 10 (this setting is not required on XP). To disable the request, you need to change the PC access settings.

Step 1. Click on the network icon in notifications (bottom right of the screen) and select “Control Center...”.

Step 2. Click "Change sharing...".

Step 3. Check in all profiles (by opening the drop-down list) whether the points for network detection and general access are set.

Step 4. Scroll your mouse wheel down the list of permissions and select “Disable password protection.” Click “Save Changes.”

Reference! To connect to a network share, you may also need to disable and then re-enable the Windows Firewall.

Connecting a network drive

Step 1. Open the Computer folder by double-clicking.

Step 2. Click “Tools” – “Map network drive” ( in Windows XP).

Click the “Connect…” button at the top of the window ( in Windows 7).

Click the “Connect…” button on the disk image on the ribbon interface ( on Windows 8 and 10).

Step 3. Select the folder letter and type the path consisting of two slashes " \\ ", PC name followed by a slash " \ " and the name of the folder itself (with an underscore instead of a space, as shown in the "Example" in the screenshot).

Note! To connect, instead of the PC name, you can type it, for example: \192.168.1.100foldername.

Step 4. If the path to the folder is unknown, you can click “Browse...” by opening the network tree with the mouse, clicking on the desired folder and clicking “OK”. If a permanent connection to the folder is required, check the “Restore connection...” checkbox.

If other credentials are required to connect, check the “Use other credentials” checkbox. The password and login will be requested after clicking “Finish”.

Click "Done". The disk will be connected.

In a domain environment, you probably won't need to connect with different credentials because... The current domain login most likely already has access to the server.

For example, if you have a NAS file server and want to connect its folder as a network folder, you will probably need to enter the credentials installed on the NAS, since the credentials Windows data will not work.

Connecting a drive via the command line

Step 1. Press Win+R. Type cmd command and click "OK".


Connecting Yandex.Disk as a network folder

When installed on a PC, it organizes a folder on it for storing copies of files transferred to the server. This is quite inconvenient if the backed up files are too large and take up a lot of space on the PC.

At the same time, Yandex.Disk supports WebDAV, allowing you to connect the service as a regular network folder without saving files on your PC.

Step 1. Select network drive connection ( see above) and click on the link “Connect to the site...”.

Step 3. Enter address: https://webdav.yandex.ru and click "Next".

Step 4. Select a name for the connection and click “Next”.

Step 5. Enter a name and password to connect to the service.

Important! The item indicated by the arrow in the photo must be marked only if one account is used for the service!

Step 6. Check the “Open...” checkbox and click “Finish”.

The Yandex.Disk folder will open.

A location will appear in the “Computer” folder that can already be used.

Yandex.Disk will be connected as a network folder.

How to connect your computer to Wi-Fi

To connect a computer to a point Wi-Fi access You will need to purchase a Wi-Fi adapter, or connect an existing adapter to the network.

Step 1. For turn on Wi-Fi On a PC, click on the network in the notifications (bottom right) and select “Network Center...”.

Select “Network and Sharing Center...”


Step 2. After turning on the adapter, click on the network and select “Connect” to the desired Wi-Fi network.

Step 3. Enter the access point password and click OK.

A wireless Wi-Fi connection will be established.

If the disk is 100% loaded in Windows 10

In Windows 10, sometimes there is an error that leads to congestion hard drive 100% At the same time, PC performance decreases until it freezes completely. If the computer is under Windows control 10 has become very “ ”, it is necessary to look at what is causing this situation.

Step 1. Press Ctrl+Shift+Esc. The "Task Manager" will launch. Click on the “Processes” tab and view the status of the CPU, memory, disk and network.

If the disk is 90-100% loaded, you need to take actions to reduce the load on it. Most often, high HDD load is associated with the system “looping” on file indexing, carried out to speed up access to them.

Step 2. Click on the magnifying glass icon next to the “Start” button and type in cmd line. Click on the found utility " Command line" and select "Run as administrator".

Step 3. Type the command in the window that appears: NET STOP "Windows Search" by pressing Enter.

Step 4. Execute Step 1 this section and see if the load on the HDD has decreased. If the load has not decreased, disable the indexing service completely.

Step 5. Press Win+R, type services.msc in the window that opens and press Enter.

Step 6. Click on Windows service Search by selecting Properties.

Step 7 Click Stop, then select Disabled. Click “Apply” and “OK”.

Step 8 Execute Step 2 this sub-item and in the window that opens, type the following commands to disable the Windows diagnostic service, pressing Enter after each command.


Step 9 Without closing the previous window, type the following command, which disables the SuperFetch service, which improves the launch of frequently used applications, by pressing Enter. In practice, the SuperFetch service often causes high load on the HDD: net.exe stop superfetch

Step 10 Without closing the previous window, type the following command to disable the automatic Windows updates by pressing Enter: net stop wuauserv.

Also enter the following command by pressing Enter: sc config wuauserv start= disabled.

Step 11 Without closing the previous window, type the command that disables the paging file if the main disk in the system is an SSD solid-state drive by pressing Enter. Swap file on SSD drive sometimes the HDD loads 100%: wmic pagefileset where name="C:\pagefile.sys" delete(Where: name="C:\pagefile.sys"– file location)

Step 12 Without closing the previous window, type the following command to check and correct errors on the HDD by pressing Enter. To complete HDD check, the computer will need to restart: chkdsk /F /R

Step 13 After Windows restarts, run Step 1 this section and see if the load on the hard drive has decreased.

Disabling these services in most cases allows you to get rid of high HDD load.

Video - How to add a network drive in Windows 7,8,10

So, first of all, let’s define what a network drive is and why it is needed. A network drive is almost the same as a regular one. HDD, which is on the computer. But its main difference is that it is physically located on another computer or server. For uninitiated users, a network drive will not be any different from the drive that is installed on their computer.

The only thing they may notice is that the speed of writing or reading data from a network drive will be significantly lower. But this will depend on the speed of the local network. Most often I use a network drive in large organizations where I work in programs with large databases. The database itself lies on the server, and users only have a client and they connect to the database through a network drive. It's very convenient and safe. But it is possible to connect a network drive simply to exchange documents between computers.
In order to connect a network drive you need to perform several simple steps that in all operating systems Windows are almost the same. In this example, we will connect and disconnect a network drive in Windows 7.

Let's open my computer.

Enter the address of the network drive and select the volume letter. Check the box next to Recover at login. This is necessary so that the network drive is connected every time the system starts. If you don't check the box after a reboot, your network drive will disappear.

Click ready. After which your network drive should open.

Next, let’s go into my computer and check if the network drive appears underlined in red. That's all we have connected to a network drive. In order to disconnect a network drive, you need to right-click on it and select Disconnect, then click OK.

Now you have learned how to connect and disconnect network drives. You can connect any number of them. Agree, everything is not so difficult.



tell friends