.NET 2.x Как переобразовать Mib файл в BD Microsoft Office Access или Microsoft SQL Server - C#
Формулировка задачи:
как прочитать файл mib с помощью c#
Как переобразовать Mib файл в BD Microsoft Office Access или Microsoft SQL Server и.т.д.
как преобразовать файл mib в ADO.NEt
Решение задачи: «.NET 2.x Как переобразовать Mib файл в BD Microsoft Office Access или Microsoft SQL Server»
textual
Листинг программы
using System;
using System.Management;
public class RemoteConnect
{
public static void Main()
{
try
{
// 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.
// This example uses the default values.
ConnectionOptions options =
new ConnectionOptions();
// введите домен и учетную запись
options.Username = "Alex_Kot";
// введите пароль
options.Password = "1234567";
// 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", options);
"\\\\10.3.0.230\\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"]);
}
Console.ReadLine();
}
catch (Exception e)
{
Console.WriteLine("{0} Exception caught.", e.Message);
Console.ReadLine();
}
}
}