A desktop technician needs to map a remote shared folder located at \\NAS01\Reports to local drive letter R: on a Windows workstation using the Command Prompt. The technician must authenticate using an alternate domain account named CORP\tech_admin. Which of the following commands should the technician execute to accomplish this task?
- net use R: \\NAS01\Reports /user:CORP\tech_adminAnswer
- Bnet share R:=\\NAS01\Reports /user:CORP\tech_admin
- Cmount \\NAS01\Reports R: -o user=CORP\tech_admin
- Dnet map R: \\NAS01\Reports /credentials:CORP\tech_admin
Answer
net use R: \\NAS01\Reports /user:CORP\tech_admin
The command 'net use R: \\NAS01\Reports /user:CORP\tech_admin' correctly connects the local system to the specified remote share folder, maps it to the designated drive letter R:, and passes the specified domain credentials for authentication.
Step-by-Step Solution
Key Concept
Mapping remote SMB shares to local drive letters using net use with alternate credentials