OpenBoard
Overview
winget install --id=OpenEducationFoundation.OpenBoard -eVersion & Lifecycle
Community Notes
OpenBoard – Command-line note
Deploy OpenBoard silently enterprise-wide using its Inno Setup installer with OpenBoard_Installer_x.y.z.exe /VERYSILENT /NORESTART /MERGETASKS=desktopicon to suppress UI, prevent reboots, and add a desktop shortcut. Post-install, disable software updates via PowerShell: (Get-Content "C:Program FilesOpenBoardetcOpenBoard.config") | ForEach-Object { $_ -replace "EnableSoftwareUpdates=true" , "EnableSoftwareUpdates=false" } | Set-Content "C:Program FilesOpenBoardetcOpenBoard.config". This ensures a hands-off deployment with controlled update behavior.
OpenBoard – Command-line note
Deploy OpenBoard silently using the official Inno Setup installer with OpenBoard_Installer_x.y.z.exe /VERYSILENT /NORESTART to suppress all UI and prevent reboots, ensuring compatibility with enterprise tools like SCCM or PDQ Deploy. Optionally customize the install path via /DIR="C:CustomPath". Post-install, disable update checks safely with PowerShell: (Get-Content "C:Program FilesOpenBoardetcOpenBoard.config") | ForEach-Object { $_ -replace "HideCheckForSoftwareUpdate=false" , "HideCheckForSoftwareUpdate=true" } | Set-Content "C:Program FilesOpenBoardetcOpenBoard.config".