From: Jeff Miller Date: 2008-04-19T08:26:03+09:00 Subject: Re: Check if remote server exists For my purposes, it worked flawlessly. I used this: ip = params[:ex_name] storage = [] storage << system("ping #{ip}") if storage == [true] blah blah end I don't need to determine right away if it is an exchange server or not. I have also tried Gordon's response, which works. I basically just need to check whether it's there or not. Thanks, - Jeff -- Posted via http://www.ruby-forum.com/.