Thu Aug 25, 2011 7:21 pm
Thu Aug 25, 2011 7:40 pm
Thu Aug 25, 2011 9:02 pm
Fatboyfun wrote:According to a post on another forum, PortSplitter needs the file aygshell.dll to run on the Navigon 40 Plus.
3133
Extract to the PortSplitter folder and try again...
Thu Aug 25, 2011 9:08 pm
Thu Aug 25, 2011 9:26 pm
Fri Aug 26, 2011 6:10 am
Fri Aug 26, 2011 4:51 pm
Fri Aug 26, 2011 8:02 pm
Fri Aug 26, 2011 9:52 pm
# You must copy all the files into the iGO directory otherwise you will need to edit all the paths!
# Fatboyfun 2011 http://www.navitotal.com
# Write registry entries
RegWriteString ("HKLM", "SOFTWARE\JAL\Port Splitter", "InstallPath", SystemPath("ScriptPath") )
RegWriteDWord ("HKLM", "SOFTWARE\JAL\Port Splitter", "MajorVersion", 1 )
RegWriteDWord ("HKCU", "Software\JAL\Port Splitter", "Split", 2 )
RegWriteDWord ("HKCU", "Software\JAL\Port Splitter", "Autostart", 1 )
RegWriteDWord ("HKCU", "Software\JAL\Port Splitter", "Baud", [color="red"]11[/color] ) [color="red"](<- 10 = 56000, 11 = 57600, 12 = 115200)[/color]
RegWriteDWord ("HKCU", "Software\JAL\Port Splitter", "Port", [color="red"]5[/color] )
Sleep (100)
# Check if process exists and start Port Splitter if not
If(not ProcExists("Port Splitter.exe"))
Run(SystemPath("ScriptPath")\"Port Splitter.exe")
Sleep(500)
EndIf
# Start iGO and wait...
RunWait (SystemPath("ScriptPath")\"iGO.exe")
# iGO has closed so...
# Stop Port Splitter properly otherwise it needs a reboot to restart
If(WndExists("Port Splitter V1.20"))
SendCommand("Port Splitter V1.20", 1010)
Sleep(500)
SendCommand("Port Splitter V1.20", 2)
Sleep(500)
EndIf
# Kill Port Splitter process
If(ProcExists("Port Splitter.exe"))
Kill("Port Splitter.exe")
EndIf
# remove registry entries
RegDeleteKey( "HKLM", "SOFTWARE\JAL", TRUE, TRUE )
RegDeleteKey( "HKCU", "Software\JAL", TRUE, TRUE )
Fri Aug 26, 2011 11:07 pm
Sat Aug 27, 2011 7:51 am
Mon Aug 27, 2012 7:45 am
Fatboyfun wrote:Remove Toolhelp.dll and try again
Sat Apr 06, 2013 8:04 am
Sun Jan 25, 2015 10:53 pm
Sat Mar 19, 2016 8:26 am