Question : windows 7 drops terminal server connections

I have remote users at locations where windows 7 laptops have just been delivered. They are baselined for our environment. We have replaced Windows XP laptops at the same location where the issue of dropped connections occurs. When we plug in an XP laptop the sessions run smoothly without drops. When we plug  in Windows 7 Laptops, we get drops and reconnects randomly very often. ????? They are connecting to Server 2003 TS servers that do not appear to be having issues. Keep-Alives on the GPO are set to 1 at the host location.

Answer : windows 7 drops terminal server connections

Just another note, I figured out how to test the load speed hopefully.

Ruby already  includes a benchmarking class: http://ruby-doc.org/core/classes/Benchmark.html
Heres my script:

This script also tests a browser refresh so you can take it from there.

#!/usr/bin/ruby
#
#
require "rubygems"
require "benchmark"
require "firewatir"
include FireWatir
ff=Firefox.new
puts "Testing load time on textfiles.com"
puts Benchmark.measure {ff.goto("http://textfiles.com")}
puts "testing refresh time"
puts Benchmark.measure {ff.refresh}
puts "Lets time google.com"
puts Benchmark.measure {ff.goto("http://google.com")}
puts "and lets see if google loads faster 2nd time"
puts Benchmark.measure {ff.goto("http://google.com")}
ff.close


and this is the output i got:
$ ./timer.rb
Testing load time on textfiles.com
  0.000000   0.000000   0.000000 (  0.723822)
testing refresh time
  0.010000   0.000000   0.010000 (  7.643350)
Lets time google.com
  0.000000   0.010000   0.010000 (  2.553141)
and lets see if google loads faster 2nd time
  0.030000   0.000000   0.030000 ( 31.678997)



^^ for the record..... yes... that last result was 31 seconds, wifi...
Random Solutions  
 
programming4us programming4us