hi,
I had some trouble to use your tool as the SunshineIntegration.bat couldn't find the .exe that was in the same folder;
I solved it by using %~dp0
Example :
::@echo off
setlocal
:: Check if the correct number of arguments are provided
if "%~3"=="" (
echo Usage: %0 [width] [height] [fps]
exit /b 1
)
:: Assign arguments to variables
set WIDTH=%1
set HEIGHT=%2
set FPS=%3
:: Run the command from the current batch script directory
start "" /w "%~dp0PRPlanIT.com-VirtualDisplayDrv_Wiz.exe" Reso_Adds %WIDTH% %HEIGHT% %FPS%
:: Optionally pipe the output to a log file (if needed)
::"%~dp0PRPlanIT.com-VirtualDisplayDrv_Wiz.exe" Reso_Adds %WIDTH% %HEIGHT% %FPS% > "%~dp0output.log" 2>&1