I have a small problem as I'm a server manager beginner, I installed a Domain Controller on my Windows Server 2008, and I created three OUs, now I'm trying to add users to each OU via
csvde command, but I get as a result of the operation, without mentioning any errors:
> C:\csvde>csvde -i -f List.csv
> Connecting to "(null)"
> Logging in as current user using SSPI Importing directory from file
> "List.csv" Loading entries.
> 0 entries modified successfully.
Below is the csv file I'm using to add 2 users to "Offshoring1" OU, the domain name is "iado.lan".
DN objectClass sAMAccountName sn givenName userPrincipalNAme
cn=BB NN,ou=Offshoring1,dc=iado,dc=lan user BB NN BB
[email protected]
cn=II YY,ou=Offshoring1,dc=iado,dc=lan user II YY II
[email protected]
and this the csv data as generated by Word 2011 on my mac :
DN;objectClass;sAMAccountName;sn;givenName;userPrincipalNAme
cn=BB NN,ou=Offshoring1,dc=iado,dc=lan;user;BB;NN;BB;
[email protected]
cn=II YY,ou=Offshoring1,dc=iado,dc=lan;user;II;YY;II;
[email protected]
I do use -k option to force import but still no success.