robot
2024.10
false
- Getting started
- Understanding UiPath Robot
- Installation requirements
- Installing robots for unattended automations
- Configuring robots for unattended automations
- Deploying unattended automations
- Connecting robots for unattended automations to Orchestrator
- Setting up Windows Server for High-Density Robots
- Redirecting robots through a proxy server
- Implementing authentication with credential providers
- Configuring package signature verification
- Setting up package folders and network paths
- Configuring activity feeds
- Using EntraID users with multifactor authentication (MFA) for unattended robots
- Installing robots for attended automations
- Configuring robots for attended automations
- Integrations
- Governance
- Troubleshooting

Robot admin guide
Last updated Jan 14, 2026
Configuring activity feeds
Service Mode and User Mode robots use different NuGet.config files.
A robot installed in User Mode has two NuGet.config files: one in the installation folder, and one in the user profile folder (%AppData%\NuGet\NuGet.config).
A robot installed in Service Mode uses the NuGet.config file from the installation folder.
To add or remove activity feeds, update any NuGet.config file, as follows:
-
Open the
NuGet.configfile with a text editor, such as Notepad++. -
To add a new activity feed, in the
<packageSources>section, add a new<add/>element, and provide the name askey, and the feed address asvalue:<packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="Online Feed" value="https://mycustomfeed.com" /> <add key="Local Feed" value="C:\local feed" /> </packageSources><packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="Online Feed" value="https://mycustomfeed.com" /> <add key="Local Feed" value="C:\local feed" /> </packageSources>Note:- You can add both local and online feeds.
- To ignore HTTPS feeds from
NuGet.config, add the following line inUiPath.config, under<packageSettings>:
<add key="skipHttpConfigurationSources" value="true" /><add key="skipHttpConfigurationSources" value="true" /> -
To remove an activity feed, delete the corresponding
<add/>tag. -
Save the
NuGet.configfile, then restart the Robot service or the device.