Running bat file at startup as administrator in Windows 7

37

9

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?

simon

Posted 2009-11-16T12:44:31.123

Reputation: 1 375

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? – Kyle Delaney – 2018-05-02T20:07:12.027

Answers

24

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.

harrymc

Posted 2009-11-16T12:44:31.123

Reputation: 306 093

3It'd be nice if this wasn't just a link. :) – Ƭᴇcʜιᴇ007 – 2016-12-01T17:51:53.253

1@Ƭᴇ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. – harrymc – 2016-12-01T20:23:00.887

2I 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. – music2myear – 2016-12-19T16:56:51.927

1

@music2myear: The google query has about 369,000 results! Many are of a much better quality than I could/would do.

– harrymc – 2016-12-19T17:32:13.437

2Then 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? – Synetech – 2017-05-11T00:19:35.190

@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? – harrymc – 2017-05-11T07:29:41.850

4

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.

vana.yp

Posted 2009-11-16T12:44:31.123

Reputation: 41

1Still asks that the file be run with elevated priveledges – Joe Taylor – 2011-09-27T13:45:24.123

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.

Guy Thomas

Posted 2009-11-16T12:44:31.123

Reputation: 3 160

2

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.

joe

Posted 2009-11-16T12:44:31.123

Reputation: 11 615

2

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.

ClioCJS

Posted 2009-11-16T12:44:31.123

Reputation: 118

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?

– bwDraco – 2015-10-03T00:04:50.327

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. – ClioCJS – 2015-10-03T17:46:13.430

1

runas /user:SomeLocalAdminAccount

Here must be like this:

runas /noprofile /user:mymachine\administrator cmd

runas /profile /env /user:mydomain\admin "mmc %windir%\system32\dsa.msc

runas /env /user:user@domain.microsoft.com "notepad \"my file.txt\""

BigGinDaHouse

Posted 2009-11-16T12:44:31.123

Reputation: 111

1Still asks that the file be run with elevated priveledges – Joe Taylor – 2011-09-27T13:45:09.897

1

Maybe UACPass (free) will solve it:

  • Install the program.
  • Open the UACPass window.
  • Drag to it the program you are pretending to run at boot.

Done. This program should now run as admin without UAC prompt.
The program even has an option for add to startup :-D .

Your program will only run after logon (or so I think).

Sopalajo de Arrierez

Posted 2009-11-16T12:44:31.123

Reputation: 5 328

-1

You can also make a shortcut and specify that the shortcut's file should be run elevated.

(It's in some advanced options box.)

riking

Posted 2009-11-16T12:44:31.123

Reputation: 11

This doesn't work for shortcuts to bat files. Try it. – Joe Taylor – 2011-09-27T13:43:50.210

@JoeTaylor And how about creating a shortcut to cmd.exe and giving the bat file in the cmdline? – Werner Henze – 2013-11-27T17:43:06.737

@werner Henze - have you tried it? – Joe Taylor – 2013-12-02T13:01:10.097

@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). – Werner Henze – 2013-12-02T13:13:39.620

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. – Joe Taylor – 2013-12-02T13:18:24.313