blob: b39d888c3950f69bcc4340c9ed90f8036d14ba6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/env smbscript
var options = GetOptions(ARGV,
"POPT_AUTOHELP",
"POPT_COMMON_SAMBA",
"POPT_COMMON_CREDENTIALS");
if (options == undefined) {
println("Failed to parse options");
return -1;
}
if (options.ARGV.length != 2) {
println("Usage: ejsnet.js <DOMAIN> <NEW USER NAME>");
return -1;
}
/* use command line creds if available */
var creds = options.get_credentials();
var ctx = NetContext(creds);
var usr_ctx = ctx.UserMgr(options.ARGV[0]);
if (usr_ctx == undefined) {
println("Couldn't get user management context.");
return -1;
}
var status = usr_ctx.Create(options.ARGV[1]);
if (status.is_ok != true) {
println("Failed to create user account " + options.ARGV[1] + ": " + status.errstr);
return -1;
}
var info = usr_ctx.Info(options.ARGV[1]);
if (info != null) {
println("UserInfo.AccountName = " + info.AccountName);
println("UserInfo.Description = " + info.Description);
println("UserInfo.FullName = " + info.FullName);
println("UserInfo.AcctExpiry = " + info.AcctExpiry);
} else {
println("Null UserInfo returned - account unknown");
}
var status = usr_ctx.Delete(options.ARGV[1]);
if (status.is_ok != true) {
println("Failed to delete user account " + options.ARGV[1] + ": " + status.errstr);
return -1;
}
print ("OK\n");
return 0;
|