> Windows create task schedule from command prompt with highest privileges?

Windows create task schedule from command prompt with highest privileges?

Posted at: 2014-12-18 
As the title tells, I want to create a scheduled task WITH HIGHEST PRIVILEGE as we can tick the option in GUI mode, in windows 8.1 with the help of a batch file/command prompt.

I used:

schtasks /create /sc minute /tn test1 /tr "C:\Users\SOURAV\Desktop\beautiful_text.bat" /mo 1 /ru ""


It created the scheduled task but not with highest privilege. Moreover there were restrictions like 'only run the task when plugged into AC power' etc.

My question is how can I achieve the same things via command prompt as we can do via GUI?

Another answer in stackoverflow said that it is not possible to achieve all taskes via command prompt as in GUI. But I saw that Opera browser/Google drive automatically created scheduled task in task scheduler and their tasks run with highest privilege. [see image link below]

http://i.stack.imgur.com/7l1NR.png

Can anyone explain all this things?

Thank you. :)