batch file to deploy files
- by Martin Michalak
hi I have created batch file which pulls info from *.txt file and deploy code from the source to destination:
SET Source=%1
if exist %Source% (
ECHO Source for WEB exists
) else (
ECHO Wrong build%Source% doesn't exist
GOTO Menu
)
SET Server=%2
SET AppPool=%3
SET Destination=%4
SET Folder=%5
SET ENV=%6
…