Learn how to Unlock Excel Sheets with an Online Excel Password Remover
Last active
March 24, 2025 06:03
-
-
Save aspose-com-gists/54399c23fa511fb25db2db7fa19d3b99 to your computer and use it in GitHub Desktop.
Unlock Excel Sheets with Excel Password Remover
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Aspose.Cells; | |
// Specify load options | |
LoadOptions loadOptions = new LoadOptions(); | |
loadOptions.Password = "password"; | |
// Load the protected workbook | |
Workbook workbook = new Workbook("EncryptedBook1.xlsx", loadOptions); | |
// Set the password to null | |
workbook.Settings.Password = null; | |
// Save the modified workbook | |
workbook.Save("unlocked.xlsx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open encrypted file with password | |
LoadOptions loadOptions = new LoadOptions(); | |
loadOptions.setPassword("password"); | |
// Load the protected Workbook | |
Workbook workbook = new Workbook("EncryptedBook1.xlsx", loadOptions); | |
// Remove password | |
workbook.getSettings().setPassword(null); | |
// Save the file | |
workbook.save("unlocked.xlsx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import aspose.cells as cells | |
# Specify load options | |
load_options = cells.LoadOptions() | |
load_options.password = "password" | |
# Load the protected Workbook | |
workbook = cells.Workbook("EncryptedBook1.xlsx", load_options) | |
# Set the password to null | |
workbook.settings.password = None | |
# Save the modified workbook | |
workbook.save("unlocked.xlsx") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment