@echo off echo Mapping network drives... net use Z: \\server1\marketing /persistent:yes net use Y: \\server2\finance /user:FinanceUser * net use X: \\server3\backup /persistent:yes echo Mapping complete. pause if not exist Z:\ ( net use Z: \\server\share /persistent:yes ) else ( echo Drive Z already mapped. ) 3. Map Drive Using PowerShell (Alternative) While not cmd , PowerShell is useful in modern scripts:
net use Z: \\server\share /user:WORKGROUP\AlternateUser Password123 /persistent:yes To avoid storing the password in plain text, use * to prompt interactively:
net use Z: \\fileserver\securefolder /user:DOMAIN\username * You will be prompted to enter the password (which remains hidden as you type). By default, mapped drives using net use are not persistent – they disappear after you log off. To make the drive reconnect automatically every time you sign in, use the /persistent:yes flag.
If you encounter persistent issues, verify network connectivity with ping server-name , check firewall settings, and ensure the "Function Discovery Resource Publication" and "SSDP Discovery" services are running on your Windows 11 machine.
net use /persistent:yes net use Z: \\fileserver\shareddata If you need to access a share with credentials different from your current Windows login:
net use Z: \\server\share /user:WORKGROUP\AlternateUser * Sometimes you just need to authenticate to a network location without assigning a letter. Use an asterisk ( * ) as the drive letter, or omit it:
While the graphical interface of File Explorer is convenient, mapping network drives from the command line offers speed, precision, and the ability to automate the process via scripts. Whether you are a system administrator or a power user, mastering the net use command is essential.
Map Network Drive Windows 11 Command Line 2021 — Bonus Inside
@echo off echo Mapping network drives... net use Z: \\server1\marketing /persistent:yes net use Y: \\server2\finance /user:FinanceUser * net use X: \\server3\backup /persistent:yes echo Mapping complete. pause if not exist Z:\ ( net use Z: \\server\share /persistent:yes ) else ( echo Drive Z already mapped. ) 3. Map Drive Using PowerShell (Alternative) While not cmd , PowerShell is useful in modern scripts:
net use Z: \\server\share /user:WORKGROUP\AlternateUser Password123 /persistent:yes To avoid storing the password in plain text, use * to prompt interactively: map network drive windows 11 command line
net use Z: \\fileserver\securefolder /user:DOMAIN\username * You will be prompted to enter the password (which remains hidden as you type). By default, mapped drives using net use are not persistent – they disappear after you log off. To make the drive reconnect automatically every time you sign in, use the /persistent:yes flag. @echo off echo Mapping network drives
If you encounter persistent issues, verify network connectivity with ping server-name , check firewall settings, and ensure the "Function Discovery Resource Publication" and "SSDP Discovery" services are running on your Windows 11 machine. To make the drive reconnect automatically every time
net use /persistent:yes net use Z: \\fileserver\shareddata If you need to access a share with credentials different from your current Windows login:
net use Z: \\server\share /user:WORKGROUP\AlternateUser * Sometimes you just need to authenticate to a network location without assigning a letter. Use an asterisk ( * ) as the drive letter, or omit it:
While the graphical interface of File Explorer is convenient, mapping network drives from the command line offers speed, precision, and the ability to automate the process via scripts. Whether you are a system administrator or a power user, mastering the net use command is essential.