Title: Message Title
Yoann LE TOUCHE commented on an issue
Puppet / Bug PUP-1288
Windows user provider fails to create user with non-ASCII characters
The windows_adsi user provider essentially does the following when creating a user:

<pre>
require 'Win32API'
require 'win32ole'

def computer_name
  buf = " " * 128
  Win32API.new('kernel32', 'GetComputerName', ['P','P'], 'I').call(buf, buf.length.to_s)
  buf.unpack("A*")
end

conn = WIN32OLE.connect("WinNT://#{computer_name}")
user = conn.C...

--
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to