0

In my internet cafe, is a software which requires administrative rights. But the computers will automatically start on a guest form. But its kinda tiring to turn 50 pc on every morning, open in administrator, turn the software on then switch to the guest user.

But I was thinking, if I give that specific software administrative rights, even tho the guest account is open.

Is it possible to be done? if so, then how can I do that?

berg96
  • 101
  • Need more detail. You can do something like that but need to know exactly where the package resides and what about it needs administrative rights to run. To start... what error do you get when you try running it as "Guest"? Have you contacted the software manufacturer? – ZiggyStardust Dec 09 '16 at 13:20
  • not really, but in the EULA it specifies that the software requires administrator privileges for all the functions to run. – berg96 Dec 12 '16 at 03:01

1 Answers1

0

You could use the command prompt.(problem with this, it still will ask for a password. I'll find a better way.)

Use runas /noprofile /user:Administrator {PROGRAM NAME} where {PROGRAM NAME} is the name of the program.(see source)

You could then create a script and save it as a file that you run. See here(How To Geek) or here(Make Use Of) for how to convert it into a script, or .bat file.

Now all you need to do is double click on a file.

airsquared
  • 131
  • 7
  • 1
    Wouldn't this as written require the user authenticate as the Administrator user since the Administrator users's password is not passed on? – Ramhound Dec 09 '16 at 15:10
  • yes. ramhound is right, its the same as putting the software shortcut in "on startup" folder, or something like that. it will require for the user to type the password – berg96 Dec 12 '16 at 03:03