PPT
PPTX
ODP
POT
PPSX
ODP
Unlock ODP using C++
Use Aspose.Slides for C++ to remove encryption and write protection from presentation files without Microsoft PowerPoint.
Removing Encryption from ODP Presentation via C++
Aspose.Slides for C++ lets you remove encryption or write protection from ODP presentations. Use LoadOptions to open an encrypted file, then use the ProtectionManager object from the Presentation class to call RemoveEncryption or RemoveWriteProtection.
Disabling Password Protection from ODP using C++
auto loadOptions = MakeObject<LoadOptions>();
loadOptions->set_Password(u"password");
auto presentation = MakeObject<Presentation>(u"encrypted-presentation.odp", loadOptions);
presentation->get_ProtectionManager()->RemoveEncryption();
presentation->Save(u"unlocked-presentation.odp", SaveFormat::Odp);
presentation->Dispose();
Removing Write Protection from ODP Presentation using C++
auto presentation = MakeObject<Presentation>(u"write-protected-presentation.odp");
presentation->get_ProtectionManager()->RemoveWriteProtection();
presentation->Save(u"unlocked-write-protected-presentation.odp", SaveFormat::Odp);
presentation->Dispose();
How to Remove Password From ODP via C++
These are the steps to remove protection from ODP files.
Load the ODP file with the
Presentationclass andLoadOptionswhen a password is required.Use the
ProtectionManagerobject to remove protection.Call
RemoveEncryptionfor encrypted files orRemoveWriteProtectionfor write-protected files.Save the unlocked file with
SaveFormat::Odp.