Post: How to lock and hide your porn collection (using notepad)
11-26-2010, 08:44 PM #1
DEREKTROTTER
You're Goddamn Right
(adsbygoogle = window.adsbygoogle || []).push({});
How to lock and hide your porn collection (using notepad)


Well not just your porn collection, can be anything really.

This clever script will hide your folder, and to show it - click on the .bat and enter your password.

    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 Enter password to lock folder or for cancel press N
set/p "cho=>"
if %cho%==XXXX 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 Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==XXXX 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


Replace the XXXX with your chosen password =D

Premade .txt file for teh noobs[/COLOR]
Last edited by DEREKTROTTER ; 11-26-2010 at 08:46 PM.

The following 25 users say thank you to DEREKTROTTER for this useful post:

ⒿⒺⒷⓇⓄ, Breecem, Car Lover, Correy, craigp, Darknesse13, Durk, FrozN, Ghost1990, JonnieOnionRing, JP, Merkii, MidgetGangBang, PSN TeCa-ToWn, riotmost, shawry, Sir, Smilieface, SolidSnake77, srownzu, trufles, Waterguy469, WhatsaN00B, xpotato, xRafiq-
02-10-2011, 12:41 AM #38
Originally posted by DEREKTROTTER View Post
How to lock and hide your porn collection (using notepad)


Well not just your porn collection, can be anything really.

This clever script will hide your folder, and to show it - click on the .bat and enter your password.

    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 Enter password to lock folder or for cancel press N
set/p "cho=>"
if %cho%==XXXX 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 Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==XXXX 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


Replace the XXXX with your chosen password =D

Premade .txt file for teh noobs[/COLOR]


Super EASY, Thanks.

---------- Post added at 07:41 PM ---------- Previous post was at 07:40 PM ----------

Originally posted by baycod9 View Post
Ok i copied the whole thing. put it in a notepad. went to save as typed hi.bat and then i changed it to all files. and when i click on it, it doesnt ask me for a password? a folder just appears? is this supposed to happen lol


Simply add what u want to hide to that "Locker" folder and drag the folder back to the .bat and it will ask for a password. enter your pass and it hides it. then to get it back out it will make you put in the pass. : )

The following user thanked srownzu for this useful post:

baycod9
02-10-2011, 02:31 AM #39
baycod9
Vault dweller
Originally posted by srownzu View Post
Super EASY, Thanks.

---------- Post added at 07:41 PM ---------- Previous post was at 07:40 PM ----------



Simply add what u want to hide to that "Locker" folder and drag the folder back to the .bat and it will ask for a password. enter your pass and it hides it. then to get it back out it will make you put in the pass. : )


lol i cant get it to work! here is the problem
You must login or register to view this content.
02-10-2011, 11:16 PM #40
jakeyboy2172
Bounty hunter
f***ing Sweet man thank you
02-11-2011, 01:27 AM #41
Originally posted by baycod9 View Post
lol i cant get it to work! here is the problem
You must login or register to view this content.


Did you replace the " XXXX " in the code text that you entered in the notepad to create the .bat?

If not, right click, choose edit. There are 2 spots where you have to enter your created password. I have highlighted the 2 places in lime color. simply erase the " XXXX " and type your password.
Also if you didnt change them, you can always just type in XXXX as the password.

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 Enter password to lock folder or for cancel press N
set/p "cho=>"
if %cho%==XXXX 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 Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==XXXX 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
02-11-2011, 02:23 AM #42
TehSeph
dat ass
now i can lock my porn in the desktop :carling:
02-11-2011, 02:46 AM #43
N.W.A
Niggaz With Attitude
whaaaaaaaaaaaaaaaaat ! sick shittt
02-11-2011, 04:57 AM #44
xpotato
Bounty hunter
Originally posted by Durk View Post
nice post but surely if somebody wanted in they could right click edit and just change the password?


or you can change it into an .exe using a .bat to .exe converter for added security, its pretty sweet haha that way nobody can change the password haha

heres a link to a .bat to .exe converter =]

You must login or register to view this content.
02-11-2011, 05:31 AM #45
Originally posted by PSN
when i save as a .bat the file is still a notepad

---------- Post added at 04:06 PM ---------- Previous post was at 04:02 PM ----------



forgot to quote


All Bout That Norte Homie Vario East $ide Reedley 559 Winky Winky
02-11-2011, 07:58 AM #46
PSN TeCa-ToWn
Nothern KillaFornia 209
Originally posted by xKryptonite1 View Post
All Bout That Norte Homie Vario East $ide Reedley 559 Winky Winky


Yup 2o9 Manteca F*** a Rat

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo