iPhone import contacts from Nokia Symbian S3

It is very difficult to  get phone contacts from other phone to iPhone. But it is not so, if below method is followed.

I have found the simple method to dowload contacts to iPhone.

* Remeber Sync will delete all existing contacts manually created or which exists in iPhone. 

In Nokia Phone :

1) Go to > Contacts > Mark All contacts > Copy to Memeory 

 It should take sometime for moving all conacts if your contacts are in 100s.

Once done, Connect the Nokia phone to PC & Browse the folders.

In memory Card :

In memory card goto > Others 

You can identify the folder named "Other" having all contacts as vCard files.

Select C:/  drive

Create a new folder > VCARD   

Paste all files here.

Outlook :

 Now Open outlook in Microsoft office .

(Required  create a new group of contacts to get phone contacts isolated from email business cards)

Goto Explorer > Copy vCards files in batch 10 & paste it in he contact group, but method requires save & close each screen.

 

Other easy method is…….

 
Press ALT+F11.

VB Editor will open  

Click TOOLS –> REFERENCES and then select Microsoft Scripting Runtime and Windows Script Host Object Model from the list of avaialable references and place checks in the box next to each and click OK.

Next click INSERT –> MODULE and copy and paste the code below into the blank module. Save and run the macro to automatically import and save all the individual files into Outlook.

 

Now paste the full code completely.

 

Sub OpenSaveVCard()
   
Dim objWSHShell As IWshRuntimeLibrary.IWshShell
Dim objOL As Outlook.Application
Dim colInsp As Outlook.Inspectors
Dim strVCName As String
Dim fso As Scripting.FileSystemObject
Dim fsDir As Scripting.Folder
Dim fsFile As Scripting.File
Dim vCounter As Integer
   
   
Set fso = New Scripting.FileSystemObject
Set fsDir = fso.GetFolder("C:\VCARDS")

For Each fsFile In fsDir.Files

    strVCName = "C:\VCARDS\" & fsFile.Name
    Set objOL = CreateObject("Outlook.Application")
    Set colInsp = objOL.Inspectors
        If colInsp.Count = 0 Then
        Set objWSHShell = CreateObject("WScript.Shell")
objWSHShell.Run Chr(34) & strVCName & Chr(34)
        Set colInsp = objOL.Inspectors
    If Err = 0 Then
            Do Until colInsp.Count = 1
                DoEvents
            Loop
            colInsp.Item(1).CurrentItem.Save
            colInsp.Item(1).Close olDiscard
            Set colInsp = Nothing
            Set objOL = Nothing
            Set objWSHShell = Nothing
        End If
    End If

Next

End Sub

After pasting press F5 or Run button.

You can see all vcards get added into contacts in outlook application one by one.

 Depends on the number of contacts it can take more time(600 Contacts took about 10~15 minutes)

iTune 8 : Windows mode.

Open iTune in Windows.

Connect the iPhone to USB & you can see your iPhone name in the Devices list.

On main screen you would see Summary & then Info .. tab to Info

In Contacts row : Select Syc Contacts with >Outlook> All Contacts

Goto bottom the application window> Advanced settings.

 You will see contacts check box avaialble to check.

Check it now> & Press Apply.

iPhone will say Sync in Progress

 Done!

You can get all your vCard  files extension .vcf files converted to your iPhone contacts list.

 Thanks to Mr.Rollin for VBScript. Reference link.

 http://forums.techguy.org/members/82274-rollin_again.html



Comments