Jump to content
denys97

Show/Hide Folder

Recommended Posts

  • Moderators
Posted

Se poate utiliza si criptarea folderelor folosind CLSID. Pentru mai multe CLSID-uri, click aici.

O mica alternativa la acest post.


@echo off
@title Blocheaza/Deblocheaza foldere by Renegade
@cls
@:start
@cls
@echo =============================================
@echo = Blocheaza/Deblocheaza foldere by Renegade =
@echo =============================================
@echo.
@date /t
@time /t
@echo.
@echo 1. Cripteaza
@echo 2. Decripteaza
@echo x. Iesire
@echo.
@echo NOTE:
@echo Fisierul ce trebuie criptat/decriptat sa fie langa acest executabil !!!
@echo Utilizati "" pentru folderele ce contin spatiu in nume. Ex: "New Folder"
@echo.
@set choice=
@set /p choice=Introducetzi numarul optziunii dorite.
@if '%choice%' == '1' goto Criptare
@if '%choice%' == '2' goto Decriptare
@if '%choice%' == 'x' goto Iesire
@if '%choice%' == '' goto start
@echo.

@goto start
@:Criptare
@cls
@set folder=
@set /p folder=Introduceti numele folderului
@ren %folder% %folder%.{21EC2020-3AEA-1069-A2DD-08002B30309D}
@cls
@echo.
@echo ##################################################
@echo # Va multumesc ca ati folosit acest utilitar #
@echo ##################################################
@echo Apasati orice tasta pentru revenirea in meniu.
@pause >nul
@cls
@goto start

@goto start
@:Decriptare
@cls
@set folder=
@set /p folder=Introduceti numele folderului
@ren %folder%.{21EC2020-3AEA-1069-A2DD-08002B30309D} %folder%
@cls
@echo.
@echo ##################################################
@echo # Va multumesc ca ati folosit acest utilitar #
@echo ##################################################
@echo Apasati orice tasta pentru revenirea in meniu.
@pause >nul
@cls
@goto start

@goto end
@
@cls
@goto exit
@:Iesire
@cls

Salvati intr-un batch file si faceti mai simplu lucrul.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...