Category Archives: PC

Windows : Nmap error dnet: Failed to open device eth0

Experiencing the following issue with Nmap on Windows? $ nmap -P0 -sS -T5 0.0.0.0 Starting Nmap 7.70 ( https://nmap.org ) at 2019-06-04 03:14 ric dnet: Failed to open device eth0 QUITTING! It appears that some version of Npcap (or WinPcap) is causing issues. Updating Npcap to version 0.995 solve this issue. If you are running… Read More »

Windows : Show available memory with PowerShell

Here is the command how to show the available system memory on Windows with PowerShell command : (systeminfo | Select-String ‘Total Physical Memory:’).ToString().Split(‘:’)[1].Trim() Example : PS C:\Users\user> (systeminfo | Select-String ‘Total Physical Memory:’).ToString().Split(‘:’)[1].Trim() 32,767 MB

Windows : magicJack “No Audio Found!” on Windows 10

If you are using the magicJack app on Windows 10, you probably had the following issue after installing the latest Windows Updates : No Audio Found! This is caused by a new Windows security feature that deny microphone access by default to any applications. To resolve this, search with Cortana the following : Microphone Privacy… Read More »

Category: PC

Windows : How to remove license key and unregister

You may require sometimes to remove the license from a Windows installation, whatever this is to re-assign a license to another machine, or before publishing an appliance, etc. Follow this procedure to put back your Windows installation to the original installation state, license wise. The following commands need to be performed with the Command Prompt… Read More »

Linux : How to get hardware serial number

The easiest way to get hardware serial and related information is using “dmidecode“. The command below should give you exactly what you need : dmidecode -s system-serial-number The command above does not usually work with “clone” computers/servers. Alternatively, you may use the command below, which will output all parts serial number availables : dmidecode |… Read More »