Link to home
Start Free TrialLog in
Avatar of TheIronDuke
TheIronDuke

asked on

My program will not run on Windows 10 unless Run as Administrator is ues

I have a program created using C++ that runs fine on all Windows 7 computers. But the application crashes on Windows 10 computers unless they select "Run as Administrator". This is a serious issue when distributing my software. Is there any way programmatically to allow the program to run in this hostile environment?
Avatar of John
John
Flag of Canada image

You need to change the program so that it is not writing to the Registry and not writing to Program Files and only using the User's folders to write to. Those are the most common reasons.

It is your issue and not a Windows 10 issue. Windows 10 has just gotten more secure and there is no end to that one.
Avatar of McKnife
There shouldn't be a difference between OS' here. Please download and start procmon from microsoft and monitor our system while executing as standard user. Filter the output for "access denied" and you'll see why that happens.
ASKER CERTIFIED SOLUTION
Avatar of Abhilash Pappiyil
Abhilash Pappiyil
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial