Add standalone Windows installer, uninstaller, and repairer for OVMS#4348
Closed
exzile wants to merge 3 commits into
Closed
Add standalone Windows installer, uninstaller, and repairer for OVMS#4348exzile wants to merge 3 commits into
exzile wants to merge 3 commits into
Conversation
Introduce packaging/windows: a per-user Inno Setup installer plus PowerShell control scripts and a tray Manager that make OpenVINO Model Server installable, repairable, and removable on Windows without admin rights. - Installer (OVMSInstaller.iss): per-user install to %LOCALAPPDATA%, modern wizard UI with OpenVINO branding, existing-install detection with a repair/upgrade-vs-uninstall choice page, and caches the pristine package under %LOCALAPPDATA%\OVMS\packages\source for offline repair. - Scripts: configure-ovms, start/stop (process or service), set-path, service install/uninstall, validate-install, repair-package (verify + restore + ovms --version), and uninstall with a 3-way data choice (preserve all / keep models / remove all). - Manager: WinForms tray app (start/stop/status) as an MVP; full GUI to follow. - Bundles the python_on OVMS package (OpenVINO runtime, GenAI, tokenizers, Python) as a single version-matched payload. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 similar comment
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses #4347
What this adds
A standalone, self-contained Windows installer / uninstaller / repairer for OVMS under
packaging/windows/, plus a minimal tray manager. It complements the portableovms.zip(does not replace it).Installer (
installer/OVMSInstaller.iss, Inno Setup)%LOCALAPPDATA%\Programs\OVMS, data under%LOCALAPPDATA%\OVMS, HKCU registry.python_onpackage as one version-matched payload (OVMS + OpenVINO runtime + GenAI + tokenizers + Python) — no install-time downloads.%LOCALAPPDATA%\OVMS\packages\sourcefor offline repair.Scripts (
scripts/, PowerShell)configure-ovms,start-ovms/stop-ovms(process or service),set-path,ovms-env,install-service/uninstall-service,validate-install.repair-package.ps1— verify required files, restore missing ones from the cached package, re-runovms.exe --version.uninstall-ovms.ps1— 3-way data choice: preserve all / keep models / remove all.runtime.json, port preflight.Manager (
manager/, .NET WinForms)Design
packaging/windows/OVMS_WINDOWS_INSTALLER_MANAGER_PLAN.mddocuments the full architecture and phased plan.Notes / scope
bin/,obj/,artifacts/) are git-ignored.Testing
build_installer.ps1(clean compile).This is a reference implementation for discussion in #4347; happy to adjust scope based on maintainer direction.
🤖 Generated with Claude Code