Created
May 22, 2012 05:52
-
-
Save kachick/2766915 to your computer and use it in GitHub Desktop.
昔でっちあげたもの - Alarm再生&ログ生成バッチ(XP or 2003)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: | |
| ::Description: | |
| :: Alarm再生&ログ生成バッチ(XP or 2003) | |
| :: | |
| ::Usage: | |
| :: 叩けば動きます。 | |
| :: 例外処理とかなんも無し | |
| :: | |
| :::::::::::::::::::::::::::::::::::::::::::::: | |
| @echo off | |
| setlocal enabledelayedexpansion | |
| set logfile=Alarm_%date:~0,4%%date:~5,2%%date:~8,2%.log | |
| set alarm="Alarm.wav" | |
| echo %date%_%time%: バッチファイルが起動しました。 >> %logfile% | |
| mplay32 /play /close %alarm% | |
| endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment