上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 当用WIFI连接到CMCC即便没有认证登录也会显示己连接; 环境: AutoHotkey 1.1.05.01 Unicode, Windows XP#NoEnvahkcs := "http://www.baidu.com"MsgBox, % "上网方式: " W_InternetGetConnectedState() "`n连接状态: " W_IsNetworkAlive() "`n"MsgBox, % W_InternetCheckConnection(ahkcs) ? "成功连接到 baidu.com 阅读全文
posted @ 2013-09-27 22:51 cnsealine 阅读(1132) 评论(0) 推荐(0) 编辑
摘要: strComputer := "."objWMIService := ComObjGet("winmgmts:\\" strComputer "\root\wmi")colMonitoredEvents := objWMIService.ExecNotificationQuery("Select * from MSNdis_StatusMediaDisconnect") Loop{ strLatestEvent := colMonitoredEvents.NextEvent MsgBox, % "有一个网 阅读全文
posted @ 2013-09-27 22:46 cnsealine 阅读(562) 评论(0) 推荐(0) 编辑
摘要: 特别提醒:便携版配置:EnvSet,SciTE_HOME,%A_ScriptDir%run, %SciTE_HOME%\scite.exe "%1%";~ 要传递参数,将他们立即添加在程序或文档名字后面。如果一参数包含空格,将其用双引号括起是最安全的(虽然它也能在某些情况下不需要他们而运作)retu... 阅读全文
posted @ 2013-09-26 22:29 cnsealine 阅读(802) 评论(0) 推荐(0) 编辑
摘要: 一、WQL简介WQL就是WMI中的查询语言,WQL的全称是WMI Query Language,简称为WQL,翻译成中文好像可以成为Windows管理规范查询语言。WQL其实非常简单,它有如下特点:每个WQL语句必须以 SELECT 开始;SELECT 后跟你需要查询的属性名(我刚才对应SQL将其称之为字段名了),也可以像SQL一样,以*表示返回所有属性值;FROM关键字;你要查询的类的名字;另外,如果你想精确查询结果还可以加上WHERE条件从句。比如某个类有Enable属性,你可以在查询的时候加上WHERE ENABLE=true。二、详述1、语法SELECT properties[,pro 阅读全文
posted @ 2013-09-26 20:03 cnsealine 阅读(678) 评论(0) 推荐(0) 编辑
摘要: @ echo off%1 %2ver|find "5.">nul&&goto :stmshta vbscript:createobject("shell.application").shellexecute("%~s0","goto :st","","runas",1)(window.close)&goto :eof :stcopy "%~0" "%windir%\system32\"netsh wlan 阅读全文
posted @ 2013-09-26 13:20 cnsealine 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 用cmd命令需加在命令后加.exe run Netsh.exe Wlan Connect Name = CMCC,, HideSpecify panel page(escape commas): run, control.exe inetcpl.cpl`,`,4 OR run, rundll32.exe shell32.dll`,Control_RunDLL inetcpl.cpl`,`,4打开程序后激活一定要用WinWait,因为run之后会直接运行后面的命令,此时检测不到PID,若Sleep几秒效果也一样。Run, notepad, , , NewPIDWinWait, ahk_p... 阅读全文
posted @ 2013-09-25 22:43 cnsealine 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Ⅰ:Just put this script to your Standard Library and put this function at the top of the script, as simple as that.RunAsAdmin()Download : RunAsAdmin.ahkⅡ:To run for any scripts, compiled or not, with params use this code instead..Loop, %0% ; For each parameter: { param := %A_Index% ; Fetch the ... 阅读全文
posted @ 2013-09-25 22:03 cnsealine 阅读(548) 评论(0) 推荐(0) 编辑
摘要: Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VBSFile\Shell\runas\Command]@=hex(2):22,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,57,00,\ 53,00,63,00,72,00,69,00,70,00,74,00,2e,0.. 阅读全文
posted @ 2013-09-24 19:32 cnsealine 阅读(438) 评论(0) 推荐(0) 编辑
摘要: $a = 1..100脚本双击直接运行:ftype Microsoft.PowerShellScript.1="C:\WINDOWS\system32\windowspowershell\v1.0\powershell.exe" -command "& {%1}"assoc .ps1=Microsoft.PowerShellScript.1更改脚本执行策略:set-executionpolicy remotesignedWrite-Host "Success" 输出,可以通过vbs调用powerShell脚本隐藏窗口在命令提示 阅读全文
posted @ 2013-09-24 04:46 cnsealine 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 在 Windows PowerShell 中,瀏覽磁碟機以及操控這些磁碟機上的項目,就跟使用檔案總管操控 Windows 實體磁碟機上的檔案和資料夾是類似的行為,只是一個要透過腳本,一個則是透過滑鼠。 使用 Get-ChildItem 可取得資料夾目前所在之當層目錄中所有的項目,亦即該資料夾內所有的檔案和子資料夾。加上選擇性 Force 參數則可顯示檔案屬性是隱藏或系統的項目。若要顯示更內層所包含的項目,必須一併指定 Recurse 參數。例如,下面的命令會顯示 Windows PowerShell 磁碟機 C(等同於 Windows 實體磁碟機 C)根目錄的內容:Get-ChildItem 阅读全文
posted @ 2013-09-24 03:46 cnsealine 阅读(411) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页