#200257 - 2010-10-15 01:34 AM
Re: KIX32.EXE expected a newer version of Windows on Win98
[Re: Allen]
|
Allen
KiX Supporter
   
Registered: 2003-04-19
Posts: 4567
Loc: USA
|
Here is a batch script that can detect an old OS and revert to a different version of kix...
@echo off
ver | find "NT" > nul
if %ERRORLEVEL% == 0 goto oldkixexe
ver | find "98" > nul
if %ERRORLEVEL% == 0 goto oldkixexe
ver | find "95" > nul
if %ERRORLEVEL% == 0 goto oldkixexe
::For all other OSs
:start
kix32.exe scriptname
goto exit
:oldkixexe
kix32_453.exe scriptname
:exit
|
|
Top
|
|
|
|
#200262 - 2010-10-15 03:21 AM
Re: KIX32.EXE expected a newer version of Windows on Win98
[Re: Allen]
|
Lipman
Fresh Scripter
Registered: 2005-05-09
Posts: 45
Loc: Jersey Shore USA
|
If you use the script above it solves that problem. 4.61 detects Win 7, and I believe 4.53/4.60 detects all the others.
I really do NOT want it to launch via a BAT/CM file
While I do have a BAT, it is for dealing with malware that doesn't like EXE file...
@echo off c: cd C:\AV-CLS copy C:\AV-CLS\kix32.exe C:\AV-CLS\kix32.com C:\AV-CLS\kix32.com C:\AV-CLS\menu.kix del C:\AV-CLS\kix32.com exit
The standard way of launching is via a LNK, link file C:\AV-CLS\KIX32.exe C:\AV-CLS\MENU.kix
|
|
Top
|
|
|
|
#200264 - 2010-10-15 03:42 AM
Re: KIX32.EXE expected a newer version of Windows on Win98
[Re: Allen]
|
Lipman
Fresh Scripter
Registered: 2005-05-09
Posts: 45
Loc: Jersey Shore USA
|
Well... I suppose that doesn't leave you with anything to do but put your two cents in the suggestions forum and hope Ruud comes around soon(or I suppose I could move this thread.) As far as I know, he hasn't been around since the launch of 4.61 earlier this year.
I haven't directly communicated with Ruud in like 7 or 8 years when there was a bug in KiXtart detecting DUN connections.
I took your advice however and included v4.53 and v4.61
@echo off ver | find "NT" > nul if %ERRORLEVEL% == 0 goto oldkixexe
ver | find "98" > nul if %ERRORLEVEL% == 0 goto oldkixexe
ver | find "95" > nul if %ERRORLEVEL% == 0 goto oldkixexe
c: cd C:\AV-CLS copy C:\AV-CLS\kix32.exe C:\AV-CLS\kix32.com >nul C:\AV-CLS\kix32.com C:\AV-CLS\menu.kix goto exit
:oldkixexe c: cd C:\AV-CLS copy C:\AV-CLS\KIX329x.exe C:\AV-CLS\kix32.com >nul C:\AV-CLS\kix32.com C:\AV-CLS\menu.kix
:exit del C:\AV-CLS\kix32.com exit
The link file (Start Menu.lnk) has to call the StartMenu.BAT file.
|
|
Top
|
|
|
|
Moderator: Jochen, Allen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Arend_, Mart
|
0 registered
and 837 anonymous users online.
|
|
|