Navigon 40 plus unlocking   

This Section is for General discussion and help for Navigon GPS Systems.

Navigon 40 plus unlocking

Postby GPS Navigacije » Thu Aug 25, 2011 7:21 pm

Hello everybody,

I managed to unlock Navigon 40 plus, but i cant get GPS signal. I try to install Port spliter but PS wont start. It seems that i cant install Port splitter on this device. Any solutions maybe? Please very urgent!!!

Thanks in advance
GPS NAVIGACIJE
GPS Navigacije offline


Junior Member



 
Joined: Tue Jun 21, 2011 9:07 pm
Posts: 6
Location: Kragujevac
Has thanked: 0 time
Been thanked: 0 time
Age: 52

Postby Fatboyfun » Thu Aug 25, 2011 7:40 pm

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...
Currently sleeping...
Fatboyfun offline


User avatar Ex Moderator



 
Joined: Mon May 17, 2010 5:34 pm
Posts: 5782
Has thanked: 2 times
Been thanked: 403 times

Postby GPS Navigacije » 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...


Working. Thank you very much
GPS NAVIGACIJE
GPS Navigacije offline


Junior Member



 
Joined: Tue Jun 21, 2011 9:07 pm
Posts: 6
Location: Kragujevac
Has thanked: 0 time
Been thanked: 0 time
Age: 52

Postby Fatboyfun » Thu Aug 25, 2011 9:08 pm

No problem :)
Fatboyfun offline


User avatar Ex Moderator



 
Joined: Mon May 17, 2010 5:34 pm
Posts: 5782
Has thanked: 2 times
Been thanked: 403 times

Postby GPS Navigacije » Thu Aug 25, 2011 9:26 pm

Now i Have problem with loosing autostart setings in Port Splitter. Have you got solution for this maybe.
GPS NAVIGACIJE
GPS Navigacije offline


Junior Member



 
Joined: Tue Jun 21, 2011 9:07 pm
Posts: 6
Location: Kragujevac
Has thanked: 0 time
Been thanked: 0 time
Age: 52

Postby Fatboyfun » Fri Aug 26, 2011 6:10 am

Yes, but i am at work now so check back later...
Fatboyfun offline


User avatar Ex Moderator



 
Joined: Mon May 17, 2010 5:34 pm
Posts: 5782
Has thanked: 2 times
Been thanked: 403 times

Postby Fatboyfun » Fri Aug 26, 2011 4:51 pm

I don't know how you unlocked your device, but add these lines to the .mscr script [color="red"]before PortSplitter is started [/color]and edit if necessary...

RegWriteString( "HKLM", "SOFTWARE\JAL\Port Splitter", "InstallPath", [color="red"]SystemPath("ScriptPath")[/color] )
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] )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Port", [color="red"]2[/color] )

If you are not using a script then post back...
Currently sleeping...
Fatboyfun offline


User avatar Ex Moderator



 
Joined: Mon May 17, 2010 5:34 pm
Posts: 5782
Has thanked: 2 times
Been thanked: 403 times

Postby GPS Navigacije » Fri Aug 26, 2011 8:02 pm

I am not using script for unlocking. This unlock is with SystemInformation32.exe and Updateme.exe files. There is not any Script file inside this unlock.
GPS NAVIGACIJE
GPS Navigacije offline


Junior Member



 
Joined: Tue Jun 21, 2011 9:07 pm
Posts: 6
Location: Kragujevac
Has thanked: 0 time
Been thanked: 0 time
Age: 52

Postby Fatboyfun » Fri Aug 26, 2011 9:52 pm

Ok then, I've modified the RunGMXT script from Garmin Mobile XTCE to work for iGO

Download this -> 3134

Extract the individual files into the iGO directory

Open Start iGO.mscr with Notepad

Check the port and baud are correct, I think it's Port 5 and Baud 57600 but modify if necessary

I assumed the iGO executable was named iGO.exe, Check and rename

Set the system information unlock to run Start iGO.exe

# 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 )
Currently sleeping...
Fatboyfun offline


User avatar Ex Moderator



 
Joined: Mon May 17, 2010 5:34 pm
Posts: 5782
Has thanked: 2 times
Been thanked: 403 times

Postby GPS Navigacije » Fri Aug 26, 2011 11:07 pm

Not working my friend. "Application MortScript.exe encountered a serious error and must shut down" . Any idea about this error?
GPS NAVIGACIJE
GPS Navigacije offline


Junior Member



 
Joined: Tue Jun 21, 2011 9:07 pm
Posts: 6
Location: Kragujevac
Has thanked: 0 time
Been thanked: 0 time
Age: 52

Postby Fatboyfun » Sat Aug 27, 2011 7:51 am

Remove Toolhelp.dll and try again
Fatboyfun offline


User avatar Ex Moderator



 
Joined: Mon May 17, 2010 5:34 pm
Posts: 5782
Has thanked: 2 times
Been thanked: 403 times

Postby nitinule » Mon Aug 27, 2012 7:45 am

Fatboyfun wrote:Remove Toolhelp.dll and try again


Thanks buddy.. It worked.. ow no Error Message.. you were on Dot
nitinule offline


Junior Member



 
Joined: Thu Oct 27, 2011 7:06 am
Posts: 90
Has thanked: 1 time
Been thanked: 3 times

Postby soto » Sat Apr 06, 2013 8:04 am

links not working can you upload again please
soto offline


Junior Member



 
Joined: Sun Jun 13, 2010 2:12 pm
Posts: 1
Has thanked: 0 time
Been thanked: 0 time

Re: Navigon 40 plus unlocking

Postby salleserbian » Sun Jan 25, 2015 10:53 pm

Hello I have Navigon 40 Premium, and I managed to solve the problem of installing IGO 8 or PRIMO or any navigation. THIS The internal memory devices that folder ManualReader I copied igo.exe and the rest of the necessary files and folders (content .....), then I renamed the file ManualReader.exe in ManualReader1.exe a name ManualReader.exe gave igo.exe UNDERSTAND what I did. Right. Then I turned off the navigation. On, immediately started the standard NAVIGON software but now the magic happens. WHEN the initial screen select the BOTTOM OPTION so GUIDE. EEEE now start IGO or PRIMO. In this way navi itself include a GPS receiver and he's doing, and IGO easily detect the GPS settings. Who understands me realize is, it's crazy. Thank write to [email protected]. GREETINGS FROM THE REPUBLIC OF SERBIAN, ...... :lol: :lol: :lol: :023:
salleserbian offline


Junior Member



 
Joined: Sun Jan 25, 2015 10:48 pm
Posts: 7
Has thanked: 0 time
Been thanked: 2 times

Re: Navigon 40 plus unlocking

Postby odokrim » Sat Mar 19, 2016 8:26 am

Hvala svaka ti cast !!!
odokrim offline


Junior Member



 
Joined: Fri Mar 18, 2016 4:49 pm
Posts: 1
Has thanked: 1 time
Been thanked: 0 time


Return to General Discussion about Navigon

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 1 guest