Skip to content

Instantly share code, notes, and snippets.

View ashtonkj's full-sized avatar

Kevin Ashton ashtonkj

View GitHub Profile
@ashtonkj
ashtonkj / install_open_webui_service.bat
Created June 10, 2025 08:09 — forked from cyysky/install_open_webui_service.bat
Batch script to install Open WebUI as a Windows service using nssm and uvx, need to run it command prompt with administrator right.
@echo off
setlocal enabledelayedexpansion
echo ========================================
echo Installing Open WebUI as a Windows service
echo ========================================
:: Define variables
set "INSTALL_DIR=%~dp0"
set "INSTALL_DIR=%INSTALL_DIR:~0,-1%"
set "DATA_DIR=%INSTALL_DIR%\data"