View Single Post
  #2 (permalink)  
Old 11-19-2008, 3:47 PM
bullmike bullmike is offline
VB.NET Forum Newbie
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Nov 2008
Posts: 2
Reputation: 0
bullmike is on a distinguished programming path ahead
Default A Solution

Well I found a fix for this issue.

Instead of using this
"Select * FROM Win32_MappedLogicalDisk"

I used
"Select * FROM Win32_LogicalDisk WHERE DriveType = 4"


The computers that didn't show the ProviderName now do.


Anyone out there know why?
Reply With Quote