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.
Observed Behavior
Packages published from Studio are not visible in the UiPath Assistant.
Cause
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.
Solution
One of the following methods can be used to solve this issue:
Converting the Robot to User-Mode
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.
Mapping a Network Drive for the Local System
- Download the Sysinternals Suite. It contains the
PsExec.exetool, which is required for this operation. - Open an elevated Command Prompt instance.
- Use the
cdcommand to navigate to the location where you downloaded the Sysinternals Suite (such ascd C:\Downloads\SysinternalsSuite). - Use the
PsExec -i -s cmd.execommand. A confirmation dialog appears. - Click the Accept button to install the
PsExec.exeservice. This makes it possible to map a network drive for the Local System. - Use the
net use z: \\ServerName\SharedFolder /persistent:yescommand 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.
Updated 2 years ago