Unlock Navman My75T   

Unlock Navman My75T

Postby savernake » Sun Dec 16, 2012 8:16 pm

How can I unlock navman gps my75t to install tomtom or other
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Postby chas521 » Sun Dec 16, 2012 8:53 pm

savernake wrote:How can I unlock navman gps my75t to install tomtom or other


Honestly, I wouldn't know. I can't find much information about the specifications.
If it ain't broke don't fix it!
ALWAYS BACK-UP YOUR FILES/FOLDERS BEFORE MAKING EDITING CHANGES!

Please do NOT post any thanks. Simply press the hand icon with the "thumb up" which is the thank you button.
chas521 offline


User avatar Ex Moderator



 
Joined: Sat May 15, 2010 8:50 pm
Posts: 4549
Location: Long Island, NY
Has thanked: 64 times
Been thanked: 1332 times

Postby savernake » Sun Dec 16, 2012 9:07 pm

uses windows ce
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Postby chas521 » Sun Dec 16, 2012 9:20 pm

savernake wrote:uses windows ce


Not positive, but uses WinCE 6. Do a Google search for MioPocket. However not sure it will work for your device. Maybe though.
If it ain't broke don't fix it!
ALWAYS BACK-UP YOUR FILES/FOLDERS BEFORE MAKING EDITING CHANGES!

Please do NOT post any thanks. Simply press the hand icon with the "thumb up" which is the thank you button.
chas521 offline


User avatar Ex Moderator



 
Joined: Sat May 15, 2010 8:50 pm
Posts: 4549
Location: Long Island, NY
Has thanked: 64 times
Been thanked: 1332 times

Postby chas521 » Sun Dec 16, 2012 9:27 pm

Saw this regarding MioPocket and your device:

I changed the script to test if toolhelp.dll was needed before it copied it everywhere. That's fixed my problem with the NAVMAN MY75T.

I suspect what actually fixed it was just the checking process SupportsProcHandling(). My theory is that this command forced the toolhelp.dll to be loaded and allowed all the other proc handling code to work.

For Reference I changed the lines in mioautorun.mscr (auto.mscr for Navman devices) that copy toolhelp, to the following lines of code.

WriteFile(InstallLogFile, "MioAutoRun.mscr: Checking the System Supports process Handling...^NL^", TRUE)
WriteFile(InstallLogFile, "MioAutoRun.mscr: SupportsProcHandling = " & SupportsProcHandling() & " ...^NL^", TRUE)

If (SupportsProcHandling()=TRUE)
WriteFile(InstallLogFile, "MioAutoRun.mscr: INFO: The System Supports process Handling...^NL^", TRUE)
Else
WriteFile(InstallLogFile, "MioAutoRun.mscr: Warning: The System Does Not Support process Handling...^NL^", TRUE)

