module Mixlib::ShellOut::Windows

def validate_options(opts)

Option validation that is windows specific
def validate_options(opts)
  if opts[:user]
    unless opts[:password]
      raise InvalidCommandOption, "You must supply both a username and password when supplying a user in windows"
    end
  end
end