Copas Dengan Bat File windows
Karena Cape Setiap kali bikin template baru atau edit yang baru harus masukin di folder template word, jadi saya buat aja Bat file nya supaya tinggal run administrator. jadi deh. ini file nya (OS win 8.1 64bit dan Office Words 2010 32bit)
@echo off
title Copy Word Templates
set "SOURCE=E:\TemplateOffice"
set "TARGET=C:\Users\BuanaStudio\AppData\Roaming\Microsoft\Templates"
echo.
echo Menyalin template Word...
echo.
if not exist "%TARGET%" (
mkdir "%TARGET%"
)
copy /Y "%SOURCE%\*.dot" "%TARGET%" >nul
copy /Y "%SOURCE%\*.dotx" "%TARGET%" >nul
copy /Y "%SOURCE%\*.dotm" "%TARGET%" >nul
echo.
echo Selesai.
pause
Komentar
Posting Komentar