Created
January 29, 2016 18:20
-
-
Save rickheil/7c89a843bf7c853997a1 to your computer and use it in GitHub Desktop.
installing wmic for linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# compiles WMIC for linux | |
apt-get install autoconf | |
cd /usr/src | |
wget http://www.openvas.org/download/wmi/wmi-1.3.14.tar.bz2 | |
bzip2 -cd wmi-1.3.14.tar.bz2 | tar xf - | |
cd wmi-1.3.14/ | |
make "CPP=gcc -E -ffreestanding" | |
cp Samba/source/bin/wmic /usr/local/bin | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment