Not able to run the process :Access denied issue

Hi Team,

urgent Help Require..

As earlier the process was running fine in production but suddenly it fails not able to start the process saying the issue . Could anyone help me with this issue..When i start from assitant also this is the issue

looks like a permission issue on the bot machine UiPath is trying to kill an existing process but Windows is blocking it with Access denied.

try running the Assistant as admin and restart the machine once. If it still fails check whether the robot user has proper rights especially in service mode

When i restart it worked

@Snehamayi_Senapati

Many times, it’s not access issue, if machine is having another session and it has also opened the same application, then your robot won’t be able to kill it (Kill process activity).

So in that case, you need to kill/close application manually or reboot the system which will stop all the application.

Hi @Snehamayi_Senapati,

Currently, the bot is attempting to kill processes for all users available on the VM.

To fix this:

  • In the Kill Process activity, set the AppliesTo property to OnlyCurrentUser.

This ensures that only the processes of the currently logged-in user are terminated, instead of attempting to close all sessions. This is the reason the error was occurring.

Thank you!