How to Setup Mobile Phone Internet using Nokia, Samsung Mobile Phone on Laptop and PC
If your mobile have internet connection available then you can use it on laptop or desktop for PC internet access. There are few things we require before we can proceed to actual configuration. Firstly a mobile phone having modem facility, mobile service providers which offers PC internet, data cable or Bluetooth for connectivity, driver for Bluetooth or phone modem and of course a Laptop or Desktop. For this practical work I will be using Nokia 3110 Classic phone which has modem, Nokia PC Suite (contains driver and internet wizard), Reliance GSM SIM Card which is recharged with monthly unlimited PC internet pack, a USB data cable and my Desktop (which I assembled myself). I will also show you how to setup Bluetooth connection later in this tutorial. This is one of the simple task of world if everything goes well.
Various operators have various internet pack plans and you should choose such a plan which is within your budget. If you compare GSM Internet services (upto 128kbps but practically around 8kbps) with CDMA Internet services (upto 154kbps but practically around 12kbps) like Reliance Netconnect or Tata Photon. In my area Reliance GSM Internet services costs Rs. 303/- monthly for unlimited internet and Reliance CDMA Internet services costs around Rs. 1100/- monthly for unlimited internet access. Similarly Airtel provides Internet service at Rs. 449/- per month for unlimited access but its service is not as good as Reliance GSM provides. Again BSNL GSM Internet is there but it does not work in my area but works fine in my buddy’s area and sometime it perform faster than above all.
Well these analyses were based on my own experience with these guys and may differ in cost and service in your area. You are clever enough to make decision which one to opt and which to drop.
In India we have 3G service providers like BSNL & MTNL and in many parts of world already have 3G and 3.5G. If you live in those cities where 3G/3.5G is available then you can enjoy mobile broadband service (broadband service on mobile) and you can also surf internet through Laptop or Desktop.
Steps to setup mobile internet using Data Cable.
First of all you need to install Nokia PC Suite (a free application), make sure you install latest PC Suite because latest and updated PC Suite software contains almost all Nokia phone models’ driver. If you have Sony Ericson or Samsung then install their respective drivers. Don’t connect phone while you install driver unless you are prompted to do so. Restart your computer if prompted to do so.
Now connect you phone and select Nokia Mode or PC Mode (don’t select Data Transfer, Data Storage or Printing Mode. They are for different purpose). Windows will start installing driver for your phone, be patient while it install driver, it takes time to install. If everything goes right then it will show a message like “Nokia 3110c connected via USB”, see below image.
3G phones on eBay
|
|
Verizon Motorola Droid X No Contract 3G WiFi Camera 1GHz Used Android Smartphone
Current Bid: $45.99
|
|
|
Verizon HTC Droid Incredible No Contract 3G 1GHz Touch WiFi Android Smartphone
Current Bid: $49.99
|
|
|
HTC Wildfire A3333 White Unlocked Smartphone Android AT&T GSM T-Mobile WiFi 3G
Current Bid: $99.00
|
|
|
Samsung Galaxy S4 I9500 (Unlocked) 16GB Black Mist 3G 5" Super AMOLED I9500
Current Bid: $575.00
|
|
|
~FACTORY UNLOCKED~ FLAWLESS~ APPLE IPHONE 3G 8GB AT&T TMOBILE ++ACCESSORIES++
Current Bid: $132.00
|
|
|
New Motorola V3G Razr Razor Unlocked GSM MP3 Camera Bluetooth Cell Phone Black
Current Bid: $44.99
|
3G Phones from apple
Double click on phone icon in the system tray area or double click on Nokia PC Suite icon on desktop, it will pop up a window.
Click on “Connect to Internet” option then wait for few seconds or alternatively you can click on “Connect” button if you don’t want Nokia PC Suite to connect to internet automatically.
If you connected to the internet then you will see something similar information on Nokia PC Suite. Now you can enjoy internet at your ease and comfort. Happy surfing.
Checklist for internet connection using mobile phone
- Make sure your have phone has modem. Nowadays every phone has this feature except some low end phones.
- You have software disc of your phone. For example NOKIA phone have “NOKIA PC suite (now its NOKIA OVI suite)” and SAMSUNG phone has “PC studio or SAMSUNG KIES”, depends on phone model. If you phone doesn't come with software disc then you can download software from their website.
- You have recharged internet pack for PC. For example AIRCEL mobile network has “Pocket Internet” pack.
- You proper internet settings for internet pack you recharged or you can call customer care of your network and ask them to send that settings.
Note : If you face any problem or you have any question then please ask me through comments. But please go through checklist section because most people don't follow it.
Your Opinion
Did this help you to connect you mobile internet on PC or Laptop?
See results without votingUseful Links
- How to Search on Google - Google Tricks For Improving Search Results
Google is one of the best search and million and billion searches is being done on daily basis. But you know you can improve Google search result to get what you exactly want. In this article I am going to give you Google tricks list which will give - How to setup LAN with Crossover Connection between two Windows PC (color code provided)
The process of crimping is so simple that, if carefully followed, a newbie can also do this with no difficulty. Because this is a crossover connection (i.e. PC to PC connection, no hub or switch will be used)... - How to share an internet connection on LAN?
If you have a fully functional LAN then net sharing is few click away, yes few clicks. I assumed that you have already a broadband connection and account configured on your PC. Just go to My Network... - How to assign IP Address to the client & server computer?
In this tutorial we will learn how to assign IP address to a computer. Before that I should make it clear that every PC will have its own unique IP address. Assigning same IP to other PC will give you... - Looping in C Programming Language, It's Types and Example
Loop is one of the important parts of C language and study of C language is incomplete without this. So let’s head towards completion of our knowledge about C language. As a dedicated C language leaner, right now you should have two questions. What i - How While loop Works in C Programming Language
I already explained what is loop and why we use loop in c language, and I am not going to repeat that here again. So we will start with while loop explanation. While loop is one of the simple loop available in C language.It’s very easy to use, lets c - C Programming Lesson - Do While Loop and Difference Between While and Do While Loop
If you are looking for what is loop and why we use loop in c language then you can check my article on that topic. This article is entirely dedicated to do-while loop and its usage. I must tell you that do-while loop is similar to while loop but only - How For Loop Works in C Programming Language
Along with while loop and do-while loop, for loop is also part of C programming language. For many programmers, for loop seems to be easiest loop comparing other two loops (while and do-while loop). Mainly its structure (syntactically) makes it easy - C Programming Lesson - Dynamic Memory Allocation
This tutorial is intended to tell beginner the power of pointers in C programming. This tutorial will try to explain how with the help of pointer we can solve the problem of memory management. If you don’t know what pointer is in C language then..... - C Programming Lesson - File Copy Program in C
Today we are going to learn a simple file copy program in C language. As I said this is a simple file copy program so you should not expect its output like DOS copy command has. Ok lets start. The main... - C Programming Lesson - Function in C
A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also ... - C Programming Lesson - Types of Function
In my previous c programming tutorial I tried to explain what the function, its advantages is and how to declare a C function. And I told you that there are five types of functions and they are: ... - C Programming Lesson - Multidimensional array (3D Array)
C allows array of two or more dimensions and maximum numbers of dimension a C program can have is depend on the compiler we are using. Generally, an array having one dimension is called 1D array, array... - 2 Dimensional Array in C Programming Language
We know how to work with an array (1D array) having one dimension. In C language it is possible to have more than one dimension in an array. In this tutorial we are going to learn how we can use two... - Swap two variables without using third variable in C , C# and Java
This article explains how we can swap variable values without using third variable. There are different ways to do so and I tried including all know methods. You can get code in C, Java and C# language.
This Hub was last updated on April 10, 2012
Follow (1)Comments 190 comments
What wld b d rel internet setings?
Thanks rajkishor09, for lovely detailed description. I have two phones one is Nokia 6500 slide and other one is Nokia 5130 can i use my 3G connection of BSNL which i have taken on Nokia 6500 slider and run internet with the help of tips shown by you.
Just want to ask whether Nokia 6500 slide has in-build modem in it? i am not aware of specs of Nokia 6500 it is almost year old handset.
Thanks in advance !!
What internet package I need to connect N73 via PC suit with BSNL GSM sim ?
I did it by CDMA Nokia 2115. thanks for sharing.
I ried to connect my Nokia N73. It goes up to verification level and then following popup appears-
"one touch access failed to establish a connection Plcheck con. settings I am unable to proceed further.
Pl. elaborate
Ashwiwariini K T
When i connect the Nokia 5230 Mobile through PC Suit for Internet it is showing Thate PC suit does not support the Modem. How to rectify?
Kindly send reply to san64mdu@yahoo.co.in
hey can u give me pc suite of zen z77 or nokia 5130 plz
I tried to connect my Nokia N73. It goes up to verification level and then following popup appears-
"one touch access failed to establish a connection Plcheck con. settings I am unable to proceed further".
Also, my friend says that u need to switch off ur firewall and the anti virus on the desktop.
I am using nokia N95 and reliance 3G SIM. But not able to connect as described by you. reliance people are also not so helpful. I tried several times talking to those people, but of no use. i am able to connect Internet from my phone instrument. One more question : if you take 3G SIM, does the symbol 3G appear somewhere on the screen ??
i m connected to internet via mobile but in notification area i m seeing that i havee no internet access and i had seen a yellow error symbol when i opend d network and sharing center.
wat sud i do??????
Useful hub, thanks :)
I'm interested to know what sort of speeds you get using this method?
when i connect the mobile 2690 with reliance gsm to laptop, but this required password and username and extra command what to do pls suggest
I have Nokia 5130 handset, activated with internet package. I can surf internet through my handset, but whenever I am trying to connect my phone, with my laptop, whether it is via USB or Bluetooth connection, it always shows a message "OneTouch access failed. Subscribe to packet data first". But if I am not subscribed into packet data, then how can I be able to connect internet through my phone!!!
Please advise me something on this note...
My phone is Nokia X2 how can i connect net to laptop
I hav done wat u said but after that when i open internet explorer an error occures sayin "page can't b displayed" but in the pc suite modem is well connected. What is the problem please tel me?
i have nokia 6500s and connected well but not fast, how can i speed it up
My phone nokia 3110c can't connect to pc. When i connect in my phone shown that connect already but it pc it shown don't have my model phone in pc. What would i do? Please contact me follow this e-mail: Heng_nisa@yahoo.com
Thank you!
i am having blackberry phone and reliance GSM connection. when i start the internet on my desktop with pc suit it get started but when i open the internet explorer and select any site e.g. yahoo, google then it shows the inetrnet error(which is similar to what we get when there is no internet available)
Hi
I am using Nokia 5230 & connect to my laptop using BlueTooth. As per the steps provided above I am able to get connected, but on opening IE I am not able to access the Internet. Is there any setting I need to do in my laptop. I am using Vista HomePremium 32 bit OS
Regards
Harjeet
I have 3110c but no system to connect with pls i need help
I am a pakistani. My mobile is nokia 5130 and my sim is jazz.
Main apny mobile pay internet use karta hun. Kya mujhe kuch aur setting ki b zarort pary gi ya isi setting say pc pay internet chal jaye ga. Mere mobile k liye konsa version nokia pc suite ka acha hai.
i have a nokia 5800 and i have unlimited internt browsing but i do not have a data plan. am i going to get charge extra for using internet on my laptop through my phone
Sir,iam vignesh.I Have Nokia X2 phone.i have a mini laptop ,which is windows CE 6.1.Sir ,if i connect my X2 phone with that mini laptop using data cable,it is asking the usb drivers name for installtion,i dont know what name should i give in that blank box.I DIDNOT INSTALL ANY NOKIA PC SUITE IN THAT MINI LAPTOP .pls kindly tell me the way to find out this answer
I am using nokia c2-01 mobile, internet connects through nokia ovi suit but do'nt run. in laptop icon shown the connectivity but neither date goes nor comes. Please advise ?
Raj, I want to setup the internet on my pc through Reliance CDMA, How do I setup ?
I have "Samsung Mpower SCH - S239" phone.
Please help me, I shall be very thankful to you.
When i'm try to connect to pc suit is asking me IPS number. Please what can i do.
i have samsung champ c3303 but how to connect internet this phone. sir plz help....
ihave no pc suite (nokia). would you help me to get it?
I have Nokia 5230 and i use vodafone. My internet is active and i can connect to PC succesfully using PC Suite. But web page cannot load and always says 'Page cannot be loaded'......can u tell me why it cant be loaded?
I am using samsung gt s5233s, after completing the whole process, when i clock on to connect it gives me error no modem found
Hello Admin, could you please help me with solving this out? My pc wizard just can't successfully install my N73 drivers, at completion drivers installation, at the task bar pops up a message showing to as it wont work properly! And yes, on opening my pc suit, NO MODEM ATTACHED!!! Please help because this jolly phone of mine just works fine on my friend's pc yet we're both running windows xp, then why not on mine also? Your detailed explanation is highly appreciated! Thanks in advance and may you stay blessed and live a righteous life since our Lord's coming so soon!
hi, i am using nokia C2-01 model .when i m connecting through nokia pc suite it shows connected,but when i open a browser on my laptop it shows "NO SERVER FOUND".PLS reply me to deepak0987@gmail.com.
i am using nokia 2690 when i am trying access the internet through mobile i am getting error and getting blue screen on laptop and it is automatically turns off what should i do.... ?please help me....
I m using Samsung GT-B7722 and Reliance 3G. It get connects but not opening the pages... showing Error: The ..... could not be resolved. However, fb gets accessed
Please advice..
Second step to last step to conect pc to the rim
The speed of my mobile net while using on computer is very slow. so what can i do to speed it up, i m using windows xp sp-3 pleaseeeeeeeeeeeeeeeeeeeeee help meeeeeeeeeee
I'm having nokia c5-03 i tried this procedure but its coming as ur internet was not connected nd try to connect again... Plz tel me wat to do?
everything is installed as well jst at the error show that check the connection setting.........any body guide me about it
hi admin,
one of my boss is using nokia 2690 phone, and he is unable to surf the internet using the phone as modem, he approached me for help so i installed latest version of nokia PC suite on his laptop, when trying to access internet, it shows an error message that the modem is already in use..
plz help
Hi i have problem for connection with my phone and pc it shows in manage connection install software driver download how could i set this connection.
my pc suit shows conneted but when i open firefox or opera it shows blank screen i use windows 7 earlier i had no problem with windows xp i used to surf
Hi it is showing message, connect to modem. I am using nokia x2 01.
HI..WHEN I TRY TO CONNECT TO INTERNET FROM MY PHONE TO MY LAP..IT IS SHOWING PACKET DATA NOT AVAILABLE..MY PHONE IS C2 03 AND CONNECTION IS TATA DOCOMO..PLEASE DO TELL ME HOW SOLVE THIS
my mobile is c5.my laptop was connected to other nokia via bluetooth.my mobile is not connected.there is modem problem.
will reliance modem support mac os in apple laptop
im trying to do this with a Samsung R355C on straight talk, will in work?
Hi,
How about the Iphone? Is it possible to do it also?
Thanks...:)
i m using nokia 5233 wid tata docomo, i ve already installed required nokia ovi suite though m unable to access net through my laptop. Its shows the msg conneted but no web pages get opened.... Wat should i do? Do i need to instal suportin files to my mobile or talk to customer care of docomo?
i m doing all these prosess but it shows some error not connected it was ask 2690 drivers
I am using nokia c2-03 and i canncet my mob. to pc but he requare nokia c2-03 driver
I go smoothly the step of nokia pc suit...but when i chose internet icon automiticaly disconnet my phone! What should i do??
I have Nokia C3 with a internet pack. When i try to get the internet connection to my PC it ask for a modem. How can I download it ?
My problem is entirely different i have a nokia 3110c i connected it to my computer using nokia pc suite for internet. I have activated a NOP package unlimited for surfing but whenever i connect it charges me i've downloaded its settings and even activated it in my mobile phone but it charges me when i browse in my mobile it doesn't charge me.Help me.
@rajkishor09 Thank you
please send me a nokia 6300 setup
hi! i have a problem i use samsung gts5233a ihave its pc suite there is option connect to net i click there and i have to configure connection settings. i asks apn name id and password thereftr idint get how to connect... plzz help...
HEY man need your help .i could connect my phone through bluetooth using nokia pc suite and when we connect they show that check that all your hardware and drivers are install properly..........
Pls what of the code.fem.fash@yahoo.com
Hi bro i have done it all but can not open any page for example google or other website.my internet is free for all time.is the laptop want to restart or not?plz reply me.thnx
hi im using samsung GT-C3010S and while im browsing it went on hanging pliz assist.
Hey bro. Isn't there anything related to LG mobile phones? I'm facing problems while connecting to the internet. Please help.
I have Nokia C5-03 which uses OVI-Suite to connect to internet. Somehow, its not working. I am not able to browse anything though Ovi-suits says internet connected. Did anyone face similar problem?
Sir, mera phone x2-01 hai lekin main jab bhi pc suite open karta hun toh mobile ki icon nahi dikhata so what i will do plzz send me message subhendudass5@gmail.com
Hi
my priblem is that my laptop is showing the message that internet is connected at the speed of 460.8 kbps but stil I can not access internet on my laptop by any means.
my operating system is windows xp sp2.
Pls help me.
Thanks
sorry I forgot to mention my mobile model.
Its nokia 5230.
hi sir,
Thank you very much for the idea, but my question is i am having nokia c200 handset did I can surf internet through it via pc.
One more question is that what type of operating system does these mobile set have and what type of antivirus can i install in it.
Please reply me soon i am waiting for it.
Hi ... M using nokia 5233 n when i tried to connect the net it showed an error "selected device is not connected . Connect the device n try again " ... I have tried again n again n its not working ... Can u tell me if i have to download some driver or anything els ... M using win 7
trying to conect c5 03 and windnw xp with data cable not conected. Didnt get modem. Pc suite instaled, mobile hav ovi suite
Dear, I am facing a problem with my cell Samsung S5560 Marvel that whenever i connect my cell phone through data cable with my pc while software alreadt insstalled and during trnsferring of my pictures from mobile to pc and during this process it always showed held which is main cause of my confusion and i don't not know why? please help...
hi...
M abhi .... When i try to connect my nokia 5233 to my pc . It showed that "One touch access failed " what should i do now ...
M using cable to connect n windows 7 in my pc ...
i hv nokia 95.and i m using 3G..but when i connect to the network its appears on screen 460.8 or 921 kbps...is there ny software dat connects my mobille in any mbs..becoz when i download the file its seems 300kbps but transfer rate seems 0 kbps is some minuts...ny solution?
I want to know about how to use internet through data cable of samsung mobile in pc....
Can U pls help me????????
hello i m mahi i m using the sony ericsson mobile
i m connect the internet via laptop
first of all i go to stare and then click the internet connect and then i will connect the internet....
Hi, i have a HCL laptop which uses TOSHIBA bluetooth drivers and its connection procedure is very different from the one used on Bluesoleil.In bluesoleil there is an option for Access point where i can type in the access point of my service provider and continue with my internet . but here in TOSHIBA it uses the traditional I.E connection type with which only Nokia phones run as you can type the access point in the connectivity section ( I use nokia N72) but the problem arises when i use my Samsung mobiles (Monte touch s5620 and samsung duos c3322) as they dont have such provisions . the Irony is i luckily connected my net from monte through writing my access point on the domain in connections (I.E internet connection) but now i cant connect to the same .I hope u can understand my problem and give me a suitable reply . :)
hay can you help me
i have linux in my laptop and i want to connect net throu my nokia n97 mini , i have vodafone mobile connect plan.
Pl help me out
how to convert cdma connection to gsm?
Please help me out
Sir, there is problem, my pc sayin... One touch acces could not contect to selected service' plz help me.
I am getting an error of, modm driver is not installed...i hv win7...
hey i am using loop wap service i had followed this procedure i can use net but the problem is that i got settings for mozilla and when i try to use internet explorer its shutting down.as i play online games it needs internet connection which gets connected from internet explorer
sir mera pc suite same hai likin connect to hogate hai likin page open nahe ho raha or agar zong sim hoti hai to connect nahe hota why tell me plz i wait ok dear
dude i am finding some connectivity issue, i use reliance cdma sim just help me how enable the internet in browser
when i connect this in the same manner a window open and message is dial *99# from mobile and then it disconnects automatically.
main apny cell 2690 ko pcsy conect krraha but hioe ni raha tel me rason
Hi am not able to connect internet with my Nokia x2-01 mobile to laptop
Please i need your help, i see nokia ovi suite on my phone, I try to install it on my pc, but could not. Do i need to download nokia Ovi suite to my nokia x2-01 before installating to my pc
i did all wat u said but it is not connecting to net
I'm using aircel internet on my PC. But the download speed is very slow, only 10KB/s. Need help to speed up my internet. Any ideas?
Hi.... . I am trying to connect my x2-01 with pc but i m not able to use it as modem i have ovi suite also installed in my pc earlier i was using n72 as modem it was working properly but with x2 01 i m facing problem what can i do to overcome this...or x2 01 can not be used as modem for my pc having wndow xp service pack 2
I m using nokia x2 wid tata docomo i ve already installed nokia pc suit throuph cable data my mobile connected to pc message show net connected but no web pages get open what is problem
I m using nokia x2 wid tata docomo i ve already installed nokia pc suit throuph cable data my mobile connected to pc message show net connected but no web pages get open
in my nokia 5233 mobile .its not showing pc suite mode to connect to pc for internet connection.is pc suite mode and ovi suite mode r same,can we use ovi suite mode for internet conection .pls anione respond to dis nd send details to geetha164@yahoo.com
sir i want to knw i cn i use my samsung galaxy fit S5670 for internet as modem
plz reply soon
sir, how to connect internet from my samsung mobile(GT S3310) to laptop using data cable. please mail me on hansrajmunka1990@gmail.com
I have tried out with samsung pc studio.
Hi, i am tauxeef frm Pakistan.
I am using internet from my nokia 5130 that i bought from UAE.
I use internet successfully but when i download or update any of the application like ovi store,downloading or uploading failed.
Please tell me what's the reason for this.
And how can i download or update applications using internet from my mobile?
Hi, i am tauxeef frm Pakistan.
I am using internet from my nokia 5130 that i bought from UAE.
I use internet successfully but when i download or update any of the application like ovi store,downloading or uploading failed.
Please tell me what's the reason for this.
And how can i download or update applications using internet from my mobile?
Plz tell me on facebook.my facebook id is tauseef_cool@hotmail.com
plz reply of soon
MR. RAJ,
I have my Samsung GT-C3530 phone. how can i connect internet on my laptop using my phone. i tried using SKIES, but it didnt happen. i tried using bluetooth connection also, but it didnt work. plz suggest me how to do it.
reply me on ingsatish@gmail.com
When i connect the Nokia 5230 Mobile through PC Suit for Internet it is showing Thate PC suit does not support the Modem. How to rectify?
plz reply me at ami.jeeet2819@gmail.com
Hiii....... I hve Nokia X2 nd i m trying 2 using it through window 7 bt whn i clicking on " connect to internet " its showing tht no Nokia modem installed......nw wt vil i do ? Plzzzzzz....... Help me..:) nd my email id is : solankipreeti .333@gmail.com
i have NokiaC5-03 phone. can u plz suggest me what are new monthly internet plans for 3G mobiles in BSNL network.
rply me at arjunk477@gmail.com
M using bsnl 2g sim...but it has very less speed like...2kbps...plz tel me hw can i increse speed
I tried everything u said but when i click on connect to the internet it tries to connect but it just says disconnected.
What do i do? Help!
ur procedure helped me, but one extra thing :- i get speeds upto 34 kbps in my micromax q5 mobile using aircel pocket internet in guwahati, assam, india ....but when i connect it to my pc, i get speed of upto 6 kbps while downloading in pc, and it hardly reaches 8 kbps, why is this happening ? is it a network error or what ?
I completed everything in this procedure and everything worked perfectly but for some reason on the last step which is to connect the internet to my phone but it loads for 10 seconds and says it's disconnected. What did i do wrong?
i need help! plz. reply soon
hi, My mobile model is samsung L700. I hv installed PC suite, bt when i am clicking to 'connect to internet', it shows no modem is installed. plz tell me what shud i do?
i hav samsung c3200 & reliance connection.i can use internet from my phone, but when i connect it with a usb cable in my laptop, i cant acees internet using the samsung kies software. it asks for APN number & other internet settings... CAN U GIVE ME THOSE DETAILS PLZZZ...??
After connecting internet from mobile to pc how to browsing
My cellphone says 'subscribe to packet data first ' when i connect my phone to my PC. I am using Nokia 2700.
how to connect bpl wap connection to pc on samsung mobile????????
I have nokia 5233 mobile, i try to use it with my laptop. all off method done which shown u. but i cant open web browser like internet explorer & mozilla firefox. so how can i do ?
Thnx for giving info abt connecting net. But, still i have a doubt abt wht the exact setting does require in nokia pc suit for connecting internet of tata docomo?
Can i use my phone for any pc to access internate
when i connect the c5 mobile to the pc for accessing the internet through pc suite i am geting the message failed to connect the network. one touch connection could not access the device please give me suggestion how to get rid of the problem
i have nokia c5-03 but i can connect to internet on pc as described above while it shows that phone is connected by using usb cable
I cant connect my nokia 5130 through pc...when i open pc suit... get connec... touch acces point... bluetooth search... shows no modem found.........???
Hi,
I am using Nokia 5230. I got till the last step as you mentioned i.e., I got till "connection established". But I couldnt access the internet n prompted "No internet access". Can you help me out in resolve this issue.
Thanks
Am from uganda, i bought a your recent version of Nakio daul sim phone the C2-00 but i have failed to connect to internet. Does it have internet or not? Awaiting for your posite response.
I've nokia 2690 and wanna internet on pc.i downloaded latest version of nokia pc suite.but when i connect my mobile to pc through data cable.it does'nt connect and only shows 'please wait' to connect.i wait for 1 hour but it show same.what can i do now? Does data cable matter 4 it?
I have Nokia C2-03 handset, activated with internet package. I can surf internet through my handset, but whenever I am trying to connect my phone, with my laptop, whether it is via USB or Bluetooth connection, it always shows a message "OneTouch access failed. Subscribe to packet data first". But if I am not subscribed into packet data, then how can I be able to connect internet through my phone!!!
Please advise me something on this note...
When i used my mobile c200 nokia internet its image not shown on the mobile.
sir,please give me advice to how can i start internet in my pc.I hv nokia 5233 and gsm on tata docomo internet.
Send me advice at jignesh.modi245@gmail.com
Download new PC suite & connect easy
hi sir, i have a different problem from others
when i connect my mobile nokia x2-01 to my laptop from bluetooth with tata docomo SIM it get connected but after about 40 or 50 minutes it automatically gets disconnected.........so, what should i do for preventing this!! plz reply soon
there are some space to fill up the acces point,username.password.in that what information l should fill up?
I already instaled latest nokia pc suite sftwr
i connecting my phöne c2-00 through usb cable to computer,when i openin pc suite it showing msg like updating drivers, this msg shows for löng time.
i have a nokia c200.how do i browse internet through the nokia pc suite?because my pc suite does not sopport this model?
please reply. looking forward to your answer.
I completed everything in this procedure and everything worked perfectly but for some reason on the last step which is to connect the internet to my phone but it loads for 10 seconds and says it's disconnected. What did i do wrong?
i need help! plz. reply soon
i have x2-00 everything is right but net doesnot support. anybody solv my problem . net not connect thruv me pc but internet not connect.
I already have a bsnl broadband connection. I installed pc suite and connectivity cable drives and it shows connected but i can't use internet i tried google chrome/internet explorer/mozilla which is already on my pc and it works fine when i use bsnl broadband can you help me plz ?
Sir, i have Nokia X2-01 mobile. I installed Nokia Ovi suite in my pc. But when i connect my phone with computer via USB. My mobile give a message "No response from host" and could not connect to internet. So what should i do. Please help me.
Mail me at mandar.chavan994@gmailcom
Respected Sir
I tried my Nokia C2-01 handset to connect through Nokia PC Suite. Bluetooth connection completes successfully. But after clicking 'connect to internet' option and configuring settings, various error messages appear: 'One Touch Excess failed to establish a network connection' or 'Failed to connect'. I have now uninstalled and reinstalled the PC Suite. Please help me and reply fast.
My email id: washimchr@gmail.com
Pls am hvin problem connectin my nokia navigator wit pc suit. So pls is there any setting needs to be don on system? Pls i need ugent rply. My mail----atohpatrick@live.com
I have a nokia C2-00 set and I want to connect my phone to pc for internet via cable.When we attached my phone to pc in nokia ovi suit and follow step guided by software then at time of driver installation it takes long time and show msg please wait unlimited time.so please help me.
sir mere pc ch nokia suite already installed hai connetivity aa jandi hai par page open karn te Sarver not found aa riha hai. Window 98 and 7 ch same problem hai. Plz help me
Ravaldeep050@gmail.com plz help me sir, dost any other
Hi,
My ISP is not provided in nokia pc suite. Hence im prompt to set up connection manually.
Pls help for access point,username and password. Thx
hi i have nokia x2 01 but ican.t conect to the enternet please help me
I have connected my Nokia 5133c-2 express music with my laptop but my browser (both firefox and internet explorer) does not access the internet, what do i do? Pls i need your response as soon as possible, thank you.
SIR MERE SAMSUNG C3010S KA PC SUITE DOWNLOAD KARNE KE LIYE URL BATA DO
no modem is found when i connect samsung galaxy y s5360 through samsung pc studio 7 to access internet..what to do.please help me...
Hi,i have been tryin to connect my phone (Nokia X2-01) via a Nokia USB to my Pc after installing Nokia PC Suite,but it keeps saying,"USB connected in non-compactible mode" but actually,its on Nokia Ovi suite mode.I'd really appreciate it if u tell me d cause of this problem.Tnks
i have N2690 how can avail the free access in the internet? just simple instructions.t.y
I am using nokia x2-01.i m following the same procedure but it is showing error msg that modem is already in use... So what should i do now....plz reply me immediately
I tried my Nokia C2-03 handset to connect through Nokia PC Suite.But after clicking 'connect to phone' after sometime it shows 'Failed to connect'. I have uninstalled and reinstalled the PC Suite. but it does not connect and shows troubleshoot.so plz slove the problem if u can..
nokia phone is busterds
I have Nokia X2-00 with Docomo sim I want to use my phone as modem. I tried many times, the window comes your phone is connected but I could not browse it tells "server not found" pl. help me to connect internet
I am trying to connect Internet via Relaince Sim Prepaid but it is not working can anybody help.
M gettin msg that nokia is connected if i selct the ovi mode bt if i slct mass storage mode then msg showed that nokia x2-01 is now connected in non compatiable mode can u help me pls
1.I can't connect the the internet on my Nokia N97 Phone. 2.How can i close some applications if the memory is full? 3.How can i purchase a new Nokia N97 battery and headset?
what if we dont get an option "connect to pc or nokia mode" and get an option only for data storage and printing mode
I was connecting my NOKIA mobile instrument with my laptop for various type of applications (transfering data, photos, back up of data / photos etc) using NOKIA PC SUITE.
But from last 1~2 months I am not able ot connect the NOKIA instrument to laptop through NOKIA PC SUITE. When I discussed with NOKIA help line & also tried with my home PC, I understood, there can be some restrictions affecting this connectivity in the laptop, which is obviously a corporate connected.
So please let me know, if there can be any change in setting etc. requreid to re-gain the NOKIA instrument connection to laptop.
It is given to me by my company-Nilkamal Ltd Vasona
my phone not supporting the data cable how to download the songs
Am connecting to my nokia PC suite via bluetooth but now am getting error as One touch access failed to establish network connection and please check connection settings. am using tata docomo service. Nokia 6233
Hey, i need your help. I have nokia 3110c. I want to connect it to the pc using data cable. When it enter the data cable, i use nokia mode from mobile but my pc doesn't pick it. There is no even name written of my phone in nokia pc suite. It doesn't work on data transfer mode or any other option. I have tried with other data cables and comuters also but same problem. Please help me....
I will be very thankful to you....
Hi admin
my handset model is nokia c-200 .when i connect handset to pc error occur on handset "host not responce" and on the pc msg display high speed device connect to nonhighspeed usb port. But i have use usb2.0 port .so it supported then why this error occur.give me solution
i have nokia c200 i can connect internet on mobile but on my pc there is a message of pl connect it on high speed port.
i have pc suite,nokia ovi suite and dku cable driver installed in my pc.
my another nokia x2 00 also run scceffuly in my pc for internet.
i am using same data cable of nokia x2 00 for nokia c2 00.
so now pl. help me how can i connect my c2 00 to pc for internet.
my c2 00 also connected for mass storage from data cable.
very poor service in bsnl
I'm using nokia X2-01 and i'm not able to connect to my pc through usb please help me out of this
Sir, when i cnect via one touch access it says only disconnect.
Hai,
Kindly send me the friendi mobile acces point, user name, password for Laptop-Mobile-Internet-using-Mobile-Phone
I m using nokia 710 n i dnt no how to use internet through bluetooth i hav to connect my mob. Wid laptop....
Pls i need the right procedure (s) for the configuration of my nokia x2. Pls respond me through email: jumboobiesiaukot@yahoo.com
Hi,
I have followed the same procedure to my Nokia X2-01, I have installed Nokia x2-01 PC in my laptop.
In PC suit its showing like internet is connected using Tatadocomo.
while opening internet explorer diagnolosys error is comming.
in PC suit its asking sign in into nokia acount but while signing into that account, showing cannot signin on your PC. check with ur connections once.
uhm sir ..
i just wanna ask
how can i register to unli surf
i uesd nokia 6120 classic plz till me pc suite satting
my new Nokia c2-01 is not detecting in laptop. Wat to do?
hi i have samsung galaxy y duos s6102 and i install kies on my pc how can i use internet with tis
hi, i tried connect to internet through mobile(nokia2323c) via bluetooth,initialy it connected .now it wil show either no sim found or application not configured properly or it may be on other use.this wil happen after successfully connecting to pc by pc suite .reply me to rachana.yashas@gmail.com
i have a weird isssue with my lap... my nokia c5-00 handset connnects with all other laptops except mine and my laptop connects with all other phones except c5....... whenever i connect it says connection type may be used by other app, ormodemn may not be configurd properly
am using nokia 5800 and i have nokia pc suit on desktop and i connect to my phone it does'nt connect to internet and my memory card make damage what should i do with best reguard




How to Setup Mobile Phone Internet using Nokia,...
Steps to maintain yours computer and extend its life...
Turn you Pentium 4, & Celeron Computer into a Internet Browsing station (“Old...
Networks and the internet - how it works; a diagram.
How to Browse Free on Your Mobile
Brief History Of The C Programming Language
PC Backup, a checklist for your computer
Settings - Temporary Internet Files
Using Skype To Learn English or A Foreign Language

jattee 3 years ago
im using a nokia n78...do i have to do it the same way......
my pc suite is different from 3110c...so is there an easy way to do it via my phone......please reply me soooon....
thanks.....