Windows7下一些关机、重启、待机、休眠命令,通过Autohotkey可实现快速关机等操作。
;立即关机,无提示、延时。
shutdown -p
;立即重启
shutdown -r -t 00
;进入休眠状态,如有关闭休眠则进入待机状态
rundll32.exe powrProf.dll,SetSuspendState
Windows7关闭休眠功能,混合睡眠将不可用:
powercfg -h off
发布时间:March 3, 2013 // 分类:Windows // No Comments
;立即关机,无提示、延时。
shutdown -p
;立即重启
shutdown -r -t 00
;进入休眠状态,如有关闭休眠则进入待机状态
rundll32.exe powrProf.dll,SetSuspendState
powercfg -h off
发布时间:March 3, 2013 // 分类:Windows // No Comments
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.pdf]
@=""
[HKEY_CLASSES_ROOT\.pdf\DefaultIcon]
@="C:\\WINDOWS\\Installer\\{AC76BA86-7AD7-2052-7B44-A93000000001}\\PDFFile_8.ico"
[HKEY_CLASSES_ROOT\.pdf\shell\open\command]
@="\"C:\\SumatraPDF.exe\" \"%1\""
发布时间:March 2, 2013 // 分类:AutoHotKey // No Comments
keepass()
{
DetectHiddenWindows, On
IfWinExist Data.kdbx
{
Send ^!a
}
else
{
DetectHiddenWindows, On
IfWinExist ahk_class WindowsForms10.Window.8.app.0.2bf8098_r13_ad1
{
Send ^!k
IfWinNotActive 打开数据库
{
Send ^!k
}
WinWait 打开数据库
Send www.haiyun.me{Enter}
Sleep 1000
Send ^!a
}
else
{
Run D:\Program Files\KeePass\KeePass.exe
WinWait 打开数据库
WinActivate
Send www.haiyun.me{Enter}
Sleep 1000
Send ^!a
}
}
}
在火狐下通过快捷键调用KeePass快速输入密码,其它浏览器更改Ahk_Class:
#IfWinActive ahk_class MozillaWindowClass
::/p::
keepass()
Return
发布时间:February 23, 2013 // 分类:Sandboxie // No Comments
Proxycap为本地任何程序提供协议转换功能,支持Socks5和HTTP常用代理方式,对于不支持代理的程序可使用Proxycap转换,在使用过程中发现Proxycap对于在Sandboxie沙盘内运行的程序无效。解决方法:
打开Sandboxie沙盘设置,在资源访问中添加直接IPC访问:
*\BaseNamedObjects*\proxycap_*_event*
或直接编辑Sandboxie配置文件在特定沙盘下添加:
OpenIpcPath=*\BaseNamedObjects*\proxycap_*_event*
如有多个沙盘可使用模板全局设置:
[Template_Local_Allow_ProxyCAP]
Tmpl.Title=Allow ProxyCAP to handle network redirection
OpenIpcPath=*\BaseNamedObjects*\proxycap_owner_event*
Tmpl.Class=Local
然后在全局设置下使用模板:
[GlobalSettings]
Template=Local_Allow_ProxyCAP