开发者

How to automatically run a VB6 compiled software as Administrator and in Compatibility mode

开发者 https://www.devze.com 2023-03-28 21:25 出处:网络
We have an ERP application which is built in VB6 and it was running just fine till a few of our customer upgraded all their systems to Win7.

We have an ERP application which is built in VB6 and it was running just fine till a few of our customer upgraded all their systems to Win7.

This software is programmed in such a way that it registers a few plugins (found in plugin folder) which are COM based at runtime. Now when the software is run by user without setting Compatibility Mode and Run as Administrator setting it fails and crashes.

I know we can manually set both Compatibility Mode as well as Run a Administrator b开发者_如何转开发y right clicking on program executable and then going to its properties. But this looks very unprofessional.

I think there will be some way to tell Win 7 to automatically run a software in Compatibility Mode and Run as Administrator.

Please help me.


Compatibility is an administrative function, not a development or deployment function. It is better to fix the application where possible, especially to remove any requirement for elevation.

There are plenty of tools for investigating the issues so you can correct them. However globally registering "plug ins" at runtime is a nasty one. VB6 component self-registration is always global unless registry virtualization can redirect it. Why not create installers for the plug-ins that can run elevated once during installation?

There are ways to set compatibility less manually, even as part of installation - though Microsoft discourages this. Maybe take a look at:

Compatibility Fix Database Management Strategies and Deployment

However the effort required might be better spent on remediating the problem. Support costs will be less over time.


As the other answers have said, you shouldn't need to run all the time elevated. If you want to register the plugins after its started (as a normal user), you can use ShellExecute() with the "runas" verb to run regsvr32.exe, or use COM elevation which has been discussed many times before.


You can indicate that an application must run as admin by specifying it in the Application Manifest, which in an xml file that you can either embed or deploy with your application.

Once your application is running with admin rights it should be able to register and load the plugins. You should not need to run in compatibility mode to access the COM plugins.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号