From: Curt Hibbs Date: 2004-04-26T11:51:13+09:00 Subject: Please help -- is win32ole still part of the ruby distribution? Roshan (see below) is telling me that win32ole has been removed from the Ruby distribution. Can anyone confirm this? I've searched the web, the ruby-talk ML, and the Ruby 1.8.1 distribution. I can't find any mention of this, and when I build Ruby 1.8.1, the build still produces a win32ole.so file. I was going to try to track down a reported problem with win32ole in the Ruby Installer for Windows build, but I don't want to waste my time on it if it was supposed to have been removed. Thanks, Curt James, Roshan wrote: > > They have removed the library [win32ole] from the distribution. > It was unstable. > > WMI code like this would bring the system down: > > require 'win32ole' > > def disp_subclasses namespace > obset = WIN32OLE.connect("winmgmts:\\\\.\\root"+namespace) > objs = obset.SubclassesOf() > objs.each {|cls| > puts cls.Path_.Path > } > end > > disp_subclasses "\\cimv2" >