Cherche logiciel pour mettre mot de passe

WovovoW -  
vamp bund Messages postés 32 Statut Membre -
Bonjour,
Je cherche un logiciel gratuit permettant de mettre un mot de passe a un dossier et a tous ce qu'il y a a l'interieur.

2 réponses

  1. reiep Messages postés 283 Statut Membre 13
     
    pas besoins de logiciel ->clic gauche -> propriété -> onglet partage -> rendre ce dossier confidentiel puis tu et un mot de passe sur ta session et seul ton compte affiche ce dossier
    0
  2. vamp bund Messages postés 32 Statut Membre 3
     
    Bonjour,
    cls
    @ECHO OFF
    title Folder Private
    if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
    if NOT EXIST Private goto MDLOCKER
    :CONFIRM
    echo Are you sure you 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 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 Enter password to unlock folder
    set/p "pass=>"
    if NOT %pass%== MONPASS goto FAIL
    attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Invalid password
    goto end
    :MDLOCKER
    md Private
    echo Private created successfully
    goto End
    :End

    Entre ce code dans un bloc note enregistre en fichier batch (extension .bat)
    dans le dossier lequel tu met ce ficher batch un dossier nommé Private dans lequel tu met tes trucs que tu veux locker , change MONPASS par ton mot de passe.

    A bientot
    0