배치파일

설치현장용 : 기존PC 인증서 NPKI GPKI 백업, 즐겨찾기 백업

by 바른생활청년 posted May 02, 2017
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

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

@echo off

c:
cd\
cls


md "D:\_PC교체(전)백업\인증서"

md "D:\_PC교체(전)백업\인증서\GPKI"

md "D:\_PC교체(전)백업\인증서\NPKI"

md "D:\_PC교체(전)백업\인증서\NPKI_LocalLow"

md "D:\_PC교체(전)백업\인증서\Favorites"

xcopy "%systemdrive%\GPKI" "D:\_PC교체(전)백업\인증서\GPKI" /s /y

xcopy "%programfiles%\NPKI" "D:\_PC교체(전)백업\인증서\NPKI" /s /y

xcopy "%userprofile%\AppData\LocalLow\NPKI" "D:\_PC교체(전)백업\인증서\NPKI_LocalLow" /s /y

xcopy "%userprofile%\Favorites" "D:\_PC교체(전)백업\인증서\Favorites" /s /y

md "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기"

md "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\GPKI"

md "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\Program Files\NPKI"

md "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\Users\user\AppData\LocalLow\NPKI"

md "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\Users\user\Favorites"

xcopy "%systemdrive%\GPKI" "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\GPKI" /s /y

xcopy "%programfiles%\NPKI" "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\Program Files\NPKI" /s /y

xcopy "%userprofile%\AppData\LocalLow\NPKI" "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\Users\user\AppData\LocalLow\NPKI" /s /y

xcopy "%userprofile%\Favorites" "D:\_PC교체(전)백업\인증서\C_드라이브_붙여넣기\Users\user\Favorites" /s /y


pause