Monthly Archive 29 November 2020

ByPatrick

Installer OCS-inventory agent on linux

Voici les lignes de commandes que nous avons utilisé pour installer ocs-inventory sur un pc tournant sur Elementary OS 5.1.7

sudo sudo apt install make gcc libmodule-install-perl dmidecode libxml-simple-perl libcompress-zlib-perl openssl libnet-ip-perl libwww-perl libdigest-md5-perl libdata-uuid-perl libcrypt-ssleay-perl libnet-snmp-perl libproc-pid-file-perl libproc-daemon-perl net-tools libsys-syslog-perl pciutils smartmontools read-edid nmap libnet-netmask-perl
cd opt/
sudo wget https://github.com/OCSInventory-NG/UnixAgent/releases/download/v2.4.2/Ocsinventory-Unix-Agent-2.4.2.tar.gz
sudo tar -xvf Ocsinventory-Unix-Agent-2.4.2.tar.gz
cd Ocsinventory-Unix-Agent-2.4.2/
sudo perl Makefile.PL
sudo make
sudo make install

Merci à

https://www.youtube.com/watch?reload=9&v=qRMT3iL2LqY
ByPatrick

Powershell command to remove all windows 10 Applications

Get-AppxPackage -AllUsers | Remove-AppxPackage (attention, ça retire tout, jusqu’à la calculatrice)

Merci à https://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/