Ara.T.Howard wrote: >o.k. - i suk with windows. > >any clue how one would determine the path of, and exec IE5 in windoze? do i >need to assume, as in unix, that it should be in the path? does ENV['PATH'] >do the same thing? could i be any more clueless? ;-) > If you wanna go the COM route: require 'win32ole' ie = WIN32OLE.new('InternetExplorer.Application') ie.visible = true ie.navigate('http://ruby-lang.org') Otherwise, try: `start iexplore` (The start dealy is a little bit of magic ... it's not just in the path, or at least not on my machine). -- Chris http://clabs.org/blogki