Monday, 10 February 2020

Create Zip file Backup with CMD Script


/*
BackScript.cmd
CreateBy mFaisal- 11-Feb-2020
Execute this script for creating one zip file of
multiple files from multiple directories
*/

@echo off
d:
cd D:\SRL-Common\Backup
zip -r Backup_%Date:~-7,2%_%date:~4,2%_%date:~-4%_%time:~0,2%_%Time:~3,2% D:\SRL-Common\Development D:\SRL-Common\Documentation D:\SRL-Common\Query
pause

No comments:

Post a Comment

How To: Remove all rows from view object (VO) in OAF & ADF

This is the basic requirement when we are working with oracle OAF. In which we need to removed the all rows from the table. The best use ca...