Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data Execution Prevention 1

Status
Not open for further replies.

bluenoser337

Programmer
Jan 31, 2002
343
CA
The installation of the ActiveX component required to do a Windows Update on XP Pro SP3 is failing due to DEP. I cannot find a way around this. Any suggestions appreciated. Thanks!!
 
What browser? IE8? IE7?

If it's IE8 have you tried resetting the browser to default settings? (Tools->Options->Advanced Tab->Reset button)

Generally speaking DEP is only on for Windows services and components (which probably includes IE.)

I don't think you can outright disable it or add an activex control (on mine I don't see it) from System Properties (System Properties->Advanced tab->Performace button->Data Execution Prevention tab.)
 
It sounds strange that DEP would fail with anything to do with Windows Updates.

Have you checked if you can get things installed if you temporarily disable all running Startup programs and non-Microsoft Services via MsConfig?

310560 - How to Troubleshoot By Using the Msconfig Utility in Windows XP
 
DEP can be turned off at a GLOBAL LEVEL, to do so you will need to edit the BOOT.INI file (located on the C drive), and change the following line.

from:
Code:
multi(0)disk(0)rdisk(0)partition(1)WINDOWS="Microsoft Windows XP Professional" /fastdetect /noguiboot /execute=optin


to:
Code:
multi(0)disk(0)rdisk(0)partition(1)WINDOWS="Microsoft Windows XP Professional" /fastdetect /noguiboot /execute=AllwaysOff

reboot, and this should allow you to continue with the ActiveX install...

though it should not be the root cause of the problem...



Ben
"If it works don't fix it! If it doesn't use a sledgehammer..."
How to ask a question, when posting them to a professional forum.
Only ask questions with yes/no answers if you want "yes" or "no"
 
I've seen DEP default to the alt setting many a time.

Before turning it off, try.

My Computer > Properties> Advanced > Settings > DEP. Set to eseential programmes and services only.



Robert Wilensky:
We've all heard that a million monkeys banging on a million typewriters will eventually reproduce the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true.

 
BigBadBen...thank you...that worked!! I had already tried everything in the IE8 settings and with the DEP settings but nothing worked until this boot.ini file change. I have saved my original line in case I want to (need to) put it back in later. Thanks to all that replied!!
 
You are welcome, I would re-enable DEP until you run into another similar problem...

DEP can prevent unwanted code change on system-files and drivers, with it off it wont be able to and certain malware can change these...


Ben
"If it works don't fix it! If it doesn't use a sledgehammer..."
How to ask a question, when posting them to a professional forum.
Only ask questions with yes/no answers if you want "yes" or "no"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top