Thanks Glenn, do you think something like this would work;

 Quote:


; at top of script to set the platform type & architecture
$MyVer = OSVer()
; body of script - init processes
;
; To run something platform and possibly Architecture specific
If InStr('10.0', $MyVer) ; Windows 10
CALL "Win10_Main.kix"
Else
Call "Win7_Main.kix"
EndIf


Ive got the seperate Win7_Main & Win10 Main kix files running perfect as seperate files, just now need one to sit above it to basically go....

Oh your on Win10, hit the Win10_Main.kix file please, if your not, go hit the Win7_Main.kix file please.

John Paul