Categories: GadgetsTechnology

Samsung i730 Problems

I got a Samsung i730 Windows Mobile phone several months ago from Verizon Wireless to replace both my iPAQ and cell phone. My personal experience with it has not been good. The device frequently freezes, requiring a soft reset. The audio on phone conversations are often intermittently cut.

I decided to call Verizon Wireless yesterday about it. The support person wanted to walk me through a hard reset but I was not able to back up the phone then so I’ll have to call back. He said if the problems continue after the hard reset then VW will send me a new phone. Perhaps a new phone will fix my issues. We shall see.

Update: I seem to have found a fix for the freezing issues.

Update 9/7/2007 – Links for Windows Mobile devices:

Chinh Do

I occasionally blog about programming (.NET, Node.js, Java, PowerShell, React, Angular, JavaScript, etc), gadgets, etc. Follow me on Twitter for tips on those same topics. You can also find me on GitHub. See About for more info.

View Comments

  • The problem prescribes above seem to affect me too because i possess the samsung i730. I need to know how to upgrade the phone system. How do I do That.
    Thank you.

Recent Posts

How to switch to a different Kubernetes context or namespace?

To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…

2 years ago

How to ssh into Kubernetes pod

kubectl exec -it <podname> -- sh To get a list of running pods in the…

2 years ago

How to Create a Soft Symbolic Link (symlink) in Unix/Linux

# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…

3 years ago

How to Configure Git Username and Email Address

git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…

3 years ago

Getting the Last Monday for Any Month with TypeScript/JavaScript

TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…

4 years ago

How to View Raw SMTP Email Headers in Outlook

I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…

5 years ago