A field technician is configuring a Windows workstation to access a shared network folder named Data on a file server (`\\FS01\Data`). The shared folder needs to be mapped to local drive letter `M:` and must automatically reconnect every time the user logs into the system. Which command should the technician run in Command Prompt to accomplish this goal?
- net use M: \\FS01\Data /persistent:yesAnswer
- Bnet use M: \\FS01\Data /reconnect:true
- Cnet share M:=\\FS01\Data /persistent:yes
- Dmount -t cifs \\FS01\Data M:
Answer
The command `net use M: \\FS01\Data /persistent:yes` correctly maps the network share to drive letter M: and configures it to reconnect automatically upon user logon.
The `net use M: \\FS01\Data /persistent:yes` command assigns the remote UNC path `\\FS01\Data` to local drive letter `M:` and ensures the connection persists across user sessions via the `/persistent:yes` switch.
Step-by-Step Solution
Key Concept
Mapping network drives and managing persistent connections using `net use`