!Use BackupWallet.bat at your own risk!


Change S:\Wallet-backup to where you would like to backup your wallet.
ONLY have your Wallet backup in this dir as it deletes folders over 10 days old.
If you want to keep more than 10 days of backups change skip=10 to skip=20 for 20 days.

If you dont have a bitcoin wallet remove two lines:
	if exist "S:\Wallet-backup\%day%\Bit" (echo found S:\Wallet-backup\%day%\Bit) else (mkdir "S:\Wallet-backup\%day%\Bit")
	xcopy /D /I /Y /c C:\Users\%USERNAME%\AppData\Roaming\Bitcoin\wallet.dat "S:\Wallet-backup\%day%\Bit"

If you ahve other wallets not already in this scrypt locate the wallet.dat file and addin:
	if exist "S:\Wallet-backup\%day%\OTHERCOIN" (echo found S:\Wallet-backup\%day%\OTHERCOIN) else (mkdir "S:\Wallet-backup\%day%\OTHERCOIN")
	xcopy /D /I /Y /c C:\Users\%USERNAME%\AppData\Roaming\OTHERCOIN\wallet.dat "S:\Wallet-backup\%day%\OTHERCOIN"
change OTHERCOIN to the name of the coin

Enjoy!