robot
2022.10
false
- Release Notes
- Getting Started
- UiPath Assistant
- Installation and Upgrade
- Robot Types
- Robot Components
- Licensing
- Connecting Robots to Orchestrator
- Processes and Activities
- Logging
- Robot JavaScript SDK
- Specific Scenarios
- Restarting Robot Components
- Windows Sessions
- Login Using Thales Luna Credential System
- Login Using NShield Key Storage Provider
- Redirecting Robots Through a Proxy Server
- Executing Tasks in a Minimized RDP Window
- Using Mapped Network Drives
- Stopping a Process
- Disable Stop Button
- Custom Package Folders and Network Paths
- CrowdStrike Integration
- Robot Citrix Apps Virtualization
- Troubleshooting
- Unresponsive Robot Over RDP
- Duplicate Execution Logs
- Frequently Encountered Robot Errors
- Increased Process Execution Duration
- Enforced Package Signature Verification
- Message Too Large to Process
- Errors When Running as Administrator
- NuGet Packages Not Accessible After Migration
- User Access Control Prompt and UI Automation Activities
- .NET required during installation
- Assembly Cannot Be Loaded From Network Or Azure File Share
- Activities cannot find .NET Runtime
Using Mapped Network Drives
Robot User Guide
Last updated Oct 25, 2024
Using Mapped Network Drives
To make your work easier with shared network folders, you can map network drives for quick access on your user account. However, if the processes you publish from Studio are located on that drive, the situation described below occurs.
The issue occurs when you use a mapped network drive for your packages. The location of the packages you publish to Orchestrator
can be seen in the
UiPath.settings
file on the Robot machine, under the NuGetServerUrl
parameter. The mapped network drive is available to the user that created it, while the Robot Service runs system-wide.
You can convert the Robot from Service-Mode to User-Mode by running the
.MSI
installer and choosing the User-Mode during update.
Check out the Updating the Robot guide for more details.
- Download the Sysinternals Suite. It contains the
PsExec.exe
tool, which is required for this operation. - Open an elevated Command Prompt instance.
- Use the
cd
command to navigate to the location where you downloaded the Sysinternals Suite (such ascd C:\Downloads\SysinternalsSuite
). - Use the
PsExec -i -s cmd.exe
command. A confirmation dialog appears. - Click the Accept button to install the
PsExec.exe
service. This makes it possible to map a network drive for the Local System. - Use the
net use z: \\ServerName\SharedFolder /persistent:yes
command to map the drive, where ServerName is your server and SharedFolder is the location of the drive you want to map.
If you want to remove the mapped network drive, you need to repeat the steps above, but using the
net use z: /delete
command instead. You can find out more on this page.
Observed behavior
Unattended robots cannot find a mapped shared drive when running a background process.
Cause
This is the behavior of non-interactive Windows logon sessions.
Resolution
In order to use mapped share drives in
headless
mode, the drive would need to be remapped for every job the robot starts. The remapping also applies to the scenario in which
the robot machine is restarted.
For example, by having an explicit invocation in the workflow of the
net use Z: \\unc\path
command before using the shared drive.