rtilley wrote: > # Fails in Ruby: > system('msiexec -i #{File.basename(wup)}') Interpolation only happens in double quotes. Try: system("msiexec -i #{File.basename(wup)}") -- vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407