0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PC起動時にフォルダをZipで固めるスクリプト

Posted at

まえがき

Windows 10起動時に、Google Driveのバックアップを取ろうと思ってスクリプトを書いてみた。
あまり複雑なことはしていませんが、作業メモとして書いておきます。

 下準備

Set-ExecutionPolicy RemoteSigned -Force

をしておき、PowerShell内の関数を読み込めるようにしておきます。

スクリプト

同じフォルダの中に置きます。

Function ShowToast {

Function global:ShowToast {

にします。

backupgdrive.bat
@echo off
powershell -NoProfile -ExecutionPolicy Unrestricted .\backupgdrive.ps1
exit
backupgdrive.ps1
$filename = "backupgdrive"
$sourcedir = Z:\gdrivesync
$distdir = Z:\backupfolder
$now = Get-Date -Format "yyyyMMddHHmmss"

Z:\simple_toast.ps1

ShowToast -title "GDriveバックアップ" -message "Gdriveのバックアップ中..." -detail "Zipアーカイブの作成"

C:\'Program Files'\7-Zip\7z.exe a -tzip -r  $distdir\$filename_$now.zip $sourcedir\


If( $? -ne 0){
$msg= "Gdriveバックアップ成功"
}Else{
$msg="Gdriveバックアップ失敗"
}

ShowToast -title "GDriveバックアップ" -message $msg -detail "Zipアーカイブの作成"

forfiles /P $distdir\ /D -30 /M "*.zip" /c "cmd /c del @file"

最後

タスクスケジューラでbackupgdrive.batを任意のタイミングで実行するようにすれば問題ないです。
image.png

参考文献

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?