Jump to content

Search the Community

Showing results for tags '_Crypt_EncryptFile'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Sorry guys for the inconvenience, but sometimes I get lost in the myriad functions of autoit, so I need a hand. Hope a day i'll help someone The part of the script i have difficulties: $Folder = GUICtrlRead($InFileInput) If Not FileExists($Folder) Then MsgBox(16, "Error", "no dir") ContinueLoop EndIf $password=GUICtrlRead($PasswordInput) If $password="" Then MsgBox(16,"Error","no pass") ContinueLoop EndIf $Array_Files = _FileListToArray(GUICtrlRead($InFileInput)) For $i = 1 To $Array_Files[0] $success = _Crypt_EncryptFile($Array_Files[$i], $Array_Files[$i] & ".crypt", $password, $algo) If $success Then ConsoleWrite("File " & $Array_Files[$i] & " is crypted" & $Array_Files[$i] & ".crypt" & @CRLF) Else ConsoleWrite("Error: " & @error & @CRLF) EndIf Next The script work, i'll select a dir and make all file of that dir with encryption. The problem is destination, i want to set the same dir of $InFileInput but if i change the destination something goes wrong and i have only 1 file instead of multiple file. Sorry for trouble, thanks for support
×
×
  • Create New...