# File lib/chef/provider/service/windows.rb, line 31
  def io_popen(command)
    io = IO.popen(command)
    entries = io.readlines
    io.close
    entries
  end