Update on Verizon Wireless Samsung i730 Pocket PC Phone

I wrote earlier about problems I have been having with my Samsung i730 Smart Phone from Verizon Wireless. I have been trying to back it up but I have not figured out how to do it yet. In the previous versions of ActiveSync, there was a feature to backup your device from there. It seems that the backup feature is no longer a part of the latest version of ActiveSync (4.1.0). I tried to see if there is a utility on the device itself but I cannot find any. Apparently after I upgraded the thing to Windows Mobile 2005, the included backup utility Sprite Backup got wiped out.

So now it seems there is no way to backup my phone without buying a backup utility. Don’t you just love it.

I am sure I will get to backup the device some day so I can go ahead and get a replacement from Verizon but for now I seem to have fixed most of the problems myself by removing my 2GB Secured Digital card from the phone. I do remember reading somewhere that Samsung only recommends not using SD cards over 1GB in capacity. Argg! There goes my plan for using the i730 as a music player as well! Perhaps this is my excuse for getting a separate mp3 player :-).

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

  • Update... I decided that I don't really need to back up the phone because the important data is already on my desktop computer. I called Verizon Wireless again and after VZ guided me through the hard reset process, the phone seems to be working better. I have not had the backlight issue anymore since the hard reset.

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