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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*tries to shut down a remote pc*/
#include "libmsrpc.h"
#include "test_util.h"
int main(int argc, char **argv) {
CacServerHandle *hnd = NULL;
TALLOC_CTX *mem_ctx = NULL;
fstring tmp;
mem_ctx = talloc_init("cac_shutdown");
hnd = cac_NewServerHandle(True);
cac_SetAuthDataFn(hnd, cactest_GetAuthDataFn);
cac_parse_cmd_line(argc, argv, hnd);
hnd->_internal.srv_level = SRV_WIN_NT4;
if(!cac_Connect(hnd, NULL)) {
fprintf(stderr, "Could not connect to server %s. Error: %s\n", hnd->server, nt_errstr(hnd->status));
exit(-1);
}
struct Shutdown s;
ZERO_STRUCT(s);
printf("Message: ");
cactest_readline(stdin, tmp);
s.in.message = talloc_strdup(mem_ctx, tmp);
printf("timeout: ");
scanf("%d", &s.in.timeout);
printf("Reboot? [y/n]: ");
cactest_readline(stdin, tmp);
s.in.reboot = ( tmp[0] == 'y') ? True : False;
printf("Force? [y/n]: ");
cactest_readline(stdin, tmp);
s.in.force = (tmp[0] == 'y') ? True : False;
if(!cac_Shutdown(hnd, mem_ctx, &s)) {
fprintf(stderr, "could not shut down server: error %s\n", nt_errstr(hnd->status));
goto done;
}
printf("Server %s is shutting down. Would you like to try to abort? [y/n]: ", hnd->server);
fscanf(stdin, "%s", tmp);
if(tmp[0] == 'y') {
if(!cac_AbortShutdown(hnd, mem_ctx)) {
fprintf(stderr, "Could not abort shutdown. Error %s\n", nt_errstr(hnd->status));
}
}
done:
cac_FreeHandle(hnd);
talloc_destroy(mem_ctx);
return 0;
}
|