Skip to content

Commit

Permalink
中文乱码问题决2012/5/13 16:40:24
Browse files Browse the repository at this point in the history
添加了 QuickClose.bat QuickStart.bat
  • Loading branch information
dorm_mang committed Jul 31, 2012
1 parent af49a45 commit 8690870
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
22 changes: 22 additions & 0 deletions QuickClose.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
::last modify:11:34 2012-5-13
::Author:mang
::Version:1.0
::Function:快速关闭相关程序
::bug:由于firefox一般是由AutoHotkey 触发,所以关闭AutoHotkey时也会关闭firefox,即把关闭fiefox的那行命令去掉,运行该批处理也会关闭firefox.

echo off
echo set path......
path=%path%;

echo close wiz......
@taskkill /f /t /im Wiz.exe
echo close Evernote......
taskkill /f /t /im Evernote.exe
echo close AutoHotkey......
taskkill /f /t /im AutoHotkey.exe
echo close NutstoreClient......
taskkill /f /t /im NutstoreClient.exe
echo close klive......
taskkill /f /t /im klive.exe
::taskkill /f /t /im firefox.exe
::pause
33 changes: 33 additions & 0 deletions QuickStart.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
::last modify:16:05 2012-5-13
::Author:mang
::Version:1.0
::Function:快速打开相关程序,以后也可用于开机启动其它程序的批处理。


::关闭命令回显,其实下面有的命令已经设置了不回显 如@path=%path%。但这里设置的是全局的。
@echo off

echo 设置path……
@path=%path%;

echo 启动mang.ahk……
D:
cd Program Files\AutoHotkey
start AutoHotkey "E:\ApplicationData\netDisk\klive\application\ahk\mang.ahk"

echo 启动Evernote.exe……
D:
cd "D:\Program Files\Evernote\Evernote\"
start EvernoteTray.exe

echo 启动klive……
C:
cd "C:\Users\mang\AppData\Roaming\Kingsoft\klive\bin\"
start klive.exe

echo 启动nutstore……
D:
cd "D:\Program Files\nutstore\"
start NutstoreClient.exe

::pause

0 comments on commit 8690870

Please sign in to comment.