⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shutdown.c

📁 samba服务器!
💻 C
字号:
/*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;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -