My New & Improved Samsung i730 Windows Mobile Phone

A few days ago, my old and trusty Samsung SCH-i730 Windows Mobile phone decided to bite the dust. One moment, I pulled it out of my pocket to look at the time and it was dead… just like that. No sound. No display. It was an eerie sight. I tried a soft reset, changed battery, hard reset, nothing.

Luckily, since I had purchased insurance for the phone (the only time I purchased insurance for an electronic gadget), I called Verizon. Two days later, I now have a brand new i730.

Normally, this would be a none-event. However, something interesting happened: the replacement phone works much better than the one I used to have. Read about the problems I had with the old phone here. On the new phone, everything runs noticeably faster. There is no more unexplained slowness. Audio during phone calls now works as expected with no cut outs.

I have two theories on why:

  • I had upgraded my old phone to Windows Mobile 2005 and that version of the Windows Mobile OS was causing problems on the phone
  • I had a defective phone

I will never know for sure the real cause, since the old phone is no more.

Samsung i730 owners out there, if your phone doesn’t seem to work quite right and have the problems described here, either try to downgrade to Windows Mobilde 2003, or if you have not upgraded to WM2005, you just may have a defective device.

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.

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…

5 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