Skip to main content

Automatically taking VSS backup using batch file

To take VSS backup automatically using batch file.

1. Creating folder name with Current date
2. Taking VSS backup using ssarc command

@ECHO OFF
@TITLE Backing up source safe databases

FOR /F "tokens=2-4 delims=/" %%i IN (’date /t') DO SET DATE=%%i_%%j_%%k
mkdir  D:\VSS\Backup\%DATE%

"D:\Program Files (x86)/Microsoft Visual SourceSafe\ssarc" -D- -I-
D:\VSS\Backup\%DATE%\application.ssa $/SourceSafe/application

Comments

  1. Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini - iTech
    › retro-bit-mini › babyliss pro nano titanium flat iron retro-bit-mini Retro-Bit Mini Retro-Bit Mini titanium oxide formula Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini. Includes the black titanium ring original Sega Seal of Quality, feature set, HDMI output,  Type: Retro-Bit Mini head titanium ti s6 Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini Retro-Bit Mini  Rating: 4.8 titanium automatic watch 7 reviews $29.99 In stock

    ReplyDelete

Post a Comment

Popular posts from this blog

Install Grub Customizer in Debian based OS

Always we are looking to customize the boot menu, boot order, boot background image and changing the font & color. These things can be achieved by Grub Cusomizer in Linux. Follow the below steps to install latest version of Grub Cusomizer into Debian based OS (Kali, Parrot) Open the terminal, execute the following commands in order. 1. su - 2. apt-get install build-essential cmake libgtkmm-3.0-dev libssl-dev gettext libarchive-dev  3. wget https://launchpad.net/grub-customizer/5.0/5.0.6/+download/grub-customizer_5.0.6.tar.gz 4. tar xfv grub-customi*  5. cd grub-customizer-5.0.6 6. cmake . && make -j3  7. make install More information, Visit Grub Customizer site - https://launchpad.net/grub-customizer

How to Update Burp Suite in Kali Linux

Download the latest Jar file Navigate to /usr/bin and rename burpsuite to burpsuite(old) Copy the jar that was just downloaded into /usr/bin Right-click and rename the jar to burpsuite , and Allow executing file as program Upon successful launch, you can delete burpsuite(old) from /usr/bin.

Copy files and folders recursive in C#

This code written to copy files and folders recursively from one drive to another drive using C#, It could be physical storage, logical storage  or network location.  private static void Copy(string sourcePath, string targetPath)         {             foreach (string f in Directory.GetFiles(sourcePath))                 File.Copy(f, targetPath + "\\" + Path.GetFileName(f), true);             foreach (string d in Directory.GetDirectories(sourcePath))             {                 var dirName = Path.GetFileName(d);                 Directory.CreateDirectory(targetPath + "\\" + dirName);                 Copy(sourcePath + "\\" + dirName, targetPath + "\\" + dirName);           ...