PPTX Encryption in C# and VB.NET
PPTX encryption enables you to securely protect the content of your PowerPoint presentation (PPTX) from unwanted viewers.
Following example shows how to load encrypted PPTX file and how to save presentation as encrypted PPTX file.
Input and output password should be specified in the appropriate text box. If password is empty, file won't be decrypted / encrypted.

using GemBox.Presentation;
class Program
{
static void Main()
{
// If using the Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY");
string inputPassword = "%InputPassword%";
string outputPassword = "%OutputPassword%";
var presentation = PresentationDocument.Load("%InputFileName%", new PptxLoadOptions() { Password = inputPassword });
presentation.Save("PPTX Encryption.pptx", new PptxSaveOptions() { Password = outputPassword });
}
}
Imports GemBox.Presentation
Module Program
Sub Main()
' If using the Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY")
Dim inputPassword As String = "%InputPassword%"
Dim outputPassword As String = "%OutputPassword%"
Dim presentation = PresentationDocument.Load("%InputFileName%", New PptxLoadOptions With {.Password = inputPassword})
presentation.Save("PPTX Encryption.pptx", New PptxSaveOptions With {.Password = outputPassword})
End Sub
End Module