Step 0: present in window

Reading mode = Browsed by an individual (window)


Step 1: Hide Status Bar in PowerPoint

I. On the Developer tab start the Visual Basic editor.

If you don't see the developer tab:

II. Add code to hide the status bar

  1. Insert ->Module

  2. Paste the code from below

    Sub ShowHideStatusBar()
    If CommandBars("Status Bar").Visible = False Then
        CommandBars("Status Bar").Visible = True
    ElseIf CommandBars("Status Bar").Visible = True Then
        CommandBars("Status Bar").Visible = False
    End If
    End Sub
    
  3. To access this code, I suggest to export the module

    Import the *Status-bar-removal.bas* file

    1. Right click on the name of the module
    2. Expoert file...
    3. Save it.

III. Run the code

Click on the Play button or hit F5 to run the code

On the pop-up window click Run

Close the Visal Basic editor window


Step 2: Hide the title bar in Windows

<aside> 🔗 Tip from: https://superuser.com/questions/1262225/how-to-remove-hide-title-bar-in-windows-10

</aside>

I. Download and install the free AutoHotkey WIndows automation app

AutoHotkey

II. Create a new AutoHotkey Script file in a folder

In Explorer, right-click in empty space in the folder where you want to save the script, then select New and AutoHotkey Script. You can then type a name for the script (taking care not to erase the .ahk extension if it is visible).

III. Edit your script by insterting the following code

Right click on the .ahk file and choose Edit Script

This will open a Notepad or some kind of text editor.

The code will check if the PowerPoint app is open, if not then it will open PowerPoint and make it Activ. After the Style of the window will be changed to make the title bar hidden.

if WinExist("ahk_exe POWERPNT.EXE")
WinActivate, ahk_exe POWERPNT.EXE
else
Run, POWERPNT.EXE
WinSet, Style, -0x00C00000L, A

More about WinSet function: https://www.autohotkey.com/docs/commands/WinSet.htm

More about the WinTitle function: https://www.autohotkey.com/docs/misc/WinTitle.htm

IV. Save and close the text editor.

At this point I suggest to open your presentation so see the change.