2021-10-01から1ヶ月間の記事一覧

bat - 日付

@echo off rem 本日 FOR /F "usebackq delims=" %%a in (`powershell "(get-date).ToString(\"yyyy/MM/dd\")"`) do Set TODAY=%%a echo %TODAY% rem 本日9時 setlocal set command=`powershell "[DateTime]::Today.AddHours(9).ToString('yyyy-MM-dd HH:mm:s…

powershell - bat

@echo off echo bat start rem powershell -NoProfile -ExecutionPolicy Unrestricted .\hina.ps1 -startTime '2012/12/1 13:00:00' -endTime '2012/12/2 15:00:00' powershell -NoProfile -ExecutionPolicy Unrestricted .\hina.ps1 echo bat finish! press…

powershell - デフォルトパラメータ

Param( # 先頭行でないとエラー $startTime = [DateTime]::Today.AddHours(-15), # 前日9時 $endTime = [DateTime]::Today.AddHours(9), # 本日9時 $thresholdValue = 10 ) echo "startTime: $startTime" echo "endTime: $endTime" echo "thresholdValue: $t…

タスクスケジューラ

技術メモメモ: タスクスケジューラーを使って1分間隔で実行するタスクを作成する方法 起動バッチ @echo off powershell -NoProfile -ExecutionPolicy Unrestricted .\hina.ps1 exit hina.ps1 $time = get-random -minimum 1 -maximum 5; Write-Host "wait ti…