HOME

Wednesday, February 25, 2009

How To Make Your Flashdisk Save From Virus Infection

All of you already know if flashdisk can become such a carrier for virus that will infect your computer. So, I will tell you how to prevent it.

First of all, open autorun.inf on your flashdisk (use notepad). Ctrl + a (select all), then delete it. Then you can write anything on it, poem, story, anything up to you.

But how if the autorun.inf has read only attribute, that make us can't edit it ? Don't worry....

Open notepad, then typed del /a:r f:\autorun.inf then press enter.
Next step is typed echo ‘gives hell’ >f:\autorun.inf&attrib +r f:\autorun.inf
then save it whatever name you want and where ever you want.

Double click that file.

Now, your flashdisk is not a carrier anymore.

Wednesday, February 18, 2009

Registry Tweaking

Before do something with your regisrtry, make sure you make a backup first.

File -> Export, and

File -> Import to reload your registry.

Here some list of work that you can do on registry :

@ Hide your hard drive
Every drive has it unique number, i.e. A=1, B=2, C=4, D=8, etc. The number of next drive is
multiplication from the number before.
HKEY_CURRENT_USER,Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer
Value Name : NoDrives
Data Type : DWORD Value
Data : Fill with driver's number that want to be hide.

@ Hide registry editor
HKEY_CURRENT_USER,Software\Microsoft\Windows\Curre ntVersion\Policies\System
Value Name : DisableRegistryTools
Data Type : DWORD Value
Data : 0 = show, 1 = hide
If it's success a message will appear : “Registry Editing has been disabled by your
administrator”
If you want to restore it again:
Open notepad and write : REGEDIT4[HKEY_CURRENT_USER\Software\Microsoft
\Windows\Curre ntVersion\Policies\System]”DisableRegistryTools”=dword:00000000
Then safe with .reg extension. For example, “enable_regedit.reg”
After that double click it to enable registry editor.

@ Hide RUN facility
HKEY_CURRENT_USER,Software\Microsoft\Windows\Curre ntVersion\Explorer
\Advanced
Value Name : StartMenuRun
Data Type : DWORD Value
Data : 0 = show, 1 = hide

@ Hide Control Panel from Start menu
HKEY_CURRENT_USER,Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer
Value Name : NoControlPanel
Data Type : DWORD Value
Data : 0 = show, 1 = hide

@ Hide Shut down from Start menu
HKEY_CURRENT_USER,Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer
ValueName : NoClose
Data Type : DWORD Value
Data : 0 =show 1 = hide

@ Hide Folder Options
HKEY_CURRENT_USER,Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer
Value Name : NoFolderOptions
Data Type : DWORD Value
Data : 0 = show, 1 = hide

Hope this kind of stuff is helpfull for all of you....

How To Lock Folder Without Any Program

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo stuff by satish
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==your password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End


Copy those code to notepad, then save it woth .bat extension.
After that double click the .bat file, and you can put any secret files there.
When this hidden treasure in hidden mode it will become control panel.

Wednesday, February 11, 2009

Another Way To Create A New Folder

Most of us will do right-click -> new -> folder, to create a new folder. But actually there is a simpler way to do that. Let's check it out.

U just need to do this on your window explorer :

1. alt + f
2. alt + w
3. alt + f

Happy trying. See you soon....