Dalam tutorial ini saya akan menunjukkan trik yang menarik dan berguna untuk melindungi folder dengan password tanpa menggunakan software apapun tapi dengan menggunakan pemrograman batch file. Trik ini akan bekerja pada semua platform windows (Win XP, Win 7). Ikuti tutorial di bawah ini untuk mempelajari trik ini.
Cara Mengunci Folder?
1. Buka Notepad dan Copy kode yang diberikan di bawah ini ke dalamnya.
cls
@ECHO OFF
title hack-pc.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== hack-pc goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
2. Simpan file notepad sebagai lock.bat (harus .bat)
3. Sekarang klik dua kali pada lock.bat dan folder baru akan dibuat dengan nama MyFolder
4. Salin semua data Anda yang ingin anda lindungi dalam folder baru
5. Sekarang klik dua kali pada lock.bat dan ketika perintah promp muncul Ketik Y dan tekan enter.
6. Sekarang MyFolder akan disembunyikan, untuk mengakses folde klik dua kali pada lock.bat
7. Ini akan meminta password, lalu masukkan password Anda. (Password default adalah hack-pc)
Untuk mengubah password ganti hack-pc dengan password baru dalam kode di atas
Cara Aman lanjut?
Anda mungkin berpikir bahwa setiap orang dapat mengakses password dengan membuka file lock.bat di Notepad atau editor teks lainnya. Untuk membuatnya lebih aman sembunyikan lock.bat di beberapa lokasi yang aman setelah mengikuti tutorial di atas Untuk mengakses file klik dua kali di lock.bat. Saya menyarankan menyalin berkas lock.bat ke flashdisk dan menyalin ke komputer Anda setiap kali Anda diperlukan untuk mengakses ke file Anda dilindungi.
cls
@ECHO OFF
title hack-pc.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== hack-pc goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End - See more at: http://www.besthacking.in/2014/02/password-protect-any-folder-without-any.html#sthash.6zXw5aFc.dpuf
cls
@ECHO OFF
title hack-pc.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== hack-pc goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End - See more at: http://www.besthacking.in/2014/02/password-protect-any-folder-without-any.html#sthash.6zXw5aFc.dpuf
Dear BestHacking readers today I am going to tell you How to Remove a Virus Using Command Prompt
Virus is a computer program that can copy itself and infect your
computer. These viruses can spread via USB/flash drive or from one
computer to other computer by few written codes. There are many
antivirus software available to remove viruses from computer. But there
are some viruses or suspicious files which can’t be removed by any
antivirus software.
Some suspicious files such as autorun.inf initiate
all the viruses in pc. These files must be removed for safe operation of
your pc, because they may lead to data loss, software damages etc. Such
viruses and files can be removed by using cmd. In this article we will
discuss how to remove a virus using command prompt. Following steps can
be used to remove a virus using command prompt from your computer.
- Go to start menu and type “cmd” in the search box or Start>all programs>accessories>command prompt.
- Open the infected drive such as write , g: to go to G drive.
- Now type dir/w/a . It will show all the files of the drive including hidden files.
- Locate AUTORUN.INF or any Virus and other suspicious files in the directory.
there was no virus in my drive so only autorun.inf is been highlighted.
- Type command attrib -r –a –s –h to remove attributes of corresponding file.
Type del autorun.inf to delete autorun.inf file.
- Now type del virus name.exe t delete it, eg : del newfolder.exe .
(You can also delete viruses by using following steps:
- When you find an Autorun.inf file or any other unusual .exe file just rename it.
Syntax for rename is (rename
filename.extension new name , for example: (rename autorun.inf virus)
to rename autorun.inf file. Here I have renamed it by “virus”.
- Now you can access the defected drive without affecting the virus.
- To delete the renamed file go to the defected drive and select the file you renamed.
Now delete the harmful renamed files.)
You have deleted that virus successfully but sometimes virus resides in the Recycler folder.To locate this folder:
- Type cd recycler command.
- Again type dir/w/a to locate all file of the folder.
- Identify malicious files and delete them using above commands.
Follow the above steps carefully and i think this information is enough to remove a virus using command prompt easily.
Important: Make sure that no other processes being running while performing these actions. Best of luck.
- See more at: http://www.besthacking.in/2014/03/how-to-remove-virus-using-command-prompt.html#sthash.VGJ81vC6.dpuf
Dear BestHacking readers today I am going to tell you How to Remove a Virus Using Command Prompt
Virus is a computer program that can copy itself and infect your
computer. These viruses can spread via USB/flash drive or from one
computer to other computer by few written codes. There are many
antivirus software available to remove viruses from computer. But there
are some viruses or suspicious files which can’t be removed by any
antivirus software.
Some suspicious files such as autorun.inf initiate
all the viruses in pc. These files must be removed for safe operation of
your pc, because they may lead to data loss, software damages etc. Such
viruses and files can be removed by using cmd. In this article we will
discuss how to remove a virus using command prompt. Following steps can
be used to remove a virus using command prompt from your computer.
- Go to start menu and type “cmd” in the search box or Start>all programs>accessories>command prompt.
- Open the infected drive such as write , g: to go to G drive.
- Now type dir/w/a . It will show all the files of the drive including hidden files.
- Locate AUTORUN.INF or any Virus and other suspicious files in the directory.
there was no virus in my drive so only autorun.inf is been highlighted.
- Type command attrib -r –a –s –h to remove attributes of corresponding file.
Type del autorun.inf to delete autorun.inf file.
- Now type del virus name.exe t delete it, eg : del newfolder.exe .
(You can also delete viruses by using following steps:
- When you find an Autorun.inf file or any other unusual .exe file just rename it.
Syntax for rename is (rename
filename.extension new name , for example: (rename autorun.inf virus)
to rename autorun.inf file. Here I have renamed it by “virus”.
- Now you can access the defected drive without affecting the virus.
- To delete the renamed file go to the defected drive and select the file you renamed.
Now delete the harmful renamed files.)
You have deleted that virus successfully but sometimes virus resides in the Recycler folder.To locate this folder:
- Type cd recycler command.
- Again type dir/w/a to locate all file of the folder.
- Identify malicious files and delete them using above commands.
Follow the above steps carefully and i think this information is enough to remove a virus using command prompt easily.
Important: Make sure that no other processes being running while performing these actions. Best of luck.
- See more at: http://www.besthacking.in/2014/03/how-to-remove-virus-using-command-prompt.html#sthash.VGJ81vC6.dpuf
Dear BestHacking readers today I am going to tell you How to Remove a Virus Using Command Prompt
Virus is a computer program that can copy itself and infect your
computer. These viruses can spread via USB/flash drive or from one
computer to other computer by few written codes. There are many
antivirus software available to remove viruses from computer. But there
are some viruses or suspicious files which can’t be removed by any
antivirus software.
Some suspicious files such as autorun.inf initiate
all the viruses in pc. These files must be removed for safe operation of
your pc, because they may lead to data loss, software damages etc. Such
viruses and files can be removed by using cmd. In this article we will
discuss how to remove a virus using command prompt. Following steps can
be used to remove a virus using command prompt from your computer.
- Go to start menu and type “cmd” in the search box or Start>all programs>accessories>command prompt.
- Open the infected drive such as write , g: to go to G drive.
- Now type dir/w/a . It will show all the files of the drive including hidden files.
- Locate AUTORUN.INF or any Virus and other suspicious files in the directory.
there was no virus in my drive so only autorun.inf is been highlighted.
- Type command attrib -r –a –s –h to remove attributes of corresponding file.
Type del autorun.inf to delete autorun.inf file.
- Now type del virus name.exe t delete it, eg : del newfolder.exe .
(You can also delete viruses by using following steps:
- When you find an Autorun.inf file or any other unusual .exe file just rename it.
Syntax for rename is (rename
filename.extension new name , for example: (rename autorun.inf virus)
to rename autorun.inf file. Here I have renamed it by “virus”.
- Now you can access the defected drive without affecting the virus.
- To delete the renamed file go to the defected drive and select the file you renamed.
Now delete the harmful renamed files.)
You have deleted that virus successfully but sometimes virus resides in the Recycler folder.To locate this folder:
- Type cd recycler command.
- Again type dir/w/a to locate all file of the folder.
- Identify malicious files and delete them using above commands.
Follow the above steps carefully and i think this information is enough to remove a virus using command prompt easily.
Important: Make sure that no other processes being running while performing these actions. Best of luck.
- See more at: http://www.besthacking.in/2014/03/how-to-remove-virus-using-command-prompt.html#sthash.VGJ81vC6.dpuf
Artikel keren lainnya:
Belum ada tanggapan untuk "Memproteksi Folder tanpa software proteksi"
Post a Comment