|
| |||||||||
| Tags: excel, microsoft, unlock |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| How do I unlock Microsoft Excel ?
Hello, At the moment, I have a strong need or rather an urgency to unlock a file in Excel, someone has locked it with a password. Is there any technique to unlock it. |
|
#3
| ||||
| ||||
|
Thanks for the information provided. |
|
#5
| |||
| |||
|
package net.ensode.jexcelapitest; import java.io.File; import java.io.IOException; import jxl.Workbook; import jxl.read.biff.BiffException; import jxl.write.WritableSheet; import jxl.write.WritableWorkbook; import jxl.write.WriteException; public class JExcelApiTest { public static void main(String[] args) { try { Workbook workbook = Workbook. getWorkbook(new File("/path/to/protected.xls")); WritableWorkbook copy = Workbook. createWorkbook(new File("/path/to/unprotected.xls"), workbook); WritableSheet[] sheets = copy.getSheets(); for (WritableSheet sheet : sheets) { sheet.getSettings().setProtected(false); } copy.write(); copy.close(); } catch (BiffException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (WriteException e) { e.printStackTrace(); } } } Last edited by Yogesh : 15-10-2008 at 12:25 PM. Reason: External & non-relevant links removed |
|
#6
| |||
| |||
| Re: How do I unlock Microsoft Excel ?
Why not try a Excek Password Recovery software,There is a product called MS Excel Password Recovery 5.0 ,It is to recover Microsoft Excel passwords, enabling you to easily view the workbooks and sheets for the information. This Excel password recovery tool supports to recover password for Excel documents of all versions through 2007. In addition to the powerful attack modes of brute-force attack, brute-force with mask attack, and smart dictionary attack, this program is super easy to use with the straightforward user interfaces. I would recommend you to try it. Good luck! |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How do I unlock Microsoft Excel ?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Clicking on Worksheet on multiple Worksheets in the single Excel file not allow viewing the worksheet in Microsoft Excel 2010 | Dipanwita | Windows Software | 8 | 04-12-2011 11:24 AM |
| How to unlock password protected ms excel file ? | Foy | Windows Software | 8 | 30-09-2011 05:45 PM |
| Configuring Internet Explorer 8 to open Excel file in to Microsoft Excel | Aaghaz | Technology & Internet | 4 | 13-02-2011 10:37 AM |
| How to unlock password from Excel VBA | venkat=raghavan | Windows Software | 3 | 14-12-2010 07:47 PM |
| Backup Microsoft Outlook Contacts to Microsoft Excel File | FlashX | Tips & Tweaks | 2 | 10-03-2009 11:50 AM |