A
Axel Dahmen
Hi,
I've created a few simple console tools. No .NET used at all, just STL.
Now I want to just XCOPY them to another machine. But running them there yields a couple of errors in the application log telling me that some ..NET DLL could not be found:
"The application has failed to start because its side-by-side configuration is incorrect.
Please see the application event log for more details."
The application log says:
"Activation context generation failed for "D:\Documents\MyTools\SomeTool.exe". Dependent Assembly Microsoft.VC90.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="9.0.21022.8" could not be found. Please use sxstrace.exe for detailed diagnosis."
I learned that this error occurs because of missing .NET runtime files on the target machine. But I DON'T want to install .NET on the target machine. I'm *intentionally* just using common API and STL functions.
Can someone please enlighten me on how to set up a VC++ project to don't use .NET at all?
I just want to create some simple DOS tools that I can put on my USB stick to help me with my daily work.
TIA,
Axel Dahmen
I've created a few simple console tools. No .NET used at all, just STL.
Now I want to just XCOPY them to another machine. But running them there yields a couple of errors in the application log telling me that some ..NET DLL could not be found:
"The application has failed to start because its side-by-side configuration is incorrect.
Please see the application event log for more details."
The application log says:
"Activation context generation failed for "D:\Documents\MyTools\SomeTool.exe". Dependent Assembly Microsoft.VC90.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="9.0.21022.8" could not be found. Please use sxstrace.exe for detailed diagnosis."
I learned that this error occurs because of missing .NET runtime files on the target machine. But I DON'T want to install .NET on the target machine. I'm *intentionally* just using common API and STL functions.
Can someone please enlighten me on how to set up a VC++ project to don't use .NET at all?
I just want to create some simple DOS tools that I can put on my USB stick to help me with my daily work.
TIA,
Axel Dahmen