About 197,000 results
Open links in new tab
  1. Open Password Protected Workbook with VBA - Stack Overflow

    I have wb1 and wb2. wb1 is used for data entry and wb2 is used to record that data. wb2 is password protected (let's say with "password"). The VBA below is in wb1 and is run on a …

  2. 7-Zip command to create and extract a password-protected ZIP …

    On Mac/Linux to zip/unzip password protected zip files, I use: Zip: zip -P password -r encrypted.zip folderIWantToZip Unzip: unzip -P password encrypted.zip What are the …

  3. Excel VBA Password via Hex Editor - Stack Overflow

    Create a new .xlsm file. In the VBA part, set a simple password (for instance 'macro'). Save the file and exit. Change file extention to '.zip', open it by any archiver program. Find the file: …

  4. .htaccess/.htpasswd 500 Internal Server Error - Stack Overflow

    0 Had the same problem, it had to do with access! Have you given ownership of the password file to www-data user through chown www-data /var/www/.htpasswd chmod 640 …

  5. Is there a way to crack the password on an Excel VBA Project?

    Jun 22, 2009 · One method is to simply swap out the password entry in the file using a hex editor (see Hex editors for Windows). Step by step example: Create a new simple excel file. In the …

  6. How to open a password protected excel file using python?

    Jan 21, 2014 · how to read password protected excel in python How to open write reserved excel file in python with win32com? I'm trying to open a password protected file in excel without any …

  7. How do I unzip a password protected zip file using Python

    How do I unzip a password protected zip file using Python Asked 5 years, 5 months ago Modified 3 years, 4 months ago Viewed 11k times

  8. Removing the password from a VBA project - Stack Overflow

    Jun 12, 2018 · How can I programmatically remove a (known) password from an Excel VBA project? To be clear: I want to remove the password from the VBA Project, not the workbook …

  9. Unzip with password (with native Windows zip) - Stack Overflow

    How can you zip or unzip from the script using ONLY Windows' built-in capabilities? But I cant find anywhere about how to use PowerShell with a password protected zip file using only Windows …

  10. From password-protected Excel file to pandas DataFrame

    Mar 8, 2013 · 3 Based on the suggestion provided by @ikeoddy, this should put the pieces together: How to open a password protected excel file using python?