I have bult a VB.NET application, that I want to be portable on a USB drive.
Now I want to run that application on a computer where I am only "guest", and no .NET (not even 1.1) are installed.
I get the following error message:
The application failed to initalize propely (0xc0000135)
I have searched and found out that I need to install .NET
But the .NET installer ask for Administrator password. The network admin refuses to install .NET
I have the ability to run EXE's, but not Setups.
I need to do ONE thing of these to be able to run the application:
1: Install the .NET framework on the USB thumbdrive and have the application use the .NET framework from there.
2: Place the required parts of .NET framework in same folder as EXE and then in some way force the EXE to use these files.*
3: Embed the .NET framework in the EXE in some way.
I need a free way to accomplish either 1, 2 or 3, so the application gets portable, and no .NET install should be required.
* I have tried to take the required parts, and then compile the application using the console compiler with the /nostdlib and /novbruntimeref and then using /reference to include the .NET dlls from "." (current directory for the EXE), but still it gives the "The application failed to initalize propely (0xc0000135)" error message when run on a non-.NET computer.
The size of the final application folder/directory dosent matter.
Now I want to run that application on a computer where I am only "guest", and no .NET (not even 1.1) are installed.
I get the following error message:
The application failed to initalize propely (0xc0000135)
I have searched and found out that I need to install .NET
But the .NET installer ask for Administrator password. The network admin refuses to install .NET
I have the ability to run EXE's, but not Setups.
I need to do ONE thing of these to be able to run the application:
1: Install the .NET framework on the USB thumbdrive and have the application use the .NET framework from there.
2: Place the required parts of .NET framework in same folder as EXE and then in some way force the EXE to use these files.*
3: Embed the .NET framework in the EXE in some way.
I need a free way to accomplish either 1, 2 or 3, so the application gets portable, and no .NET install should be required.
* I have tried to take the required parts, and then compile the application using the console compiler with the /nostdlib and /novbruntimeref and then using /reference to include the .NET dlls from "." (current directory for the EXE), but still it gives the "The application failed to initalize propely (0xc0000135)" error message when run on a non-.NET computer.
The size of the final application folder/directory dosent matter.