Move persistent route table to a new computer
Moving persistent route to a new PC is easy, save your self the task of re-typing them in one at a time with this these simple steps.
The data is stored in the windows registry. Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\PersistentRoutes
Export this key and save the .reg file.
Copy this file over to the new computer.
Double-click on the .reg file on [...]
Quick edit for your hosts file
Open notepad and paste in the code below, then save as hosts.vbs and save it inside your windows directory.
Then all you need to do is type start -> run and type “hosts.vbs” and it will fire up your windows hosts file inside notepad
Set Sh = WScript.CreateObject(“WScript.Shell”)
On Error Resume Next
sOStype = Sh.RegRead(_
“HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions\ProductType”)
If Err.Number<>0 Then
Wscript.Echo ” This [...]
Custom Windows Shutdown
Here is an easy tip to spruce up your end of day windows shut down.
Have it perform some simple tasks before shutting down your system for the day.
I have made a simple batch file to run a system defrag, then make a registry backup before shutting down the system for the night.
Here is what the [...]
Cube Cart Export for PayPal Multiorder Shipping
I have created an order export for Cube Cart e-commerce software package. This export can be imported into PayPal’s multi-order shipping module.
This will enable you to import your order information into PayPal for printing shipping labels. Avoid re-typing the information into Paypal, saving time and preventing data entry errors. This will not make any changes [...]
Any Video Converter, Does it All
I hate to use the cliche, but this is the video converter Swiss army knife. I am truly amazed at how often I find myself opening up this program. Any video converter has been able to convert everything I have thrown at it. Here are the conversions that it supports. Ten different types of media! [...]
Read more »Super Simple Calendar Free
Simple. Elementary, and not involved or complicated windows calendar application.
You just want to see a calendar, and clicking on the time in the tray is cumbersome, and there is the possibility you may accidentally change your system date and time. So here is a free windows calendar app that could not be more simple and [...]
How to have a seperate NIC just for the internet
You have 2 network cards, and are connected to 2 networks.
You want to specify which one is used to surf the internet.
Here is how you do it on Windows.
It’s comes down to an “Interface Metric”.
First, right click on the network card/item that you wish to use for the internet. In this case it is the [...]
Zip A Folder
Linux and Free BSD, how to zip a folder. This is useful for backups, or moving to a new webhost.
zip -9 -r zipname folder
example: zip -9 -r myfolder.zip examplefoldername
-9 = best compression
-r = recursive

Share your thoughts..