代码搜索:GetObject
找到约 680 项符合「GetObject」的源代码
代码结果 680
www.eeworm.com/read/104928/15681372
vbs osrecover.vbs
'osrecover.vbs
Dim objServices
Dim objWMIObject, objWMIObjects
'create an instance of a Services object for the local machine
Set objServices = _
GetObject("winmgmts:{impersonationLevel=imp
www.eeworm.com/read/104928/15681374
vbs sol10-5.vbs
Const WMICConst = "winmgmts:{impersonationLevel=impersonate}!"
Dim objWMINetConfig, nResult
'get the instance for the first adapater
Set objWMINetConfig = _
GetObject(WMICConst & "Win32_N
www.eeworm.com/read/104928/15681381
vbs page304.vbs
Dim objService, objWMIObject, nResult
'get a reference to a WMI service
Set objService = GetObject("winmgmts:{impersonationLevel=impersonate}")
'get a reference to the directory D:\Data\Reports
www.eeworm.com/read/104928/15681390
vbs svcstatus.vbs
'svcstatus.vbs
'Description:monitors changes in service status
Option Explicit
Dim objService, objEvent, objEvents
Set objService = GetObject("winmgmts:{impersonationLevel=impersonate}")
www.eeworm.com/read/104928/15681397
vbs sol10-16.vbs
'connect to Services object for local computer
Set objServices = GetObject("winmgmts:{impersonationLevel=impersonate,(Security)}")
'execute a event notification query to generate events when a new
www.eeworm.com/read/361033/10068147
vbs clean_event_logs.vbs
'Clean all the Event Log in the Event Viewer
strComputer = "."
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colLogFiles = objWMI
www.eeworm.com/read/277826/4150001
cs iobjectreference.cs
using System;
namespace NetBpm.Workflow.Log
{
public interface IObjectReference : ILogDetail
{
Int64 ReferenceId { get; }
String ClassName { get; }
Object GetObject();
}
}
www.eeworm.com/read/447272/1706667
cs iobjectreference.cs
using System;
namespace NetBpm.Workflow.Log
{
public interface IObjectReference : ILogDetail
{
Int64 ReferenceId { get; }
String ClassName { get; }
Object GetObject();
}
}
www.eeworm.com/read/104928/15681367
vbs page307.vbs
Dim objService, objWMIFiles, nResult, objFile
'get a reference to a WMI service
Set objService = GetObject("winmgmts:{impersonationLevel=impersonate}")
'get all files with .tmp extenstion on th
www.eeworm.com/read/104928/15681370
vbs sol10-1.vbs
Dim objService, objWMIObject, objWMIObjects
'create an instance of a Services object for namespace root\cimv2
Set objServices = _
GetObject("winmgmts:{impersonationLevel=impersonate}!root\cim