setwin95.cmd
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.
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
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
Participate on our website and join the conversation
This topic is archived. New comments cannot be posted and votes cannot be cast.
Responses to this topic
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
@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
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
@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
No problem, glad its working for you.