Sha256: f34deafc692aa0ec124063ff4dc6ae190568b4c863783e6d10309e89637869f6

Contents?: true

Size: 787 Bytes

Versions: 46

Compression:

Stored size: 787 Bytes

Contents

require "pathname"
require "tmpdir"

require "vagrant/util/subprocess"

module VagrantPlugins
  module HostWindows
    module Cap
      class RDP
        def self.rdp_client(env, rdp_info)
          # 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 = ["/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
      end
    end
  end
end

Version data entries

46 entries across 42 versions & 5 rubygems

Version Path
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/hosts/windows/cap/rdp.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/hosts/windows/cap/rdp.rb
vagrant-unbundled-1.8.5.2 plugins/hosts/windows/cap/rdp.rb
vagrant-unbundled-1.8.5.1 plugins/hosts/windows/cap/rdp.rb
vagrant-unbundled-1.8.4.2 plugins/hosts/windows/cap/rdp.rb
vagrant-unbundled-1.8.4.1 plugins/hosts/windows/cap/rdp.rb