To delete a network printer using a login script you can use the following vb code. Just copy and paste the text into a new file called DeleteNetworkPrinters.vbs and call it from within your login script.
This will not delete any local printers installed to the machine. This is really useful to put in before you start mapping network printers during user logon.
‘————————————————————————-
‘– Removes all network printers but not any local printers–
‘————————————————————————-
strComputer = “.”
Set objWMIService = GetObject(“winmgmts:\\” & strComputer & “\root\cimv2″)
Set colInstalledPrinters = objWMIService.ExecQuery _
(“Select * from Win32_Printer Where Network = TRUE”)
For Each objPrinter in colInstalledPrinters
objPrinter.Delete_
Next
‘————————————————————————-
I’ve tested this code on Windows XP and Windows 7 and it works fine. I’m going to assume this is working on Windows Vista as well.
Firefox Private Mode is an instance of Firefox that does not save Cookies, Passwords, Browsing History, URLs typed into the search field or Temporary Internet files much like Internet Explorers inPrivate Browsing discussed previously. More info non Private Browsing at Mozilla’s Website here: http://support.mozilla.com/en-US/kb/Private+Browsing
There are a few ways you can instantiate this mode:
1. From within Firefox: Click on the Tools Menu and select Start Private Browsing (or use the Keyboard shortcut Ctrl + Shift +P).

2. To Start Firefox in Private browsing mode all the time we need Click on Tools -> Options, Then click on Private, Select Use custom settings for history and Tick the Automatically start Firefox in a private browsing session as shown below. I personally don’t like this method unless this is needed for shared computer you always want to be in private mode.

3. Start Firefox private browsing from a shortcut: Firefox does not let you have add a “private” flag to a Firefox shortcut by default like Internet Explorer does. To enable this functionality you will need to install the add-on “Private Browsing Command Line Flag“. This will enable you to copy your existing shortcut to Firefox and append -private to the string.

4. Another addon worth mentioning is the “Toggle Private Browsing” button addon. This allows you to add a private browsing button to your toolbar as pictured below. More information on how to setup the icon is available at the add-ons page.
