Symbian S60 3rd ed. FP2 SDK registration
Asked Answered
B

3

10

Using Nokia SDK emulator requires registration (at least for Symbian S60 3rd ed. FP2, S^3). Despite SDK is free, it asks for "username/serial" number or suggests to "load registration information from the file" after trial period. Since Nokia site shutdown it appears that new SDK users can't register it and use the emulator in development. Also one can't use serial from other machine.

Is there a way to set emulator up and running? (May be getting serial in alternative way.)

P.S. You can download Symbian SDK here.

Bivins answered 24/5, 2015 at 11:21 Comment(1)
Same problem. They effectively killed this system. I can't even fix bugs in my older apps.Echidna
C
5

Now we can reset the 14 day trial using simple bat file. You can run it without Admin rights. It works on both x64 and x86 Windows machines. It requires "wmic", "regini" and "reg" to work.

Tested for S60v3, S60v3FP1, S60v3FP2, S60v5 and S^3 SDKs, with Windows 7, 8.1 and 10 (and XP too as commented). It won't work in Windows 11, because Microsoft removed "wmic" tool in Windows 11.

@echo off
REM this for loop gets User Security ID and assign it to userSID variable
for /f "delims= " %%a in ('"wmic path win32_useraccount where name='%UserName%' get sid"') do (
   if not "%%a"=="SID" (          
      set userSID=%%a
      goto :end
   )   
)
:end

REM this echo used to create temporary text file for REGINI to edit permissions
echo \Registry\user\%userSID%\Software\Nokia\Product Registration [1 5 7 17]>temporary.txt
REGINI temporary.txt
del temporary.txt

REM this reg command deletes registry folder to reset SDK trial 
reg delete "HKEY_CURRENT_USER\Software\Nokia\Product Registration" /f
echo All registration info deleted already.
echo Your S60 Emulator have 14 days trial again.
pause
Consciousness answered 17/4, 2019 at 14:36 Comment(1)
Works on Windows XP SP3 x86Bivins
D
0

You can bypass this by unzipping the installer exe file with 7-zip. It will contain other exe files, unzip those as well, keep doing this until you extracted everything. At the end, you end up with a directory structure like this:

C:\Users\user\Downloads\Nokia_3510_SDK\install\InstallerData\Installer\$VOB_3510I_CA_SDK$\InstallerProjects\Imports

With the SDK I used, this folder contained one final JAR file which you can also unzip, and this contained the phone emulator as exe file.

Downfall answered 25/4, 2020 at 16:49 Comment(0)
S
0

this is actually too easy than these methods.

you just need to open regedit as administrator and go to "\HKEY_CURRENT_USER\Software\Nokia"

than left click to Software Registry, give your user full access, than delete it

Selfpropelled answered 22/5, 2024 at 20:33 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.