Roman Nazarkin
Roman Nazarkin

Reputation: 2229

How to avoid UAC in second run of program?

I've written a C# application which adds to autorun on first launch.

But I have a problem: when autorun starts the program, UAC displays a warning like this:


(source: micp.ru)

How can I prevent this?

Upvotes: 0

Views: 169

Answers (1)

That's not UAC, that's the "oh noes teh internetz are full of virusez" warning, which is displayed on programs from the internet, and on programs that... well, even I don't understand some of the criteria. (I've run into it a few times while writing batch files on my computer.) Try unchecking the checkbox - that should banish the message. (If there's no checkbox, you're stuck with the message.)

Upvotes: 3

Related Questions