ComObjGet() [AHK_L 53+]
优质
小牛编辑
129浏览
2023-12-01
返回由 COM 组件提供的对象引用。
ComObject := ComObjGet(Name)
参数
- Name
需要获取的对象的显示名称. 请参阅 MkParseDisplayName (MSDN) 了解更多信息.
相关
ComObjCreate, ComObjActive, ComObjConnect, ComObjError, ComObjQuery, CoGetObject (MSDN)示例
; 示例: 使用 Shift+Escape 来显示活动窗口 ; 进程的命令行. 需要 XP 或更高版本. +Esc:: WinGet pid, PID, A ; 获取 WMI 服务对象. wmi := ComObjGet("winmgmts:") ; 执行查询以获取匹配进程. queryEnum := wmi.ExecQuery("" . "Select * from Win32_Process where ProcessId=" . pid) ._NewEnum() ; 获取首个匹配进程. if queryEnum[process] MsgBox 0, Command line, % process.CommandLine else MsgBox Process not found! ; 释放所有全局对象 (使用局部变量时不需要这么做). wmi := queryEnum := process := "" return ; Win32_Process: http://msdn.microsoft.com/en-us/library/aa394372.aspx