Hi Lamont,
First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you need to get disk information from a
remote computer. If there is any misunderstanding, please feel free to let
me know.
We can use WMI to get this information remotely. Here I found a code
snippet that can caculate the total free disk space available on a remote
machine. It is in C# and you can easily convert it to VB.NET. Also, you can
make some changes to it to meet your needs.
private void CalculateFreeUsed(string srvname)
{
try
{
// Connection credentials to the remote computer -
// not needed if the logged in account has access
ConnectionOptions oConn = new ConnectionOptions();
// oConn.Username = "JohnDoe";
// oConn.Password = "JohnsPass";
string strNameSpace = @"\\";
if (srvname != "")
strNameSpace += srvname;
else
strNameSpace += ".";
strNameSpace += @"\root\cimv2";
System.Management.ManagementScope oMs = new
System.Management.ManagementScope(strNameSpace, oConn);
//get Fixed disk stats
System.Management.ObjectQuery oQuery = new
System.Management.ObjectQuery("select FreeSpace,Size,Name from
Win32_LogicalDisk where DriveType=3");
//Execute the query
ManagementObjectSearcher oSearcher = new
ManagementObjectSearcher(oMs,oQuery);
//Get the results
ManagementObjectCollection oReturnCollection = oSearcher.Get();
//loop through found drives and write out info
foreach( ManagementObject oReturn in oReturnCollection )
{
// Disk name
//Console.WriteLine("Name : " + oReturn["Name"].ToString());
// Free Space in bytes
strFreespace = oReturn["FreeSpace"].ToString();
D_Freespace = D_Freespace + System.Convert.ToDouble(strFreespace);
// Size in bytes
strTotalspace = oReturn["Size"].ToString();
D_Totalspace = D_Totalspace + System.Convert.ToDouble(strTotalspace);
}
}
catch
{
MessageBox.Show("Failed to obtain Server Information. The node you are
trying to scan can be a Filer or a node which you don't have administrative
priviledges. Please use the UNC convention to scan the shared folder in the
server","Server Error",MessageBoxButtons.OK, MessageBoxIcon.Error) ;
}
}
Please check the following link for more information on this snippet.
http://groups.google.com/group/microsoft.public.dotnet.languages.vb/browse_f
rm/thread/8cfed7c8d264ded/ebaf526cf2817346?lnk=st&q=disk+information+remote+
computer+wmi&rnum=7&hl=zh-CN#ebaf526cf2817346
Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."