37 lines
870 B
Ruby
37 lines
870 B
Ruby
|
require "tempfile"
|
||
|
|
||
|
require "vagrant/util/powershell"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module HostWindows
|
||
|
module Cap
|
||
|
class RDP
|
||
|
def self.rdp_client(env, rdp_info)
|
||
|
config = nil
|
||
|
opts = {
|
||
|
"drivestoredirect:s" => "*",
|
||
|
"full address:s" => rdp_info[:host],
|
||
|
"prompt for credentials:i" => "1",
|
||
|
"username:s" => rdp_info[:username],
|
||
|
}
|
||
|
|
||
|
# Create the ".rdp" file
|
||
|
config = Tempfile.new(["vagrant-rdp", ".rdp"])
|
||
|
opts.each do |k, v|
|
||
|
config.puts("#{k}:#{v}")
|
||
|
end
|
||
|
config.close
|
||
|
|
||
|
# Launch it
|
||
|
Vagrant::Util::PowerShell.execute("mstsc", config.path)
|
||
|
ensure
|
||
|
if config
|
||
|
config.close
|
||
|
config.unlink
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|