@echo off
setlocal EnableExtensions
rem Desinstalador EasyPipeRobot (paquete apps.meisa-e.com)
rem   uninstall_easypipe_robot_on_pc.cmd
rem   uninstall_easypipe_robot_on_pc.cmd apodata
rem   uninstall_easypipe_robot_on_pc.cmd all
set "PKG=%~dp0"
set "MODE=%~1"
set "PS_ARGS=-File ""%PKG%uninstall_easypipe_robot_on_pc.ps1"" -Force"
if /I "%MODE%"=="apodata" set "PS_ARGS=%PS_ARGS% -RemoveAppDataBrowsers"
if /I "%MODE%"=="appdata" set "PS_ARGS=%PS_ARGS% -RemoveAppDataBrowsers"
if /I "%MODE%"=="all" set "PS_ARGS=%PS_ARGS% -RemoveAppDataBrowsers -RemoveUiPrefs -RemoveSimulacion"
powershell -NoProfile -ExecutionPolicy Bypass %PS_ARGS%
exit /b %ERRORLEVEL%
