@echo off
set "folderPath=%USERPROFILE%\AppData\Local\GOOSE_B.V"

if exist "%folderPath%" (
    echo Deleting Temp GooseVPN folder: %folderPath%
    rmdir /s /q "%folderPath%"
    echo Deleted.
) else (
    echo Folder not found.
)

pause