VBA WMI Win32_NetworkAdapterConfiguration のプロパティ名を一覧出力するサンプル

Excel【VBA】

WMIを使うとネットワーク情報が取得できるサンプルをよく見かけるが、WMIについてあまりわかっていないため、まずは有名そうな「Win32_NetworkAdapterConfiguration 」のプロパティ名の一覧を出力するサンプルコードを作成した。あとこのコードを元にマニュアルやChatGPTを使って自分なりの調査結果も補足

サンプルコード

このコードを実行すると、Excelシートに「Win32_NetworkAdapterConfiguration 」のプロパティ名の一覧が出力される。

参照設定について

参照設定については、「Microsoft WMI Scripting V1.2 Library」を使うことになるが、過去の多くのサンプルは、参照設定なしのobject型を利用しているようにみえる。そのためここでは条件付きコンパイルを使って、どちらにも対応させている。

「Microsoft WMI Scripting V1.2 Library」を

 参照させた場合は「#Const REFERENCE_SETTINGS_WMI = Ture 」とする。

 参照させない場合は、「#Const REFERENCE_SETTINGS_WMI = False 」とする。

参考にさせてもらったサイト:VBAでWMIの使い方について|VBA技術解説 (excel-ubara.com) 

winmgmts:{impersonationLevel=impersonate}!\.\root\cimv2 とは何か

 winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2 は、WMI(Windows Management Instrumentation)の名前空間の一つで、Windowsオペレーティングシステム内の多くの情報を提供するための標準的な方法の1つです。

この名前空間は、WMIによって管理されるWindowsコンピューターの多くの情報にアクセスするために使用されます。たとえば、システムの情報、ネットワーク設定、ハードウェアの情報、プロセスの情報、サービスの情報、セキュリティ設定など、多くの情報が提供されます。プログラマーはWMIを使用してWindowsコンピューター上で実行されているプロセス、サービス、ネットワークアダプタ、ハードウェアデバイスなどの情報を取得することができます。

winmgmts とは

winmgmtsは、Windows Management Instrumentation (WMI) の開発に使用されるCOM (Component Object Model) インターフェースです。WMIは、Windowsオペレーティングシステムに統合されたシステム管理フレームワークで、コンピュータやネットワーク上のリソースに対して管理、監視、設定などを行うことができます。winmgmtsを使用することで、WMIサービスへのアクセスが可能になります。WMIサービスは、Windowsオペレーティングシステム上で実行されるため、ローカルマシンのWMIサービスにアクセスすることも、ネットワーク上のリモートマシンのWMIサービスにアクセスすることも可能です。

impersonationLevel=impersonate とは

impersonationLevel=impersonateは、WMI (Windows Management Instrumentation) のクエリや操作を実行する際に使用されるセキュリティコンテキストの設定の一つです。

WMIには、通常、ローカルまたはリモートコンピュータ上のセキュリティ識別子で認証されたユーザーアカウントの権限で実行されます。しかし、WMIは、ユーザーが別のセキュリティ識別子で操作を実行することを許可するため、Impersonation(偽装)を提供しています。

impersonationLevel=impersonateは、WMIクエリや操作を実行する際に、WMIサービスが呼び出されたユーザーの権限ではなく、WMIサービスが指定したセキュリティ識別子の権限で実行されるようにします。この設定は、WMIが実行される環境によって異なりますが、一般的には、管理者権限を持つユーザーアカウントでの実行に必要とされる場合があります。

具体的には、impersonationLevel=impersonateを使用することで、WMI操作を実行する際に、WMIサービスが指定したセキュリティ識別子(例:管理者アカウント)の権限で実行され、WMI操作を実行するユーザーアカウントの権限に関係なく、リソースにアクセスできるようになります。

\root\cimv2とは

 \root\cimv2は、WMI (Windows Management Instrumentation) で使用される名前空間の一つで、Windowsオペレーティングシステム上の様々な情報や機能にアクセスするためのWMIオブジェクトを含んでいます。

 WMIは、Windowsオペレーティングシステム上のリソースにアクセスするためのフレームワークであり、様々な情報や設定を取得、監視、制御することができます。例えば、システム情報、プロセス情報、デバイス情報、イベントログ、サービス制御などが挙げられます。

 \root\cimv2名前空間は、Windowsオペレーティングシステム上のシステム情報や設定情報にアクセスするための主要なWMI名前空間の一つで、様々なWMIオブジェクトが含まれています。この名前空間には、Win32_Process、Win32_Service、Win32_LogicalDisk、Win32_NetworkAdapterなどのWMIオブジェクトが含まれており、これらのオブジェクトを使用して、Windowsオペレーティングシステム上のリソースにアクセスすることができます。

