Browse our Products

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.

Aspose.Cells Excel Unlock Micro App

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 Apps

Aspose.Cells Micro Applications provide advanced spreadsheet processing scenarios tailored for end users, built on top of the Aspose.Cells .NET API.

Aspose.Cells Unlock Micro Application

This application specializes in unlocking password-protected electronic spreadsheets (such as Excel) efficiently.

Competitive features

  • Supports unlocking various input file formats as per the Aspose.Cells supported file formats list;
  • The Aspose.Cells Unlock micro application can be utilized via the command line or seamlessly integrated into your C# code through a .NET Core 3.1 compatible API.

Licensing

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.

System Requirements

  • .NET Core 3.1 on Windows, Linux, or MacOs;
  • Aspose.Cells Unlock application installed.

Installation

To install the application, execute the following command:

dotnet tool install --global Aspose.Cells.Unlock

Usage

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();