3da 0 Posted October 1, 2002 Hi Can somone please tell me if there is another way of getting hold of the setwin95.cmd file, except copying from the win-nt cd as I no longer have the cd. I am trying to install nfs3 on Win nt but with no luck.... Thanks 3DA Share this post Link to post
adamvjackson 0 Posted October 1, 2002 Here you go... just save the following text as setwin95.cmd: @echo off REM REM This batch script will mark an image file so that it thinks it is running REM on Windows 95. REM if "%1" == "" goto usage echo Marking %1 executable so it thinks it is running on Windows 95 imagecfg -w 0xC0000004 %1 >nul goto done :usage echo Usage: SETWIN95 executableFileName :done Share this post Link to post
Four and Twenty 0 Posted October 1, 2002 Quote: Here you go... just save the following text as setwin95.cmd: @echo off REM REM This batch script will mark an image file so that it thinks it is running REM on Windows 95. REM if "%1" == "" goto usage echo Marking %1 executable so it thinks it is running on Windows 95 imagecfg -w 0xC0000004 %1 >nul goto done :usage echo Usage: SETWIN95 executableFileName :done imagecfg is a great little tool it can be used to mod exes for proccessor affinity aswell Share this post Link to post
3da 0 Posted October 1, 2002 Finaly it's working!! Thanks for helping me!!!!!!!!!!!!! Share this post Link to post
adamvjackson 0 Posted October 1, 2002 No problem, glad its working for you. Share this post Link to post