network 发表于 2019-2-17 09:34:11

Linux编译WMIC

  1.概述
2.系统环境
操作系统:Centos 7
  3.软件环境
http://i2.运维网.com/images/blog/201811/28/e8c49257202cdfde6e6e2a8a098d338e.png
  4.编译
Wget http://www.openvas.org/download/wmi/wmi-1.3.14.tar.bz2
Tar -jxvf wmi-1.3.14.tar.bz2
Cd wmi-1.3.14
make "CPP=gcc -E -ffreestanding"
  5.安装
  6.使用
wmic -U domain/username%password //ipaddress "select * from Win32_ComputerSystem"
http://i2.运维网.com/images/blog/201811/28/102f811db2fd4d45ae9b0dd71e086be9.png
  以上错误暂未解决!
  7.异常
7.1.Make编译报错
Compiling ./librpc/idl/atsvc.idl
/usr/include/stdc-predef.h:0: Syntax error near '3'
Failed to parse ./librpc/idl/atsvc.idl at ./pidl/pidl line 583.
Makefile:28880: recipe for target 'idl' failed
make: *** Error 1
原因:GCC v4.8 or higher
http://i2.运维网.com/images/blog/201811/28/8ab62e73ce6ef734727c5a266f92b606.png
  make "CPP=gcc -E -ffreestanding"
  7.2.编译异常
http://i2.运维网.com/images/blog/201811/28/1b7a6e1241bd0f79be587a3c9201dd89.png
http://i2.运维网.com/images/blog/201811/28/07bd0a3691bfb22a30be096e50dd6a4b.png
  #if GNUTLS_VERSION_NUMBER < 0x020c00
#endif



页: [1]
查看完整版本: Linux编译WMIC