Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
It allows various formats like Xlsx to PDF through command line or code integration, ensuring fast and accurate conversions.
NuGet | Product Page | Docs | Demos | Blog | Free Support | Temporary License | EULA
Aspose.Cells Micro Applications provide advanced spreadsheet processing scenarios tailored for end users, built on top of the Aspose.Cells .NET API.
This application specializes in unlocking password-protected electronic spreadsheets (such as Excel) efficiently.
While the Aspose.Cells Unlock application itself is free, Aspose.Cells .NET requires a license. You can reuse your existing license within the application or evaluate it using Aspose.Cells .NET in trial mode.
To install the application, execute the following command:
dotnet tool install --global Aspose.Cells.Unlock
Use from command line:
Aspose.Cells.Unlock --input encrypted.xlsx --password your_password --type workbook
Use from code:
var cellsUnlockOptions = new CellsUnlockOptions { InputPath = "encrypted.xlsx", Password = "your_password", Type = "workbook" // workbook, worksheet, writable }; // You may set the path to your Aspose.Cells .NET license file via parameters if (isLicensed) { cellsUnlockOptions.LicenseFile = "Aspose.Total.Product.Family.lic"; } var cellsUnlock = new CellsUnlock(cellsUnlockOptions); cellsUnlock.Unlock();