Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'You need to save your presentation as a "Powerpoint Show"
'Open the presentation you want to save as a slide show.
'On the File menu, click Save As.
'In the Save as type list, click PowerPoint Show. Your slide show file will be saved with a .pps file extension.
'When you open this file from your desktop, it will automatically start your presentation in slide show view
Set WshShell = CreateObject("Wscript.Shell")
strFileName = "c:\Document Path\MyDocument.ppsx"
WshShell.Run "POWERPNT.EXE /s" &" "& DblQuote(strFileName),1,false
'**********************************************************************************************
'Function to add double quotes in a variable
Function DblQuote(Str)
DblQuote = Chr(34) & Str & Chr(34)
End Function
'**********************************************************************************************