- Aug
- 2,320
- 111
I am running;
I have a program which does not work properly when run as Admin, and displays the message "does not support the option "Run As Administrator".
I have the program pinned to the Windows TaskBar, and launch it from there, and it works, since it is not being launched via Administrator. Ditto if I launch it via the start menu.
I prefer to start my programs from the command line, so I have been using the RunFromProcess utility to launch this program non-Admin from the command line via a .BTM;
This works as it should.
I was looking for another method to run the program non-Admin without the use of a third-party tool, and discovered that I can create a Scheduled Task, which I can then launch via a .BTM;
Both of these methods also work from CMD.EXE, but if there is a TCC solution, please advise.
Joe
Code:
_x64: 1
_admin: 1
_elevated: 1
TCC 24.02.49 x64 Windows 10 [Version 10.0.18362.116]
I have a program which does not work properly when run as Admin, and displays the message "does not support the option "Run As Administrator".
I have the program pinned to the Windows TaskBar, and launch it from there, and it works, since it is not being launched via Administrator. Ditto if I launch it via the start menu.
I prefer to start my programs from the command line, so I have been using the RunFromProcess utility to launch this program non-Admin from the command line via a .BTM;
Code:
@setlocal
@echo off
cdd "C:\Program Files (x86)\Quicken"
runfromprocess-x64.exe explorer.exe %@truename[qw.exe]
endlocal
This works as it should.
I was looking for another method to run the program non-Admin without the use of a third-party tool, and discovered that I can create a Scheduled Task, which I can then launch via a .BTM;
Code:
@setlocal
@echo off
schtasks /run /tn RunQuicken
endlocal
Both of these methods also work from CMD.EXE, but if there is a TCC solution, please advise.
Joe