Page 1 sur 1

cacher private x2

Posté : 15 janv. 2010 22:37
par stevemsdos
bonjour a tous, j aimerai creer un script qui au lieu d ouvrir 1 private, en ouvre 2 (attention: avec un seul mot de passe et une seule confirmation)

ex private et private 2

voici le script de base mais j arrive pas a le modifier pour arriver a ce que j aimerai...

merci de votre aide

@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Etes vous sure de vouloir cacher Y=Oui N=Non(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 Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo entrer mot de passe pour ouvrir le fichier
set/p "pass=>"
if NOT %pass%== 1919 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Bien Bloquer GG
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

Re: cacher private x2

Posté : 16 janv. 2010 18:11
par Laddy