ManagementScope Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase ManagementScope.
Sobrecargas
| Nombre | Description |
|---|---|
| ManagementScope() |
Inicializa una nueva instancia de la ManagementScope clase , con valores predeterminados. Este es el constructor sin parámetros. |
| ManagementScope(ManagementPath) |
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada. |
| ManagementScope(String) |
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada. |
| ManagementScope(ManagementPath, ConnectionOptions) |
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada, con las opciones especificadas. |
| ManagementScope(String, ConnectionOptions) |
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada, con las opciones especificadas. |
ManagementScope()
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
Inicializa una nueva instancia de la ManagementScope clase , con valores predeterminados. Este es el constructor sin parámetros.
public:
ManagementScope();
public ManagementScope();
Public Sub New ()
Comentarios
Si el objeto no tiene ninguna propiedad establecida antes de la conexión, se inicializa con valores predeterminados (por ejemplo, la máquina local y el espacio de nombres root\cimv2).
Seguridad de .NET Framework
Plena confianza para el llamador inmediato. El código de confianza parcial no puede usar este miembro. Para obtener más información, consulte Uso de bibliotecas de código de confianza parcial.
Se aplica a
ManagementScope(ManagementPath)
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada.
public:
ManagementScope(System::Management::ManagementPath ^ path);
public ManagementScope(System.Management.ManagementPath path);
new System.Management.ManagementScope : System.Management.ManagementPath -> System.Management.ManagementScope
Public Sub New (path As ManagementPath)
Parámetros
- path
- ManagementPath
que ManagementPath contiene la ruta de acceso a un servidor y un espacio de nombres para .ManagementScope
Comentarios
Seguridad de .NET Framework
Plena confianza para el llamador inmediato. El código de confianza parcial no puede usar este miembro. Para obtener más información, consulte Uso de bibliotecas de código de confianza parcial.
Se aplica a
ManagementScope(String)
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada.
public:
ManagementScope(System::String ^ path);
public ManagementScope(string path);
new System.Management.ManagementScope : string -> System.Management.ManagementScope
Public Sub New (path As String)
Parámetros
- path
- String
Ruta de acceso de servidor y espacio de nombres para .ManagementScope
Ejemplos
En el ejemplo siguiente se inicializa un nuevo ManagementScope con una ruta de acceso específica y, a continuación, se conecta el objeto de ámbito a un espacio de nombres WMI. El ejemplo se conecta a un espacio de nombres en un equipo remoto.
using System;
using System.Management;
public class RemoteConnect
{
public static void Main()
{
/*// Build an options object for the remote connection
// if you plan to connect to the remote
// computer with a different user name
// and password than the one you are currently using
ConnectionOptions options =
new ConnectionOptions();
// and then set the options.Username and
// options.Password properties to the correct values
// and also set
// options.Authority = "ntlmdomain:DOMAIN";
// and replace DOMAIN with the remote computer's
// domain. You can also use Kerberos instead
// of ntlmdomain.
*/
// Make a connection to a remote computer.
// Replace the "FullComputerName" section of the
// string "\\\\FullComputerName\\root\\cimv2" with
// the full computer name or IP address of the
// remote computer.
ManagementScope scope =
new ManagementScope(
"\\\\FullComputerName\\root\\cimv2");
scope.Connect();
// Use this code if you are connecting with a
// different user name and password:
//
// ManagementScope scope =
// new ManagementScope(
// "\\\\FullComputerName\\root\\cimv2", options);
// scope.Connect();
//Query system for Operating System information
ObjectQuery query = new ObjectQuery(
"SELECT * FROM Win32_OperatingSystem");
ManagementObjectSearcher searcher =
new ManagementObjectSearcher(scope,query);
ManagementObjectCollection queryCollection = searcher.Get();
foreach ( ManagementObject m in queryCollection)
{
// Display the remote computer information
Console.WriteLine("Computer Name : {0}",
m["csname"]);
Console.WriteLine("Windows Directory : {0}",
m["WindowsDirectory"]);
Console.WriteLine("Operating System: {0}",
m["Caption"]);
Console.WriteLine("Version: {0}", m["Version"]);
Console.WriteLine("Manufacturer : {0}",
m["Manufacturer"]);
}
}
}
Imports System.Management
Public Class RemoteConnect
Public Overloads Shared Function Main( _
ByVal args() As String) As Integer
' Build an options object for the remote connection
' if you plan to connect to the remote
' computer with a different user name
' and password than the one you are currently using
' Dim options As ConnectionOptions
' options = new ConnectionOptions()
' Then set the options.Username and
' options.Password properties to the correct values
' and also set
' options.Authority = "ntlmdomain:DOMAIN"
' and replace DOMAIN with the remote computer's
' domain. You can also use Kerberos instead
' of ntlmdomain.
' Make a connection to a remote computer.
' Replace the "FullComputerName" section of the
' string "\\FullComputerName\root\cimv2" with
' the full computer name or IP address of the
' remote computer.
Dim scope As ManagementScope
scope = New ManagementScope( _
"\\FullComputerName\root\cimv2")
scope.Connect()
' Use this code if you are connecting with a
' different user name and password:
'
' Dim scope As ManagementScope
' scope = New ManagementScope( _
' "\\FullComputerName\root\cimv2", options)
' scope.Connect()
' Query system for Operating System information
Dim query As ObjectQuery
query = New ObjectQuery( _
"SELECT * FROM Win32_OperatingSystem")
Dim searcher As ManagementObjectSearcher
searcher = _
New ManagementObjectSearcher(scope, query)
Dim queryCollection As ManagementObjectCollection
queryCollection = searcher.Get()
Dim m As ManagementObject
For Each m In queryCollection
' Display the remote computer information
Console.WriteLine("Computer Name : {0}", _
m("csname"))
Console.WriteLine("Windows Directory : {0}", _
m("WindowsDirectory"))
Console.WriteLine("Operating System: {0}", _
m("Caption"))
Console.WriteLine("Version: {0}", m("Version"))
Console.WriteLine("Manufacturer : {0}", _
m("Manufacturer"))
Next
Return 0
End Function
End Class
Comentarios
Seguridad de .NET Framework
Plena confianza para el llamador inmediato. El código de confianza parcial no puede usar este miembro. Para obtener más información, consulte Uso de bibliotecas de código de confianza parcial.
Se aplica a
ManagementScope(ManagementPath, ConnectionOptions)
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada, con las opciones especificadas.
public:
ManagementScope(System::Management::ManagementPath ^ path, System::Management::ConnectionOptions ^ options);
public ManagementScope(System.Management.ManagementPath path, System.Management.ConnectionOptions options);
new System.Management.ManagementScope : System.Management.ManagementPath * System.Management.ConnectionOptions -> System.Management.ManagementScope
Public Sub New (path As ManagementPath, options As ConnectionOptions)
Parámetros
- path
- ManagementPath
que ManagementPath contiene la ruta de acceso al servidor y al espacio de nombres de .ManagementScope
- options
- ConnectionOptions
Opciones ConnectionOptions que contienen la conexión.
Comentarios
Seguridad de .NET Framework
Plena confianza para el llamador inmediato. El código de confianza parcial no puede usar este miembro. Para obtener más información, consulte Uso de bibliotecas de código de confianza parcial.
Se aplica a
ManagementScope(String, ConnectionOptions)
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
- Source:
- ManagementScope.cs
Inicializa una nueva instancia de la ManagementScope clase que representa la ruta de acceso de ámbito especificada, con las opciones especificadas.
public:
ManagementScope(System::String ^ path, System::Management::ConnectionOptions ^ options);
public ManagementScope(string path, System.Management.ConnectionOptions options);
new System.Management.ManagementScope : string * System.Management.ConnectionOptions -> System.Management.ManagementScope
Public Sub New (path As String, options As ConnectionOptions)
Parámetros
- path
- String
El servidor y el ManagementScopeespacio de nombres de .
- options
- ConnectionOptions
que ConnectionOptions contiene las opciones de la conexión.
Ejemplos
En el ejemplo siguiente se inicializa un nuevo ManagementScope con una ruta de acceso específica y, a continuación, se conecta el objeto de ámbito a un espacio de nombres WMI. El ejemplo se conecta a un espacio de nombres en un equipo remoto.
using System;
using System.Management;
public class RemoteConnect
{
public static void Main()
{
/*// Build an options object for the remote connection
// if you plan to connect to the remote
// computer with a different user name
// and password than the one you are currently using
ConnectionOptions options =
new ConnectionOptions();
// and then set the options.Username and
// options.Password properties to the correct values
// and also set
// options.Authority = "ntlmdomain:DOMAIN";
// and replace DOMAIN with the remote computer's
// domain. You can also use Kerberos instead
// of ntlmdomain.
*/
// Make a connection to a remote computer.
// Replace the "FullComputerName" section of the
// string "\\\\FullComputerName\\root\\cimv2" with
// the full computer name or IP address of the
// remote computer.
ManagementScope scope =
new ManagementScope(
"\\\\FullComputerName\\root\\cimv2");
scope.Connect();
// Use this code if you are connecting with a
// different user name and password:
//
// ManagementScope scope =
// new ManagementScope(
// "\\\\FullComputerName\\root\\cimv2", options);
// scope.Connect();
//Query system for Operating System information
ObjectQuery query = new ObjectQuery(
"SELECT * FROM Win32_OperatingSystem");
ManagementObjectSearcher searcher =
new ManagementObjectSearcher(scope,query);
ManagementObjectCollection queryCollection = searcher.Get();
foreach ( ManagementObject m in queryCollection)
{
// Display the remote computer information
Console.WriteLine("Computer Name : {0}",
m["csname"]);
Console.WriteLine("Windows Directory : {0}",
m["WindowsDirectory"]);
Console.WriteLine("Operating System: {0}",
m["Caption"]);
Console.WriteLine("Version: {0}", m["Version"]);
Console.WriteLine("Manufacturer : {0}",
m["Manufacturer"]);
}
}
}
Imports System.Management
Public Class RemoteConnect
Public Overloads Shared Function Main( _
ByVal args() As String) As Integer
' Build an options object for the remote connection
' if you plan to connect to the remote
' computer with a different user name
' and password than the one you are currently using
' Dim options As ConnectionOptions
' options = new ConnectionOptions()
' Then set the options.Username and
' options.Password properties to the correct values
' and also set
' options.Authority = "ntlmdomain:DOMAIN"
' and replace DOMAIN with the remote computer's
' domain. You can also use Kerberos instead
' of ntlmdomain.
' Make a connection to a remote computer.
' Replace the "FullComputerName" section of the
' string "\\FullComputerName\root\cimv2" with
' the full computer name or IP address of the
' remote computer.
Dim scope As ManagementScope
scope = New ManagementScope( _
"\\FullComputerName\root\cimv2")
scope.Connect()
' Use this code if you are connecting with a
' different user name and password:
'
' Dim scope As ManagementScope
' scope = New ManagementScope( _
' "\\FullComputerName\root\cimv2", options)
' scope.Connect()
' Query system for Operating System information
Dim query As ObjectQuery
query = New ObjectQuery( _
"SELECT * FROM Win32_OperatingSystem")
Dim searcher As ManagementObjectSearcher
searcher = _
New ManagementObjectSearcher(scope, query)
Dim queryCollection As ManagementObjectCollection
queryCollection = searcher.Get()
Dim m As ManagementObject
For Each m In queryCollection
' Display the remote computer information
Console.WriteLine("Computer Name : {0}", _
m("csname"))
Console.WriteLine("Windows Directory : {0}", _
m("WindowsDirectory"))
Console.WriteLine("Operating System: {0}", _
m("Caption"))
Console.WriteLine("Version: {0}", m("Version"))
Console.WriteLine("Manufacturer : {0}", _
m("Manufacturer"))
Next
Return 0
End Function
End Class
Comentarios
Seguridad de .NET Framework
Plena confianza para el llamador inmediato. El código de confianza parcial no puede usar este miembro. Para obtener más información, consulte Uso de bibliotecas de código de confianza parcial.