Access Denied when running package uipath

hi
when i am run uipath robot pc with cmd command .it’s given error .access denied


when i execute cmd commad with administrator , it’s given access denied

@ben_ammar

Are you able to run using studio?? Is machine user has admin rights?

Regards
Anand

Yes ,I can running with ui studio. and i can running with uipath assistant.
My machine user has admin rights.

@ben_ammar
Which UiPath version are you running? Community (which version) or enterprise?. The community version has a different approach for running a project from cmd.
Edit: Check this post: It is from last year, but still should be working for today’s versions.

are you running CMD as the same user as where you run UiPath with?

  • Did you close all your UiPath instances? (it could be locked which will also result in access denied).

Hi @jvanmarion , @anandji05

Uipath version is entreprise licence 2020.4.1.
OS windows server 2012.
i tray to execute Main.xaml File. It’s given Error " Acess denied".
i tray to execute cmd line with administrator , it’s given “access denied”.

Can you publish the package on another drive (for example C:\temp) ? And then run it again from the new location?

Can i ask why you even want to run it from commandline when you have the assistant on the same account?

Hi @jvanmarion,
With On another location(C:\Temp), it works.
Is it possible to run the package without change a location? if i change location , the package’s not execute with uipath assistant because it work’s with default location.

I would like to run it from cmdline because i want to exceute in task scheduling. the assistant has not the option “Sheduling”.
Thancks

Do you use the same user when running cmd? If not, that could be your problem. That user should have access to the programdata folder and to the .nuget folder of that user.

In uipath assistant you can set task reminders.
Im running CE edition, but that should also be available on enterprise. Scroll down in your assistant.

Hi @jvanmarion,

I use the same user for all runing .( cmd line, uipath assistant…)?

in uiptah assistant , i use the option " reminder," but it can’t running , that shoul be just reminder.

Don’t run cmd as an administrator. That will give you the access denied issue (just tested it).

So for example the user is: jvanmarion
run a normal CMD prompt (not running as administrator)

That should run the job without any issues. Otherwise you have to check your project. Are you using any mapped network drives or other things that can be depending on user rights?
Can you share what your job/project is doing?

Or create a simple project that opens a browser and goes to an url. If that is working from CMD, you have something in your project that is blocking something.

Dear @jvanmarion,
I can run the package with cmd line ( test.bat) but when i running it with task sheduling of windows server .
i receive “ACESS DENIED”.


Can you help me.
for info : i 'am an administrator in the PC.
thanks

Hi,
It looks to me you didn’t create the task correctly. Did you use the test.bat in your task and created it within “quotes” ?

Taskscheduler:

  • create basic task
  • set a name for it
  • some steps about when you want to shedule it (you can fill that in yourself)
  • start a program
    at this point you have to set the location to the .bat file within double quotes. So for example
    “C:\Temp\test.bat”
    You dont have to set parameters or anything else.
    Then you should be able to run the job from the taskscheduler

Hi @jvanmarion ,
It works properly, with another approach.
Task scheduler:

  • set name=TEST
  • Start program: “C:\Program Files (x86)\UiPath\Studio\UiRobot.exe”.
    Set Argument :-file “C:\ProgramData\UiPath\Packages\Test.1.0.0.nupkg”
    Thank you.
    except that my problem, it runs only with the user logged in and not even with the user is not logged in.
    when I check executed even with the user is not logged in, it doesn’t work.
    Do you have an idea about this.
1 Like

Why do you want to run a process when the user is not logged in. Can you explain what your job is supposed to do? From all i know, there is an active session needed.

Hello,
I have had tasks that are performed daily with delayed times. ( 05:00, every 5 minutes in a lapse of time ).
So I’ll need to schedule it with scheduler.
for now.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.