vote up 2 vote down star
1

I have created a .NET C# WinForms application on Win 7 RTM x64, which let's say I have called DataInstaller.

When I run this program outside of the debugger (just an empty form with no functionality at the moment), it works fine until I close the form. I then get a message from the Program Compatibility Assistant that says:

This program might not have installed correctly

I then get the option to reinstall using recommended settings or to say that the install did work as expected.

If I name the app 'DataThingy' this isn't an issue, I guess this is related to the way that programs called *Setup gain a UAC shield icon.

I assume that there will be something simple that I can put in the application manifest to prevent this?

I'm not sure if this occurs on Vista as I don't have access currently.

Changing the name is not an option and turning off UAC is not an option so please don't suggest this!

Edit:

OMG.

It seems that if any of the following are true, UAC sticks its oar in:

Exe name contains the word Installer

AssemblyInfo.cs

AssemblyTitle contains the word 'Installer'
    e.g. [assembly: AssemblyTitle("DataInstaller")]
AssemblyProduct contains the word 'Installer'
    e.g. [assembly: AssemblyProduct("Data Installation Utility")]

'Installer' can also be 'Setup'.

It beggars belief, it really does. Obviously one of the old VB6 programmers got relocated into the UAC team over at Redmond.

I still need a workaround, I'm not prepared to accept that my application can't possibly be an called an installer because it doesn't touch the registry or put any files in the Program Files folder.

I assume that UAC would put the machine into total lockdown if I tried to execute my application called IAmAVirus.exe. (Actually, I daren't try it because I'm not entirely convinced that I'm just being silly)

flag
Actually, Windows just checks the filename for words like "setup" or "install" to determine if something is an installer or not. Yes, it's dumb... Can something be done about it? I wonder... Good Q, though. – Workshop Alex Oct 16 at 11:05
I hope so, because it's all a bit too 'magic stringy' for my liking.. thanks for the vote! – Carl Oct 16 at 11:15

1 Answer

vote up 1 vote down

Like Workshop Alex will make a guess based on filenames.

But have you tried to add a manifest file ? That allows you to spesify what access rights you need to be run the application.

MSDN on how to create one from Visual studio Another link article that help.

link|flag
Just adding the manifest did the trick (although I did try that before posting this, honest!). For a bit of further info, see: blogs.msdn.com/cjacks/archive/… and technet.microsoft.com/en-us/library/…. Thanks. – Carl Oct 16 at 14:35
As an update, no, this didn't work. As soon as the exe gets deployed to another location, such as <Program Files> the PCA rears its ugly head again. – Carl Nov 3 at 9:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.