#========================================================
#Function: 备份MySQL数据库
#Release Version: v0.0.3
#Release Date: 2020年8月17日
#Author: panda666
#Website: www.panda666.com
#========================================================
#============================配置项==============================
#mysqldump的位置
$mysqldumpLocation = 'C:/wamp/bin/mysql/mysql5.7.26/bin';
#备份文件存放的路径(注意:需要在末尾加上/)
$backupFileSaveLocation = 'D:/数据库备份/';
#备份文件自定义名称
$backupFileCustomName = '数据库备份_' + [string](Get-Date -Format 'yyyyMMddHHMMss') + ".bak";
#备份文件自定义名称(压缩包的名称)
$backupFileCustomCompressPackageName = '数据库备份_' + [string](Get-Date -Format 'yyyyMMddHHMMss') + ".zip";
#备份的数据库名称
$backupDatabaseName = 'oasystem';
#备份使用的MySQL账号
$backupAuthenticationUsername = 'root';
#备份使用的MySQL账号的密码(ToDo:待完成)
#$backupAuthenticationPassword = '';
#============================配置项==============================
#============================具体操作==============================
#切换路径到mysqldump的位置
Set-Location $mysqldumpLocation
#设置文件保存位置和名称
$fileName = $backupFileSaveLocation + $backupFileCustomName;
#进行备份操作
./mysqldump.exe -u $backupAuthenticationUsername -p --databases $backupDatabaseName > $fileName
#进行压缩操作
Compress-Archive -Path $fileName -DestinationPath $backupFileSaveLocation + $backupFileCustomCompressPackageName -CompressionLevel Fastest;
#============================具体操作==============================
标签:备份,PowerShell,mysqldump,MySQL,Date,备份文件,数据库
From: https://www.cnblogs.com/cqpanda/p/17475265.html