Merge pull request #5670 from agdula/master

add RDP auto login with password
This commit is contained in:
Seth Vargo 2016-05-27 19:08:10 -04:00
commit 01369342db
1 changed files with 5 additions and 18 deletions

View File

@ -8,28 +8,15 @@ module VagrantPlugins
module Cap
class RDP
def self.rdp_client(env, rdp_info)
config = nil
opts = {
"full address:s" => "#{rdp_info[:host]}:#{rdp_info[:port]}",
"prompt for credentials:i" => "1",
"username:s" => rdp_info[:username],
}
# Create the ".rdp" file
config_path = Pathname.new(Dir.tmpdir).join(
"vagrant-rdp-#{Time.now.to_i}-#{rand(10000)}.rdp")
config_path.open("w+") do |f|
opts.each do |k, v|
f.puts("#{k}:#{v}")
end
end
# Setup password
cmdKeyArgs = ["/add:#{rdp_info[:host]}:#{rdp_info[:port]}", "/user:#{rdp_info[:username]}", "/pass:#{rdp_info[:password]}"]
Vagrant::Util::Subprocess.execute("cmdkey", *cmdKeyArgs )
# Build up the args to mstsc
args = [config_path.to_s]
args = ["/v:#{rdp_info[:host]}:#{rdp_info[:port]}"]
if rdp_info[:extra_args]
args = rdp_info[:extra_args] + args
end
# Launch it
Vagrant::Util::Subprocess.execute("mstsc", *args)
end