[SOLVED] E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

You get the following error message while installing a .deb package on Debian or Ubuntu or while installing Updates? E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? This error means that there is already an apt process running or ... Read more

The following error was generated: $error.Clear(); Install-MsiPackage

While Installing an Exchange Server 2016 on Windows Server 2016, you may get the following error. The following error was generated when “$error.Clear(); Install-MsiPackage ` -PackagePath ([System.IO.Path]::Combine($<wbr />RoleLanguagePacksPath, “Setup\ServerRoles\<wbr />UnifiedMessaging\MSSpeech_SR_<wbr />TELE.nb-NO.msi”)) ` -PropertyValues (“ARPSYSTEMCOMPONENT=1 ALLUSERS=1”) ` -LogFile ([System.IO.Path]::Combine($<wbr />RoleSetupLoggingPath, “InstallSpeech-nb-NO.msilog”)) ” was run: “Microsoft.Exchange.<wbr />Configuration.Tasks.<wbr />TaskException: Installing product G:\Setup\ServerRoles\<wbr />UnifiedMessaging\MSSpeech_SR_<wbr />TELE.nb-NO.msi failed. Fatal error during ... Read more

How to Repair VMware Virtual Hard Disk on Windows 10?

To repair a VMware virtual hard disk on Windows 10, go to the VMWare site and download vdiskmanager-windows-7.0.1.exe2.zip (see also https://kb.vmware.com/s/article/1023856) Repair VMware Virtual Hard Disk on Windows 10 Unzip the folder. Rename the file to vmware-vdiskmanager.exe and copy it following location. C:\Program Files\VMware\VMware Workstation or C:\Program Files (x86)\VMware\VMware Workstation if you have 64-bit operating system. Shut down ... Read more

How To Rename NIC Adapters with PowerShell

If you want to rename NIC adapters with PowerShell, follow this tutorial: Step 1. Open PowerShell with admin privileges Step 2. Execute the following command, Rename-NetAdapter -Name "<Old NIC Adapter Name>" -NewName "<New Adapter Name>" Example If you want to rename an old NIC Ethernet to a new name ManagementAdapter, the command should look like, Rename-NetAdapter ... Read more