ExecQueryとは

ExecQueryは、WMI (Windows Management Instrumentation) のメソッドの一つで、WMIクエリを実行し、指定された条件に一致するWMIオブジェクトのコレクションを返すために使用されます。

WMIは、Windowsオペレーティングシステム上の情報や設定にアクセスするためのフレームワークであり、様々な情報や設定を取得、監視、制御することができます。例えば、システム情報、プロセス情報、デバイス情報、イベントログ、サービス制御などが挙げられます。

ExecQueryメソッドを使用すると、WMIクエリを使用して、WMIサービスが提供する各種情報を検索できます。WMIクエリは、SQLに似た言語で記述され、クエリ文字列を指定することで、条件に一致するWMIオブジェクトのコレクションを返します。WMIクエリは、SELECT、FROM、WHERE、ORDER BYなどのキーワードを使用して構成され、WMIサービスが提供する各種情報に応じて、クエリ文字列を作成する必要があります。

例えば、以下のようなクエリ文字列を使用して、Win32_Processクラスのプロセス名とプロセスIDを取得することができます。

“SELECT Name, ProcessId FROM Win32_Process”

ExecQueryメソッドは、WMIサービスによって提供される各種情報にアクセスするために非常に重要なメソッドの一つであり、WMIスクリプトやWMIクライアントアプリケーションの開発に欠かせない機能です。

SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = True の意味は

 このクエリ文字列は、WMIサービスが提供するWin32_NetworkAdapterConfigurationクラスから情報を取得するために使用されます。このクラスには、Windowsオペレーティングシステムで使用されているネットワークアダプターの構成情報が含まれています。

このクエリ文字列では、IPEnabledプロパティがTrueに設定されているネットワークアダプターの情報を取得するために、WHERE句でIPEnabledプロパティがTrueであることを指定しています。IPEnabledプロパティがTrueに設定されている場合、そのネットワークアダプターはTCP/IPプロトコルを使用して通信できることを示します。

また、SELECT句で全てのプロパティを取得するために、”*”を指定しています。つまり、このクエリ文字列によって取得される情報には、IPアドレス、サブネットマスク、デフォルトゲートウェイ、DNSサーバーなどのネットワークアダプターの構成情報が含まれます。

SWbemServicesEx とは

SWbemServicesExは、WMI(Windows Management Instrumentation)サービスにアクセスするために使用されるオブジェクトです。SWbemServicesExオブジェクトは、SWbemLocatorオブジェクトを使用して取得されます。

SWbemServicesExオブジェクトには、WMIリソースへのアクセスに必要なメソッドとプロパティが含まれています。たとえば、WMIクラスからインスタンスを取得するためのExecQueryメソッドや、新しいWMIクラスを作成するためのPutメソッドがあります。また、SWbemServicesExオブジェクトには、WMIオブジェクトのセキュリティ設定を制御するためのImpersonationLevelプロパティや、接続するWMI名前空間を指定するためのNamespaceプロパティなどもあります。

SWbemServicesExオブジェクトは、WMIスクリプトやVBScriptなどのスクリプト言語から使用することができます。また、Visual BasicやVisual Basic .NETなどのプログラミング言語からも使用することができます。

SWbemObjectSet とは

SWbemObjectSetは、WMI(Windows Management Instrumentation)クラスのインスタンスのセットを表すオブジェクトです。SWbemObjectSetオブジェクトは、SWbemServicesExオブジェクトを使用して取得されます。

SWbemObjectSetオブジェクトには、WMIクラスのインスタンスを列挙するためのメソッドや、SWbemObjectExオブジェクトを取得するためのItemメソッドが含まれています。また、SWbemObjectSetオブジェクトには、WMIクラスのインスタンス数を取得するCountプロパティや、WMIクラスのインスタンスを配列に変換するToArrayメソッドなどもあります。

SWbemObjectSetオブジェクトは、WMIスクリプトやVBScriptなどのスクリプト言語から使用することができます。また、Visual BasicやVisual Basic .NETなどのプログラミング言語からも使用することができます。SWbemObjectSetオブジェクトは、WMIクラスのインスタンスのセットを表すため、ExecQueryメソッドやAssociatorsOfメソッド、ReferencesToメソッドなどで取得されます。

ExecQuery の iFlags 引数

他サンプルコードを見ると48と指定しているものを見かける。その意味は以下のようだ。

・wbemFlagReturnImmediately = &H10 => 10進数で16

・wbemFlagForwardOnly = &H20  => 10進数で36

10進数側を足すと、、16+32 = 48

そのため、このソースコードは、wbemFlagReturnImmediately と wbemFlagForwardOnly を定義し、足しこむようにしている。

