Replies: 4 comments 3 replies
-
|
bump not supported yet i suppose. |
Beta Was this translation helpful? Give feedback.
-
|
Windows7 would also be the main desktop on this. No win11, like at all (maybe win10.... just, maybe) |
Beta Was this translation helpful? Give feedback.
-
|
To make WinBoat support Windows 7 out of the box, you need to add the corresponding key to WINDOWS_VERSIONS and ensure that the base container image ghcr.io/dockur/windows properly handles version 7. If the image does not support Windows 7, it is safer to use the existing Custom ISO mechanism. How to add built-in support for Windows 7 Add an entry to src/renderer/lib/constants.ts: export const WINDOWS_VERSIONS = { The WindowsVersionKey type will update, since it is derived from keyof typeof WINDOWS_VERSIONS (constants.ts:8-18). In the UI (SetupUI.vue), the version will automatically appear in the dropdown list because it is rendered from WINDOWS_VERSIONS (SetupUI.vue:329-340). During installation, InstallManager will pass the VERSION value into the compose file (install.ts:85-92). Make sure this image supports Windows 7 installation; otherwise, the built-in option will not work. The base Dockur image supports all Windows versions. Here is the link: https://github.com/dockur/windows/pkgs/container/windows. 11 | Windows 11 Pro | 7.2 GB You need to configure it in the settings: src/renderer/lib/constants.ts export const WINBOAT_DIR = path.join(os.homedir(), ".winboat"); export const WINDOWS_VERSIONS = { export type WindowsVersionKey = keyof typeof WINDOWS_VERSIONS; src/renderer/data/docker.ts src/renderer/data/podman.ts |
Beta Was this translation helpful? Give feedback.
-
|
RemoteApp Not Available: Windows 7 Starter/Home Basic do not support RemoteApp. Use Pro/Enterprise/Ultimate editions or launch the full desktop instead. Outdated PowerShell: The app discovery script (apps.ps1) may fail on PowerShell 2.0. Update PowerShell or temporarily disable app discovery (run only custom apps). RDP Port Conflict: Ensure the host RDP port range (47300–47309) is not in use and is properly forwarded to the container (docker.ts:28-34). Guest Server Not Starting: Check C:\Program Files\WinBoat\winboat_guest_server.exe and review the service logs. Solutions Launch Full Desktop: In the WinBoat UI, select “Windows Desktop” instead of individual apps (winboat.ts:653-668). Update PowerShell: Install Windows Management Framework 5.1 on Windows 7. Reinstall Guest Server: Inside Windows 7, run as Administrator: C:\Program Files\WinBoat\install.bat or manually reinstall the service via nssm (install.bat:17-28). Use a Custom ISO with Required Components: When building the image, ensure Remote Desktop Services and PowerShell 5.1 are included. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
why isn't the WinBoat service working on Windows 7, and what settings can I adjust to get it to work?
Beta Was this translation helpful? Give feedback.
All reactions