Sometimes the user wants to run a 32 Bit application on 64 Bit server. For e.g. running smartermail 32 Bit loaded on 64 Bit windows requires certain tweak to be done. This is feasible through CORFLAGS.exe, a file that comes with the SDK of .NET Framework and and acts a utility to change the header information of .NET assembly. The following command can be used to do the same:
corflags.exe/32Bit+ (if we want to convert it to 32 mode)
corflags.exe/32Bit- (if we want to reverse the same)
This can be used for other software also which requires this kind of tweak.
corflags.exe
corflags.exe
This can be used for other software also which requires this kind of tweak.
Comments