HTML JPG PDF XML XLSM
Aspose.Cells  for .NET
XLSM

Unlock XLSM Spreadsheet via C#

Remove protection from XLSM using .NET library.

How to Unlock XLSM File Using C#

In order to remove protection XLSM file, we’ll use

Aspose.Cells for .NET

API which is a feature-rich, powerful and easy to use document protection API for C# platform. Open

NuGet

package manager, search for Aspose.Cells and install. You may also use the following command from the Package Manager Console.

Aspose.Cells


PM> Install-Package Aspose.Cells

Unlock XLSM via C#

You need

aspose.cells.dll

referenced in your project to execute the following workflow.

  1. Instantiate Workbook class with path to protected XLSM file
  2. Get the default or any Worksheet to remove protection
  3. Remove Worksheet protection with Worksheet.Unprotect method
  4. Remove Workbook protection with Workbook.Unprotect method
  5. Save result in XLSM format

System Requirements

Aspose.Cells for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.

  • Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Mono or Xamarin Platforms
  • Development environment like Microsoft Visual Studio
  • Add reference to the Aspose.Cells for .NET DLL in your project
 

Command


// instantiate a Workbook object with protected XLSM file
var workbook = new Aspose.Cells.Workbook("protected.xlsm");

// access the default worksheet in the Excel file
var worksheet = workbook.Worksheets[0];

// unprotect worksheet without a password
worksheet.Unprotect();

// unprotect workbook with password
workbook.Unprotect("password");

// save the result back in XLSM format
workbook.Save("unprotected.xlsm", Aspose.Cells.SaveFormat.Auto);
 
  • About Aspose.Cells for .NET API

    Aspose.Cells API can be used to create, edit, convert and render Microsoft Excel formats to different formats. Moreover, it can be used for comprehensive charting, scalable reporting and reliable calculations within software applications. Aspose.Cells is a standalone API and it does not require any software like Microsoft or OpenOffice.

    Free App to Unlock XLSM

    Other Supported Unlocking Formats

    Using C#, one can easily remove protection / unlocking of different formats including.

    ODS (OpenDocument Spreadsheet File)
    XLS (Excel Binary Format)
    XLSB (Binary Excel Workbook File)
    XLSX (OOXML Excel File)