Auto_Setup_OFFICE2013

by 관리자 posted Nov 22, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

@echo off

cd\

net use x: /d /y

net use x: "\\172.24.93.71\_jw\Setup_\MS_Office_Professional_Plus_2013" /user:user chlrhkdals

cls

echo.
echo.
echo.

x:

Setup.exe

set /p choice= 프로그램 설치가 완료 되었습니까?  예(Y) / 아니오(N) :
if "%choice%" == "y" goto :Y
if "%choice%" == "Y" goto :Y
if "%choice%" == "n" goto :N
if "%choice%" == "N" goto :N
exit

:Y
net use x: /d /y
net use * /d
exit

:N
net use x: /d /y
net use * /d
echo.
echo  검정색 창을 닫으시고, http://172.24.93.71 다시 접속 바랍니다.
echo.
echo  창을 선택하고 키보드 Enter 누릅니다.
echo.
pause
exit