Running bat file at startup as administrator in Windows 7

148,913

Solution 1

See this article : Make Vista launch UAC restricted programs at startup with Task Scheduler.

This article shows how to use the Task Scheduler to launch startup programs with elevated privileges. Some small changes may be required in your case, but the article is well-written with screenshots.

The answer Schedule a task with admin privileges without a user prompt in windows 7 is useful in this case; in particular "Run with highest privileges" is really important.

Solution 2

Make two batch files:

StartAs.bat contains something along the lines of:

runas /user:SomeLocalAdminAccount c:\Users\MyUser\StartupWhat.bat

StartWhat.bat contains the commands that you want to run.

Solution 3

Have you thought of a different approach? Either a pure group policy for the equivelent registry setting, else setting the batch file to run as a group policy. It maybe that you could even run it as a computer script, rather than a user script.

Start with gpedit.msc. However, it does need Ultimate or one of the other top end editions.

Solution 4

hstart.exe - 3rd party start.exe replacement at http://www.ntwind.com/software/hstart.html

The invocation is a bit of a pain, but it works really well.

Solution 5

AutoExnt utility, from the Resource Kit.

The AutoExNT service permits an administrator to configure a Windows based computer to run a custom batch file when first starting the computer. Also, a user or administrator is not required to be logged on at the time this custom batch file runs.

Share:
148,913

Related videos on Youtube

simon
Author by

simon

Updated on September 17, 2022

Comments

  • simon
    simon over 1 year

    I'm currently running a startup script in form of a bat file successfully in Windows 7 (I've inserted a new registry key entry with the bat file path as value in

    Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run).

    Now I need to run another bat file at startup, but with elevated rights (as administrator), and without manually confirming a prompt.

    How can I achieve this, preferrably without external programs?

    • Admin
      Admin over 11 years
      Does this one have a solution? serverfault.com/questions/429364/…
    • Admin
      Admin about 6 years
      I'm confused. Isn't the ability to bypass the UAC prompt a huge security concern? Doesn't that defeat the purpose of the prompt even existing?
    • Admin
      Admin over 3 years
      The answer superuser.com/questions/770420/… is useful in this case; in particular "Run with highest privileges" is really important.
  • Joe Taylor
    Joe Taylor over 12 years
    This doesn't work for shortcuts to bat files. Try it.
  • Joe Taylor
    Joe Taylor over 12 years
    Still asks that the file be run with elevated priveledges
  • Joe Taylor
    Joe Taylor over 12 years
    Still asks that the file be run with elevated priveledges
  • Werner Henze
    Werner Henze over 10 years
    @JoeTaylor And how about creating a shortcut to cmd.exe and giving the bat file in the cmdline?
  • Joe Taylor
    Joe Taylor over 10 years
    @werner Henze - have you tried it?
  • Werner Henze
    Werner Henze over 10 years
    @JoeTaylor: This doesn't work for shortcuts to bat files. What exactly do you mean with this? The "run as admin" Checkbox is available for shortcuts to a bat file and for shortcuts to cmd.exe (both tested a few minutes ago). But: the questioner does not want the UAC prompt, and the Checkbox will Trigger the UAC prompt (depending on the UAC Settings).
  • Joe Taylor
    Joe Taylor over 10 years
    The run as elevated, whilst surpressing UAC prompts does not work in the way that the answer intends it to. That's what I meant. Therefore it is not the answer the OP was looking for.
  • bwDraco
    bwDraco over 8 years
    Please exercise caution when recommending software. As written, your answer may be seen as spam. Your answer should include a description of the software and how it addresses the question. More information: How do I recommend software in my answers?
  • ClioCJS
    ClioCJS over 8 years
    Thanks, but no thanks. I don't consider it my responsibility if people falsely assume incorrect things due to their own pessimism and bitterness. I had this problem, and that was my solution to it.
  • Ƭᴇcʜιᴇ007
    Ƭᴇcʜιᴇ007 over 7 years
    It'd be nice if this wasn't just a link. :)
  • harrymc
    harrymc over 7 years
    @Ƭᴇcʜιᴇ007: There are lots of full tutorials for this well-known procedure, still valid today since Vista. This is a very old answer and I probably would have answered with more detail today, but I am also not sure I agree with the latest tendency on SU to insist on long tutorial-like answers. Not every answer needs to be a mini-tutorial, and this answer does describe the principe and the link is to a solid website.
  • Ravindra Bawane
    Ravindra Bawane over 7 years
    I feel like this could become a battle of titans! But actually, I do agree with @Ƭᴇcʜιᴇ007 on this: Links are good, but they can go bad, rendering an answer such as this meaningless in the future.
  • harrymc
    harrymc over 7 years
    @music2myear: The google query has about 369,000 results! Many are of a much better quality than I could/would do.
  • Synetech
    Synetech about 7 years
    Then instead of posting an “answer” that is essentially a just lmgtfy, you could have just posted a link to the Google query as comment to the original answer. But then, you don’t get rep for posting comments, now do you?
  • harrymc
    harrymc about 7 years
    @Synetech: Not the type of answer I would write today, 8 years later, but it was and is still useful. But then, posting comments that most people don't read, how does it help?
  • Ocean Airdrop
    Ocean Airdrop about 2 years
    This worked great for me but I additionally had to add the flag /savecred. With that flag set, when you run the command the 1st time it asks you for the admin password and saves it to the windows credential manager store. After that, it works without prompt on subsequent runs.