-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
添加了 QuickClose.bat QuickStart.bat
- Loading branch information
dorm_mang
committed
Jul 31, 2012
1 parent
af49a45
commit 8690870
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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 |
This file contains 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
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 |