#Copy toolhelp.dll to \Windows so that the ProcExists commands in this script will work
If(SystemVersion("major") = 6)
WriteFile(InstallLogFile, "MioAutoRun.mscr: Copying CE6 version of toolhelp.dll to the system...^NL^", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", "\Windows\toolhelp.dll", TRUE)
Else
WriteFile(InstallLogFile, "MioAutoRun.mscr: Copying toolhelp.dll to the system...^NL^", TRUE)
Copy(SystemFolder\"toolhelp.dll", "\Windows\toolhelp.dll")
EndIf
EndIf

If(SystemVersion("major") = 6)
#If CE6, replace all copies of toolhelp.dll with the CE6 version, since MortScript crashes with the pre-CE6 version
WriteFile(InstallLogFile, "MioAutoRun.mscr: Copying CE6 versions of toolhelp.dll to miopocket...^NL^", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", ProgramsFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", ProgramsFolder\"MortScript\toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", ScriptsFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", SystemFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", SystemFolder\"Extra\toolhelp.dll", TRUE)
If(FileExists(SkinFolder\"SystemInformation\MyApps\toolhelp.dll"))
Copy(SystemFolder\"CE6\toolhelp.dll", SkinFolder\"SystemInformation\MyApps\toolhelp.dll", TRUE)
EndIf
Else
#If not CE6, restore all copies of toolhelp.dll back to the CE4 version
#(in case you have both a CE5 and CE6 device using the same SD card)
WriteFile(InstallLogFile, "MioAutoRun.mscr: Copying CE4 versions of toolhelp.dll to miopocket...^NL^", TRUE)
Copy(SystemFolder\"CE4\toolhelp.dll", ProgramsFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE4\toolhelp.dll", ProgramsFolder\"MortScript\toolhelp.dll", TRUE)
Copy(SystemFolder\"CE4\toolhelp.dll", ScriptsFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE4\toolhelp.dll", SystemFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE4\toolhelp.dll", SystemFolder\"Extra\toolhelp.dll", TRUE)
If(FileExists(SkinFolder\"SystemInformation\MyApps\toolhelp.dll"))
Copy(SystemFolder\"CE4\toolhelp.dll", SkinFolder\"SystemInformation\MyApps\toolhelp.dll", TRUE)
EndIf
EndIf

Thanks to tonyfussell
If it ain't broke don't fix it!
ALWAYS BACK-UP YOUR FILES/FOLDERS BEFORE MAKING EDITING CHANGES!

Please do NOT post any thanks. Simply press the hand icon with the "thumb up" which is the thank you button.
chas521 offline


User avatar Ex Moderator



 
Joined: Sat May 15, 2010 8:50 pm
Posts: 4549
Location: Long Island, NY
Has thanked: 64 times
Been thanked: 1332 times

Postby savernake » Sun Dec 16, 2012 10:07 pm

The code test what version of windows CE is in the device 4 or 6?And copy some files?Im gonna use the MioPocket to unlock the Gps?Where im gonna use your code?Thanks for your help.
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Postby chas521 » Sun Dec 16, 2012 10:23 pm

I PMed you.
If it ain't broke don't fix it!
ALWAYS BACK-UP YOUR FILES/FOLDERS BEFORE MAKING EDITING CHANGES!

Please do NOT post any thanks. Simply press the hand icon with the "thumb up" which is the thank you button.
chas521 offline


User avatar Ex Moderator



 
Joined: Sat May 15, 2010 8:50 pm
Posts: 4549
Location: Long Island, NY
Has thanked: 64 times
Been thanked: 1332 times

Postby chas521 » Sun Dec 16, 2012 10:31 pm

MioPocket installation instructions [Please Register or Login to download file]
If it ain't broke don't fix it!
ALWAYS BACK-UP YOUR FILES/FOLDERS BEFORE MAKING EDITING CHANGES!

Please do NOT post any thanks. Simply press the hand icon with the "thumb up" which is the thank you button.
chas521 offline


User avatar Ex Moderator



 
Joined: Sat May 15, 2010 8:50 pm
Posts: 4549
Location: Long Island, NY
Has thanked: 64 times
Been thanked: 1332 times

Postby savernake » Mon Dec 17, 2012 12:10 am

When i try to install, he do the install but when reboot show application error application MortScript.exe encountered a serious error and must shut down
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Postby Fatboyfun » Mon Dec 17, 2012 8:31 am

Which version of miopocket did you install?
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 savernake » Mon Dec 17, 2012 5:34 pm

MioPocket 4.0 Release 68
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Postby Fatboyfun » Mon Dec 17, 2012 6:18 pm

Did you install it as instructed?

Can you access the device with a PC as normal?

Did you make a full backup before starting?
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 savernake » Mon Dec 17, 2012 7:10 pm

Yes, he do the install but when reboot show the message "application error application MortScript.exe encountered a serious error and must shut down".I can acess the device normal with the pc.
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Postby Fatboyfun » Mon Dec 17, 2012 10:35 pm

This error can be caused by using the wrong toolhelp.dll, Buried away in the mioautorun\system folder are dll's, workout what WinCE version you have, then copy the toolhelp.dll from the system folder for WinCE 5 or the system\ce6 folder for WinCE 6, place this dll in the root directory where Mortscript.exe is 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 savernake » Mon Dec 17, 2012 11:31 pm

Where i can see my version of windows ce?I found 2 toolhelp.dll one in ce6 folder and other in the ce4 folder. ce5 folder dont have any. I test with 2 toolhelp.dll and didnt work.
savernake offline


Junior Member



 
Joined: Sun Dec 16, 2012 7:57 pm
Posts: 21
Has thanked: 0 time
Been thanked: 0 time

Next

Return to Navman Device Unlock

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 1 guest