(BAT) 도메인 가입, 탈퇴 스크립트
도메인 가입, 탈퇴, 스크립트 @echo off setlocal enabledelayedexpansion :MainMenu cls echo. :: 현재 PC의 IP를 화면에 출력 ipconfig | findstr /i "ipv4" echo. echo. 1. Add-Computer echo. echo. 2. Rename-Computer echo. echo. 3. Add-Administrator-Group echo. echo. 4. Reboot-windows echo. choice /C:12340X /N /M "Input Number : " if errorlevel 4 goto :Reboot-windows if errorlevel 3 goto :Add-Administrator-Group if errorlev..