参考:SELECT文について -objWMIService.ExecQuery(- | OKWAVE

サンプル実行結果

サンプルを実行すると、こんな結果がExcelシートに出力される。

IndexProperty
1ArpAlwaysSourceRoute
2ArpUseEtherSNAP
3Caption
4DatabasePath
5DeadGWDetectEnabled
6DefaultIPGateway
7DefaultTOS
8DefaultTTL
9Description
10DHCPEnabled
11DHCPLeaseExpires
12DHCPLeaseObtained
13DHCPServer
14DNSDomain
15DNSDomainSuffixSearchOrder
16DNSEnabledForWINSResolution
17DNSHostName
18DNSServerSearchOrder
19DomainDNSRegistrationEnabled
20ForwardBufferMemory
21FullDNSRegistrationEnabled
22GatewayCostMetric
23IGMPLevel
24Index
25InterfaceIndex
26IPAddress
27IPConnectionMetric
28IPEnabled
29IPFilterSecurityEnabled
30IPPortSecurityEnabled
31IPSecPermitIPProtocols
32IPSecPermitTCPPorts
33IPSecPermitUDPPorts
34IPSubnet
35IPUseZeroBroadcast
36IPXAddress
37IPXEnabled
38IPXFrameType
39IPXMediaType
40IPXNetworkNumber
41IPXVirtualNetNumber
42KeepAliveInterval
43KeepAliveTime
44MACAddress
45MTU
46NumForwardPackets
47PMTUBHDetectEnabled
48PMTUDiscoveryEnabled
49ServiceName
50SettingID
51TcpipNetbiosOptions
52TcpMaxConnectRetransmissions
53TcpMaxDataRetransmissions
54TcpNumConnections
55TcpUseRFC1122UrgentPointer
56TcpWindowSize
57WINSEnableLMHostsLookup
58WINSHostLookupFile
59WINSPrimaryServer
60WINSScopeID
61WINSSecondaryServer
62ArpAlwaysSourceRoute
63ArpUseEtherSNAP
64Caption
65DatabasePath
66DeadGWDetectEnabled
67DefaultIPGateway
68DefaultTOS
69DefaultTTL
70Description
71DHCPEnabled
72DHCPLeaseExpires
73DHCPLeaseObtained
74DHCPServer
75DNSDomain
76DNSDomainSuffixSearchOrder
77DNSEnabledForWINSResolution
78DNSHostName
79DNSServerSearchOrder
80DomainDNSRegistrationEnabled
81ForwardBufferMemory
82FullDNSRegistrationEnabled
83GatewayCostMetric
84IGMPLevel
85Index
86InterfaceIndex
87IPAddress
88IPConnectionMetric
89IPEnabled
90IPFilterSecurityEnabled
91IPPortSecurityEnabled
92IPSecPermitIPProtocols
93IPSecPermitTCPPorts
94IPSecPermitUDPPorts
95IPSubnet
96IPUseZeroBroadcast
97IPXAddress
98IPXEnabled
99IPXFrameType
100IPXMediaType
101IPXNetworkNumber
102IPXVirtualNetNumber
103KeepAliveInterval
104KeepAliveTime
105MACAddress
106MTU
107NumForwardPackets
108PMTUBHDetectEnabled
109PMTUDiscoveryEnabled
110ServiceName
111SettingID
112TcpipNetbiosOptions
113TcpMaxConnectRetransmissions
114TcpMaxDataRetransmissions
115TcpNumConnections
116TcpUseRFC1122UrgentPointer
117TcpWindowSize
118WINSEnableLMHostsLookup
119WINSHostLookupFile
120WINSPrimaryServer
121WINSScopeID
122WINSSecondaryServer
123ArpAlwaysSourceRoute
124ArpUseEtherSNAP
125Caption
126DatabasePath
127DeadGWDetectEnabled
128DefaultIPGateway
129DefaultTOS
130DefaultTTL
131Description
132DHCPEnabled
133DHCPLeaseExpires
134DHCPLeaseObtained
135DHCPServer
136DNSDomain
137DNSDomainSuffixSearchOrder
138DNSEnabledForWINSResolution
139DNSHostName
140DNSServerSearchOrder
141DomainDNSRegistrationEnabled
142ForwardBufferMemory
143FullDNSRegistrationEnabled
144GatewayCostMetric
145IGMPLevel
146Index
147InterfaceIndex
148IPAddress
149IPConnectionMetric
150IPEnabled
151IPFilterSecurityEnabled
152IPPortSecurityEnabled
153IPSecPermitIPProtocols
154IPSecPermitTCPPorts
155IPSecPermitUDPPorts
156IPSubnet
157IPUseZeroBroadcast
158IPXAddress
159IPXEnabled
160IPXFrameType
161IPXMediaType
162IPXNetworkNumber
163IPXVirtualNetNumber
164KeepAliveInterval
165KeepAliveTime
166MACAddress
167MTU
168NumForwardPackets
169PMTUBHDetectEnabled
170PMTUDiscoveryEnabled
171ServiceName
172SettingID
173TcpipNetbiosOptions
174TcpMaxConnectRetransmissions
175TcpMaxDataRetransmissions
176TcpNumConnections
177TcpUseRFC1122UrgentPointer
178TcpWindowSize
179WINSEnableLMHostsLookup
180WINSHostLookupFile
181WINSPrimaryServer
182WINSScopeID
183WINSSecondaryServer
184ArpAlwaysSourceRoute
185ArpUseEtherSNAP
186Caption
187DatabasePath
188DeadGWDetectEnabled
189DefaultIPGateway
190DefaultTOS
191DefaultTTL
192Description
193DHCPEnabled
194DHCPLeaseExpires
195DHCPLeaseObtained
196DHCPServer
197DNSDomain
198DNSDomainSuffixSearchOrder
199DNSEnabledForWINSResolution
200DNSHostName
201DNSServerSearchOrder
202DomainDNSRegistrationEnabled
203ForwardBufferMemory
204FullDNSRegistrationEnabled
205GatewayCostMetric
206IGMPLevel
207Index
208InterfaceIndex
209IPAddress
210IPConnectionMetric
211IPEnabled
212IPFilterSecurityEnabled
213IPPortSecurityEnabled
214IPSecPermitIPProtocols
215IPSecPermitTCPPorts
216IPSecPermitUDPPorts
217IPSubnet
218IPUseZeroBroadcast
219IPXAddress
220IPXEnabled
221IPXFrameType
222IPXMediaType
223IPXNetworkNumber
224IPXVirtualNetNumber
225KeepAliveInterval
226KeepAliveTime
227MACAddress
228MTU
229NumForwardPackets
230PMTUBHDetectEnabled
231PMTUDiscoveryEnabled
232ServiceName
233SettingID
234TcpipNetbiosOptions
235TcpMaxConnectRetransmissions
236TcpMaxDataRetransmissions
237TcpNumConnections
238TcpUseRFC1122UrgentPointer
239TcpWindowSize
240WINSEnableLMHostsLookup
241WINSHostLookupFile
242WINSPrimaryServer
243WINSScopeID
244WINSSecondaryServer
245ArpAlwaysSourceRoute
246ArpUseEtherSNAP
247Caption
248DatabasePath
249DeadGWDetectEnabled
250DefaultIPGateway
251DefaultTOS
252DefaultTTL
253Description
254DHCPEnabled
255DHCPLeaseExpires
256DHCPLeaseObtained
257DHCPServer
258DNSDomain
259DNSDomainSuffixSearchOrder
260DNSEnabledForWINSResolution
261DNSHostName
262DNSServerSearchOrder
263DomainDNSRegistrationEnabled
264ForwardBufferMemory
265FullDNSRegistrationEnabled
266GatewayCostMetric
267IGMPLevel
268Index
269InterfaceIndex
270IPAddress
271IPConnectionMetric
272IPEnabled
273IPFilterSecurityEnabled
274IPPortSecurityEnabled
275IPSecPermitIPProtocols
276IPSecPermitTCPPorts
277IPSecPermitUDPPorts
278IPSubnet
279IPUseZeroBroadcast
280IPXAddress
281IPXEnabled
282IPXFrameType
283IPXMediaType
284IPXNetworkNumber
285IPXVirtualNetNumber
286KeepAliveInterval
287KeepAliveTime
288MACAddress
289MTU
290NumForwardPackets
291PMTUBHDetectEnabled
292PMTUDiscoveryEnabled
293ServiceName
294SettingID
295TcpipNetbiosOptions
296TcpMaxConnectRetransmissions
297TcpMaxDataRetransmissions
298TcpNumConnections
299TcpUseRFC1122UrgentPointer
300TcpWindowSize
301WINSEnableLMHostsLookup
302WINSHostLookupFile
303WINSPrimaryServer
304WINSScopeID
305WINSSecondaryServer
306ArpAlwaysSourceRoute
307ArpUseEtherSNAP
308Caption
309DatabasePath
310DeadGWDetectEnabled
311DefaultIPGateway
312DefaultTOS
313DefaultTTL
314Description
315DHCPEnabled
316DHCPLeaseExpires
317DHCPLeaseObtained
318DHCPServer
319DNSDomain
320DNSDomainSuffixSearchOrder
321DNSEnabledForWINSResolution
322DNSHostName
323DNSServerSearchOrder
324DomainDNSRegistrationEnabled
325ForwardBufferMemory
326FullDNSRegistrationEnabled
327GatewayCostMetric
328IGMPLevel
329Index
330InterfaceIndex
331IPAddress
332IPConnectionMetric
333IPEnabled
334IPFilterSecurityEnabled
335IPPortSecurityEnabled
336IPSecPermitIPProtocols
337IPSecPermitTCPPorts
338IPSecPermitUDPPorts
339IPSubnet
340IPUseZeroBroadcast
341IPXAddress
342IPXEnabled
343IPXFrameType
344IPXMediaType
345IPXNetworkNumber
346IPXVirtualNetNumber
347KeepAliveInterval
348KeepAliveTime
349MACAddress
350MTU
351NumForwardPackets
352PMTUBHDetectEnabled
353PMTUDiscoveryEnabled
354ServiceName
355SettingID
356TcpipNetbiosOptions
357TcpMaxConnectRetransmissions
358TcpMaxDataRetransmissions
359TcpNumConnections
360TcpUseRFC1122UrgentPointer
361TcpWindowSize
362WINSEnableLMHostsLookup
363WINSHostLookupFile
364WINSPrimaryServer
365WINSScopeID
366WINSSecondaryServer
367ArpAlwaysSourceRoute
368ArpUseEtherSNAP
369Caption
370DatabasePath
371DeadGWDetectEnabled
372DefaultIPGateway
373DefaultTOS
374DefaultTTL
375Description
376DHCPEnabled
377DHCPLeaseExpires
378DHCPLeaseObtained
379DHCPServer
380DNSDomain
381DNSDomainSuffixSearchOrder
382DNSEnabledForWINSResolution
383DNSHostName
384DNSServerSearchOrder
385DomainDNSRegistrationEnabled
386ForwardBufferMemory
387FullDNSRegistrationEnabled
388GatewayCostMetric
389IGMPLevel
390Index
391InterfaceIndex
392IPAddress
393IPConnectionMetric
394IPEnabled
395IPFilterSecurityEnabled
396IPPortSecurityEnabled
397IPSecPermitIPProtocols
398IPSecPermitTCPPorts
399IPSecPermitUDPPorts
400IPSubnet
401IPUseZeroBroadcast
402IPXAddress
403IPXEnabled
404IPXFrameType
405IPXMediaType
406IPXNetworkNumber
407IPXVirtualNetNumber
408KeepAliveInterval
409KeepAliveTime
410MACAddress
411MTU
412NumForwardPackets
413PMTUBHDetectEnabled
414PMTUDiscoveryEnabled
415ServiceName
416SettingID
417TcpipNetbiosOptions
418TcpMaxConnectRetransmissions
419TcpMaxDataRetransmissions
420TcpNumConnections
421TcpUseRFC1122UrgentPointer
422TcpWindowSize
423WINSEnableLMHostsLookup
424WINSHostLookupFile
425WINSPrimaryServer
426WINSScopeID
427WINSSecondaryServer
428ArpAlwaysSourceRoute
429ArpUseEtherSNAP
430Caption
431DatabasePath
432DeadGWDetectEnabled
433DefaultIPGateway
434DefaultTOS
435DefaultTTL
436Description
437DHCPEnabled
438DHCPLeaseExpires
439DHCPLeaseObtained
440DHCPServer
441DNSDomain
442DNSDomainSuffixSearchOrder
443DNSEnabledForWINSResolution
444DNSHostName
445DNSServerSearchOrder
446DomainDNSRegistrationEnabled
447ForwardBufferMemory
448FullDNSRegistrationEnabled
449GatewayCostMetric
450IGMPLevel
451Index
452InterfaceIndex
453IPAddress
454IPConnectionMetric
455IPEnabled
456IPFilterSecurityEnabled
457IPPortSecurityEnabled
458IPSecPermitIPProtocols
459IPSecPermitTCPPorts
460IPSecPermitUDPPorts
461IPSubnet
462IPUseZeroBroadcast
463IPXAddress
464IPXEnabled
465IPXFrameType
466IPXMediaType
467IPXNetworkNumber
468IPXVirtualNetNumber
469KeepAliveInterval
470KeepAliveTime
471MACAddress
472MTU
473NumForwardPackets
474PMTUBHDetectEnabled
475PMTUDiscoveryEnabled
476ServiceName
477SettingID
478TcpipNetbiosOptions
479TcpMaxConnectRetransmissions
480TcpMaxDataRetransmissions
481TcpNumConnections
482TcpUseRFC1122UrgentPointer
483TcpWindowSize
484WINSEnableLMHostsLookup
485WINSHostLookupFile
486WINSPrimaryServer
487WINSScopeID
488WINSSecondaryServer
489ArpAlwaysSourceRoute
490ArpUseEtherSNAP
491Caption
492DatabasePath
493DeadGWDetectEnabled
494DefaultIPGateway
495DefaultTOS
496DefaultTTL
497Description
498DHCPEnabled
499DHCPLeaseExpires
500DHCPLeaseObtained
501DHCPServer
502DNSDomain
503DNSDomainSuffixSearchOrder
504DNSEnabledForWINSResolution
505DNSHostName
506DNSServerSearchOrder
507DomainDNSRegistrationEnabled
508ForwardBufferMemory
509FullDNSRegistrationEnabled
510GatewayCostMetric
511IGMPLevel
512Index
513InterfaceIndex
514IPAddress
515IPConnectionMetric
516IPEnabled
517IPFilterSecurityEnabled
518IPPortSecurityEnabled
519IPSecPermitIPProtocols
520IPSecPermitTCPPorts
521IPSecPermitUDPPorts
522IPSubnet
523IPUseZeroBroadcast
524IPXAddress
525IPXEnabled
526IPXFrameType
527IPXMediaType
528IPXNetworkNumber
529IPXVirtualNetNumber
530KeepAliveInterval
531KeepAliveTime
532MACAddress
533MTU
534NumForwardPackets
535PMTUBHDetectEnabled
536PMTUDiscoveryEnabled
537ServiceName
538SettingID
539TcpipNetbiosOptions
540TcpMaxConnectRetransmissions
541TcpMaxDataRetransmissions
542TcpNumConnections
543TcpUseRFC1122UrgentPointer
544TcpWindowSize
545WINSEnableLMHostsLookup
546WINSHostLookupFile
547WINSPrimaryServer
548WINSScopeID
549WINSSecondaryServer
550ArpAlwaysSourceRoute
551ArpUseEtherSNAP
552Caption
553DatabasePath
554DeadGWDetectEnabled
555DefaultIPGateway
556DefaultTOS
557DefaultTTL
558Description
559DHCPEnabled
560DHCPLeaseExpires
561DHCPLeaseObtained
562DHCPServer
563DNSDomain
564DNSDomainSuffixSearchOrder
565DNSEnabledForWINSResolution
566DNSHostName
567DNSServerSearchOrder
568DomainDNSRegistrationEnabled
569ForwardBufferMemory
570FullDNSRegistrationEnabled
571GatewayCostMetric
572IGMPLevel
573Index
574InterfaceIndex
575IPAddress
576IPConnectionMetric
577IPEnabled
578IPFilterSecurityEnabled
579IPPortSecurityEnabled
580IPSecPermitIPProtocols
581IPSecPermitTCPPorts
582IPSecPermitUDPPorts
583IPSubnet
584IPUseZeroBroadcast
585IPXAddress
586IPXEnabled
587IPXFrameType
588IPXMediaType
589IPXNetworkNumber
590IPXVirtualNetNumber
591KeepAliveInterval
592KeepAliveTime
593MACAddress
594MTU
595NumForwardPackets
596PMTUBHDetectEnabled
597PMTUDiscoveryEnabled
598ServiceName
599SettingID
600TcpipNetbiosOptions
601TcpMaxConnectRetransmissions
602TcpMaxDataRetransmissions
603TcpNumConnections
604TcpUseRFC1122UrgentPointer
605TcpWindowSize
606WINSEnableLMHostsLookup
607WINSHostLookupFile
608WINSPrimaryServer
609WINSScopeID
610WINSSecondaryServer
611ArpAlwaysSourceRoute
612ArpUseEtherSNAP
613Caption
614DatabasePath
615DeadGWDetectEnabled
616DefaultIPGateway
617DefaultTOS
618DefaultTTL
619Description
620DHCPEnabled
621DHCPLeaseExpires
622DHCPLeaseObtained
623DHCPServer
624DNSDomain
625DNSDomainSuffixSearchOrder
626DNSEnabledForWINSResolution
627DNSHostName
628DNSServerSearchOrder
629DomainDNSRegistrationEnabled
630ForwardBufferMemory
631FullDNSRegistrationEnabled
632GatewayCostMetric
633IGMPLevel
634Index
635InterfaceIndex
636IPAddress
637IPConnectionMetric
638IPEnabled
639IPFilterSecurityEnabled
640IPPortSecurityEnabled
641IPSecPermitIPProtocols
642IPSecPermitTCPPorts
643IPSecPermitUDPPorts
644IPSubnet
645IPUseZeroBroadcast
646IPXAddress
647IPXEnabled
648IPXFrameType
649IPXMediaType
650IPXNetworkNumber
651IPXVirtualNetNumber
652KeepAliveInterval
653KeepAliveTime
654MACAddress
655MTU
656NumForwardPackets
657PMTUBHDetectEnabled
658PMTUDiscoveryEnabled
659ServiceName
660SettingID
661TcpipNetbiosOptions
662TcpMaxConnectRetransmissions
663TcpMaxDataRetransmissions
664TcpNumConnections
665TcpUseRFC1122UrgentPointer
666TcpWindowSize
667WINSEnableLMHostsLookup
668WINSHostLookupFile
669WINSPrimaryServer
670WINSScopeID
671WINSSecondaryServer
672ArpAlwaysSourceRoute
673ArpUseEtherSNAP
674Caption
675DatabasePath
676DeadGWDetectEnabled
677DefaultIPGateway
678DefaultTOS
679DefaultTTL
680Description
681DHCPEnabled
682DHCPLeaseExpires
683DHCPLeaseObtained
684DHCPServer
685DNSDomain
686DNSDomainSuffixSearchOrder
687DNSEnabledForWINSResolution
688DNSHostName
689DNSServerSearchOrder
690DomainDNSRegistrationEnabled
691ForwardBufferMemory
692FullDNSRegistrationEnabled
693GatewayCostMetric
694IGMPLevel
695Index
696InterfaceIndex
697IPAddress
698IPConnectionMetric
699IPEnabled
700IPFilterSecurityEnabled
701IPPortSecurityEnabled
702IPSecPermitIPProtocols
703IPSecPermitTCPPorts
704IPSecPermitUDPPorts
705IPSubnet
706IPUseZeroBroadcast
707IPXAddress
708IPXEnabled
709IPXFrameType
710IPXMediaType
711IPXNetworkNumber
712IPXVirtualNetNumber
713KeepAliveInterval
714KeepAliveTime
715MACAddress
716MTU
717NumForwardPackets
718PMTUBHDetectEnabled
719PMTUDiscoveryEnabled
720ServiceName
721SettingID
722TcpipNetbiosOptions
723TcpMaxConnectRetransmissions
724TcpMaxDataRetransmissions
725TcpNumConnections
726TcpUseRFC1122UrgentPointer
727TcpWindowSize
728WINSEnableLMHostsLookup
729WINSHostLookupFile
730WINSPrimaryServer
731WINSScopeID
732WINSSecondaryServer
733ArpAlwaysSourceRoute
734ArpUseEtherSNAP
735Caption
736DatabasePath
737DeadGWDetectEnabled
738DefaultIPGateway
739DefaultTOS
740DefaultTTL
741Description
742DHCPEnabled
743DHCPLeaseExpires
744DHCPLeaseObtained
745DHCPServer
746DNSDomain
747DNSDomainSuffixSearchOrder
748DNSEnabledForWINSResolution
749DNSHostName
750DNSServerSearchOrder
751DomainDNSRegistrationEnabled
752ForwardBufferMemory
753FullDNSRegistrationEnabled
754GatewayCostMetric
755IGMPLevel
756Index
757InterfaceIndex
758IPAddress
759IPConnectionMetric
760IPEnabled
761IPFilterSecurityEnabled
762IPPortSecurityEnabled
763IPSecPermitIPProtocols
764IPSecPermitTCPPorts
765IPSecPermitUDPPorts
766IPSubnet
767IPUseZeroBroadcast
768IPXAddress
769IPXEnabled
770IPXFrameType
771IPXMediaType
772IPXNetworkNumber
773IPXVirtualNetNumber
774KeepAliveInterval
775KeepAliveTime
776MACAddress
777MTU
778NumForwardPackets
779PMTUBHDetectEnabled
780PMTUDiscoveryEnabled
781ServiceName
782SettingID
783TcpipNetbiosOptions
784TcpMaxConnectRetransmissions
785TcpMaxDataRetransmissions
786TcpNumConnections
787TcpUseRFC1122UrgentPointer
788TcpWindowSize
789WINSEnableLMHostsLookup
790WINSHostLookupFile
791WINSPrimaryServer
792WINSScopeID
793WINSSecondaryServer
794ArpAlwaysSourceRoute
795ArpUseEtherSNAP
796Caption
797DatabasePath
798DeadGWDetectEnabled
799DefaultIPGateway
800DefaultTOS
801DefaultTTL
802Description
803DHCPEnabled
804DHCPLeaseExpires
805DHCPLeaseObtained
806DHCPServer
807DNSDomain
808DNSDomainSuffixSearchOrder
809DNSEnabledForWINSResolution
810DNSHostName
811DNSServerSearchOrder
812DomainDNSRegistrationEnabled
813ForwardBufferMemory
814FullDNSRegistrationEnabled
815GatewayCostMetric
816IGMPLevel
817Index
818InterfaceIndex
819IPAddress
820IPConnectionMetric
821IPEnabled
822IPFilterSecurityEnabled
823IPPortSecurityEnabled
824IPSecPermitIPProtocols
825IPSecPermitTCPPorts
826IPSecPermitUDPPorts
827IPSubnet
828IPUseZeroBroadcast
829IPXAddress
830IPXEnabled
831IPXFrameType
832IPXMediaType
833IPXNetworkNumber
834IPXVirtualNetNumber
835KeepAliveInterval
836KeepAliveTime
837MACAddress
838MTU
839NumForwardPackets
840PMTUBHDetectEnabled
841PMTUDiscoveryEnabled
842ServiceName
843SettingID
844TcpipNetbiosOptions
845TcpMaxConnectRetransmissions
846TcpMaxDataRetransmissions
847TcpNumConnections
848TcpUseRFC1122UrgentPointer
849TcpWindowSize
850WINSEnableLMHostsLookup
851WINSHostLookupFile
852WINSPrimaryServer
853WINSScopeID
854WINSSecondaryServer
855ArpAlwaysSourceRoute
856ArpUseEtherSNAP
857Caption
858DatabasePath
859DeadGWDetectEnabled
860DefaultIPGateway
861DefaultTOS
862DefaultTTL
863Description
864DHCPEnabled
865DHCPLeaseExpires
866DHCPLeaseObtained
867DHCPServer
868DNSDomain
869DNSDomainSuffixSearchOrder
870DNSEnabledForWINSResolution
871DNSHostName
872DNSServerSearchOrder
873DomainDNSRegistrationEnabled
874ForwardBufferMemory
875FullDNSRegistrationEnabled
876GatewayCostMetric
877IGMPLevel
878Index
879InterfaceIndex
880IPAddress
881IPConnectionMetric
882IPEnabled
883IPFilterSecurityEnabled
884IPPortSecurityEnabled
885IPSecPermitIPProtocols
886IPSecPermitTCPPorts
887IPSecPermitUDPPorts
888IPSubnet
889IPUseZeroBroadcast
890IPXAddress
891IPXEnabled
892IPXFrameType
893IPXMediaType
894IPXNetworkNumber
895IPXVirtualNetNumber
896KeepAliveInterval
897KeepAliveTime
898MACAddress
899MTU
900NumForwardPackets
901PMTUBHDetectEnabled
902PMTUDiscoveryEnabled
903ServiceName
904SettingID
905TcpipNetbiosOptions
906TcpMaxConnectRetransmissions
907TcpMaxDataRetransmissions
908TcpNumConnections
909TcpUseRFC1122UrgentPointer
910TcpWindowSize
911WINSEnableLMHostsLookup
912WINSHostLookupFile
913WINSPrimaryServer
914WINSScopeID
915WINSSecondaryServer
916ArpAlwaysSourceRoute
917ArpUseEtherSNAP
918Caption
919DatabasePath
920DeadGWDetectEnabled
921DefaultIPGateway
922DefaultTOS
923DefaultTTL
924Description
925DHCPEnabled
926DHCPLeaseExpires
927DHCPLeaseObtained
928DHCPServer
929DNSDomain
930DNSDomainSuffixSearchOrder
931DNSEnabledForWINSResolution
932DNSHostName
933DNSServerSearchOrder
934DomainDNSRegistrationEnabled
935ForwardBufferMemory
936FullDNSRegistrationEnabled
937GatewayCostMetric
938IGMPLevel
939Index
940InterfaceIndex
941IPAddress
942IPConnectionMetric
943IPEnabled
944IPFilterSecurityEnabled
945IPPortSecurityEnabled
946IPSecPermitIPProtocols
947IPSecPermitTCPPorts
948IPSecPermitUDPPorts
949IPSubnet
950IPUseZeroBroadcast
951IPXAddress
952IPXEnabled
953IPXFrameType
954IPXMediaType
955IPXNetworkNumber
956IPXVirtualNetNumber
957KeepAliveInterval
958KeepAliveTime
959MACAddress
960MTU
961NumForwardPackets
962PMTUBHDetectEnabled
963PMTUDiscoveryEnabled
964ServiceName
965SettingID
966TcpipNetbiosOptions
967TcpMaxConnectRetransmissions
968TcpMaxDataRetransmissions
969TcpNumConnections
970TcpUseRFC1122UrgentPointer
971TcpWindowSize
972WINSEnableLMHostsLookup
973WINSHostLookupFile
974WINSPrimaryServer
975WINSScopeID
976WINSSecondaryServer

コメント

タイトルとURLをコピーしました