//Open an Excel file which workbook structure is protected. Workbook workbook = new Workbook("Book1.xlsx"); //Unprotect workbook structure. workbook.Unprotect("password"); //Save Excel file. workbook.Save("Book1.xlsx");