リモートマシンでGetVolumeInformationを呼び出すためにC#を使用しています。c $などのデフォルトの共有設定があるので、リモートハードドライブを簡単にヒットできます。ただし、CD/DVDにはデフォルト設定がありません。PInvoke呼び出しなどを使用してリモートCD/DVDドライブを読み取るにはどうすればよいですか?
C#を使用して実行できない場合は、常にPowerShellまたはWMIを使用できます。
リモートマシンでGetVolumeInformationを呼び出すためにC#を使用しています。c $などのデフォルトの共有設定があるので、リモートハードドライブを簡単にヒットできます。ただし、CD/DVDにはデフォルト設定がありません。PInvoke呼び出しなどを使用してリモートCD/DVDドライブを読み取るにはどうすればよいですか?
C#を使用して実行できない場合は、常にPowerShellまたはWMIを使用できます。
WMI を使用すると、リモート マシンのシステム情報を問題なく取得できます。必要なのは、マシンにリモート WMI アクセスを設定し、有効なユーザーとパスワードを使用することだけです。この場合、Win32_LogicalDiskおよびWin32_CDROMDrive クラスを使用して、必要な情報を取得できます。
この C# サンプルを試してください。
using System;
using System.Collections.Generic;
using System.Management;
using System.Text;
namespace GetWMI_Info
{
class Program
{
static void Main(string[] args)
{
try
{
string ComputerName = "localhost";//set the remote machine name here
ManagementScope Scope;
if (!ComputerName.Equals("localhost", StringComparison.OrdinalIgnoreCase))
{
ConnectionOptions Conn = new ConnectionOptions();
Conn.Username = "";//user
Conn.Password = "";//password
Conn.Authority = "ntlmdomain:DOMAIN";
Scope = new ManagementScope(String.Format("\\\\{0}\\root\\CIMV2", ComputerName), Conn);
}
else
Scope = new ManagementScope(String.Format("\\\\{0}\\root\\CIMV2", ComputerName), null);
Scope.Connect();
ObjectQuery Query = new ObjectQuery("SELECT * FROM Win32_CDROMDrive");
ManagementObjectSearcher Searcher = new ManagementObjectSearcher(Scope, Query);
foreach (ManagementObject WmiObject in Searcher.Get())
{
Console.WriteLine("{0,-35} {1,-40}","DeviceID",WmiObject["DeviceID"]);// String
Console.WriteLine("{0,-35} {1,-40}","Drive",WmiObject["Drive"]);// String
}
}
catch (Exception e)
{
Console.WriteLine(String.Format("Exception {0} Trace {1}",e.Message,e.StackTrace));
}
Console.WriteLine("Press Enter to exit");
Console.Read();
}
}
}
PowershellとWMIを使用します。
これを試して:
Get-WmiObject -computername MyremotePC Win32_CDROMDrive | Format-List *
リモートコンピューターの管理者資格が必要です。
GetVolumeInfomation
Add-Typeを使用して、PowerShellでタイプとして追加することをP /呼び出しできます(ここにいくつかの例があります)。
共有されていないリモートCD/DVDのディスク上のデータを読み取ろうとしている場合、それを行う方法がわかりません。