dep

Indexing Service + MODI = Full-text over OCR? You wish!

Scenario: You have configured Indexing Service to index your files, which also include scanned images saved as hi-res TIFF files. You also have installed MS Office 2003+ and configured MS Office Document Imaging (MODI) correctly so you can perform OCR on your images and even embed the OCR'd text into TIFFs. Awesomeness: Indexing Service...

"Data Execution Prevention" kills (VS2008) local ASP.Net Development Server (aka Cassini) on Vista 64

Occasionally i find that while debugging an asp.net application (written in visual studio 2008, running on Vista 64) the local ASP.Net development server (i.e. 'Cassini') stops responding. A message often comes up telling me that "Data Execution Prevention (DEP)" has killed WebDev.WebServer.exe The event logs simply tell me that "WebDe...

Track Data Execution Prevention (DEP) problem.

Hi, When running one of our software, a tester was faced with the data execution prevention dialog of Windows. We try to reproduce this situation on a developer computer for debugging purposes : with no success. Does anyone know how to find what may cause the DEP protection to kill the application? Is there any existing tools availab...

Why does FogBugz require that the DEP is turned off?

I am really wondering why FogBugz when installed locally insists that DEP is turned off? ...

JIT compilation and DEP

Hello. I was thinking of trying my hand at some jit compilataion (just for the sake of learning) and it would be nice to have it work cross platform since I run all the major three at home (windows, os x, linux). With that in mind, I want to know if there is any way to get out of using the virtual memory windows functions to allocate mem...

IIS: How to disable Data Execution Prevention in Windows Server 2008?

I've been trying to disable DEP on my windows 2008 dev box and have not succeeded. I've tried: System Properties->Performance Options->Data Execution Prevention->Turn on DEP for essential Windows programs and services only (still happens) System Properties->Performance Options->Data Execution Prevention->Turn on DEP for all programs...

Why is SQL Server deprecating SET ANSI_PADDING OFF?

According to MSDN BOL (Books Online) on SET ANSI_PADDING, In a future version of Microsoft SQL Server ANSI_PADDING will always be ON and any applications that explicitly set the option to OFF will produce an error. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. I h...

C# and Data Execution Prevention (Vista)

Hi, I was writing a small program and have some problems with DEP, what I want to do is to open files stored on another windows-share, my code looks like this: foreach (string file in files) { Process.Start(file); } files is a simple string array with file locations (for example "\myshare\dir\picture.jpg"). This code works witho...

Incompatibilities between Indy 9 and Windows Server 2003?

I'm having a problem with a Delphi application on some Windows 2003 servers. It uses a webservice call to connect with another server and transmit data back and forth. As soon as the app gets to the Authenticate method, the app dies. The app has worked for years on previous boxes with Win Server 2003, but it doesn't on freshly built m...

Windows XP DEP report explorer.exe crash or virus infected

when starting the windows, the application icon on desktop and taskbar and desktop not visible and in the task manager there is no explorer.exe application.how to fix this? thx ...

DEP and ASLR and how to use it?

ASLR and DEP are two techniques that are used to protect applications from hackers. With many modern applications becoming more security-aware, these techniques are becoming more important. For now, I just focus on Windows 7 and these techniques. I wonder when and how I can best use these techniques, especially when developing desktop ap...

DEP - trying to make executables NON-DEP Compliant using msbuild and Team Build Project

I am attempting to resolve a DEP issue by running editbin.exe /NXCOMPAT:NO in a TFS Team build project (instead of just the post build event). Primarily because we have to put the executable into an .msi for deployment. Here is the code that I am using in the target: $(VS90COMNTOOLS)....\VC\bin\editbin.exe $(Solutio...