TECH CORNER

Bite Into Technology

Lock your folder without installing any software

Folder locking is too easy without installing any software.This method is to implement only when we are not having any softwares.Follow the below steps carefully to lock your folder without any softwares.

If u have a folder named “movies” in drive D: then create a new text file in same drive and paste the text follows:

ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}

Now Save the text file as “Loc.bat” and double click on it(it lock the folder and change it into control panel shortcut).

To open or unlock the folder create a new text file in the same drive and paste the following text:

ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies

Now Save the text file as “key.bat” and double click on it(it will unlock your folder and u can access the folder).

Note:After locking the folder if u create another folder in same name on the same drive then the “key.bat” file cant unlock your locked folder. So delete or rename the new created folder for work of “key.bat” file again.

January 26, 2008 Posted by increa | Interesting | | 3 Comments

REGEDIT Disabled by administrator!

Copy the following code,paste in any notepad and save as “regtools.vbs” file. Just double click it and you will get yor regedit enabled

‘Code:

Option Explicit

Dim WSHShell, n, p, enab, disab,itemtype

Set WSHShell = WScript.CreateObject(“WScript.Shell”)

p = “HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\”

p = p & “DisableRegistryTools”

itemtype = “REG_DWORD”

n = WSHShell.RegRead (p)

If n = 0 Then

n = 1

WSHShell.RegWrite p, n, itemtype

MsgBox(” Registry Disabled”)

ElseIf n = 1 then

n = 0

WSHShell.RegWrite p, n, itemtype

MsgBox(“Registry Enabled”)

End If

January 15, 2008 Posted by increa | Windows Hacking | | 12 Comments

Disable USB thumb drive in windows xp

To Block USB in Windows XP

1. Click the Start button and select Run.

2. Then type regedit in the box and click OK.

3. When the Registry Editor is started, you need to expand in the left Pane HKEY_LOCAL_MACHINE>System>CurrentControlset>Services>USBSTOR

4. When you have expanded ,in the right pane , you will see an entry called “Start” where value of the start would be
0000000(3),edit the value by double mouse click and type 4 and click oK.
(4- To Block the USB
3- To UnBlock the USB)

6. Close the Registry Editor and refresh(F5), then notify Changes.If that does not work for your computer, then you will have to log out and log in to activate the changes.

January 14, 2008 Posted by increa | Windows Hacking | | No Comments Yet

How to uninstall unbuntu (linux) from dual boot xp

When you have a dualboot system (say Linux and Windows),Mostly you have GRUB as bootloader.When you remove Linux,you will face some problem like GRUB bootloader Failed.
To overcome such problem you need to go with the following steps.

This is how you can delete/remove Linux from a dualboot system with Windows XP. First take out your Windows XP bootable disc & boot your system from it. Then enter Recovery console by pressing R.

In the recovery console prompt type the following commands: FIXMBR, FIXBOOT .The GRUB will be overwritten & Windows will restore MBR & its bootloader. Just boot your system & windows will start automatically. Now Right click on My Computer icon on your Desktop & click Manage. Click Disk Management. Now remove all Linux partitions (These partitions don’t have any label & have unknown filesystem). Now create new partition(s) in the free space. Format those partitions in FAT32/NTFS & now you can use them under Windows.

January 14, 2008 Posted by increa | Windows Hacking | | 4 Comments

Disable Control Panel in Windows

Goto Run->type gpedit.msc
It will get a Group Policy editior window
In the right Pane of the window goto UserConfiguration

->Administrative templates ->Control Panel
then doubleClick on “Prohibit access to Control Panel ”.

It will display a properties dialog box in that
click on the “Enable” radio button and click apply button then ok..It will prevent access to Control Panel.

January 6, 2008 Posted by increa | Windows Hacking | | 1 Comment

To Remove LOGOFF On Start Menu in Windows

Goto Run->type gpedit.msc

It will get a Group Policy editior window

In the right Pane of the window goto UserConfiguration
->Administrative templates ->Start Menu and Taskbar

then doubleClick on “Remove Logoff on Start Menu”.

It will display a properties dialog box in that
click on the “Enable” radio button and click apply button then ok..It will Remove logoff on Start Menu.

January 6, 2008 Posted by increa | Windows Hacking | | 5 Comments