Using your blackberry as a 3G (in my case) modem proved to be Incredibly simple. There are five million different methods to do this and many have you compiling stuff and editing text files. I love those sorts of things, but this is much easier. I Wish that I had tried this sooner.
**Confirmed using Blackberry Tour (9630) on Verizon. **
What we will do is use a program called ‘barry’. http://www.netdirect.ca/software/packages/barry All we need to do is install some packages from the repository below. These commands are from the terminal, so launch it from “Applications -> Accessories -> Terminal” in the Menu.
Edit /etc/apt/sources.list
sudo nano /etc/apt/sources.list
add these lines:
deb http://ppa.launchpad.net/doctormo/barry-snapshot/ubuntu karmic main
deb-src http://ppa.launchpad.net/doctormo/barry-snapshot/ubuntu karmic main
install the repositories key.
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 113659DF
Now update your package list
sudo aptitude update
and install the programs:
sudo aptitude install libbarry0 barry-util barrybackup-gui
Thats it! now to create the connection, the command will vary depending on your provider. The ones they have preconfigured are: ATT Cingular, China Mobile, KPN Nederland, O2 Ireland, Rogers, Sprint, T-Mobile US, Verizon.
the syntax is :
sudo pppd call barry-{provider}
for Verizon:
sudo pppd call barry-verizon
You’ll see a bunch of output, and it’ll tell you that the connection is up. to close it down, press (CTRL+C). Make it pretty by creating an application launcher on your desktop.
Uninstall ALL Versions of WinZip Batch Script
I have been struggling with this for quite a while, and ran into a lot of issues with all of the different versions on our network. There are people with 100 line .vbs scripts to do this, and I think this is much simpler:
For getting rid of WinZip 12, the magic happens in the ‘wmic’ line. It searches all of the installed product’s names for “winzip” and will uninstall anything it finds. This only works for products that use MSI’s. If you ran this outside of a batch file, you will have to use a single % percentage sign instead of the %% double percentage sign… Windows scripting sucks, and that’s just the way it is. Same thing that happens in “FOR” loops.
I never knew anything about the Windows management instrumentation control (wmic) until now, but I will be sure to exploit it’s features.