I have this code for launching a file on Windows phone 8:
string ppFile = @"Assets\Documents\test.txt";
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(ppFile);
var success = await Windows.System.Launcher.LaunchFileAsync(file);
When I have a *.txt file windows phone 8 is launching it. But I want to launch a "example.pptx" file, the code doesn't work. Are there perhaps permission problems with the PowerPoint file?