Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 24, 2025 06:03
Show Gist options
  • Save aspose-com-gists/54399c23fa511fb25db2db7fa19d3b99 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/54399c23fa511fb25db2db7fa19d3b99 to your computer and use it in GitHub Desktop.
Unlock Excel Sheets with Excel Password Remover
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");
// 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");
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