Hyper-V encountered an error trying to access an object on computer

If you are working with Hyper-V or Docker for Windows and your Hyper-V or docker can't be started due to the error: [Window Title] Hyper-V Manager [Main Instruction] An error occurred while attempting to connect to server "YOUR-PC-NAME". Check that the Virtual Machine Management service is running and that you are authorized to connect to … Continue reading Hyper-V encountered an error trying to access an object on computer

Good Tip – Flash fill in Microsoft Excel to recognize and fill data for you automatically

Flash Fill automatically fills your data when it senses a pattern. For example, you can use Flash Fill to separate first and last names from a single column, or combine first and last names from two different columns. Or I want to extract "hours" field from "Task" column in below picture: (Extract hours field in … Continue reading Good Tip – Flash fill in Microsoft Excel to recognize and fill data for you automatically

How to config static IP address in Ubuntu 18.04 server with Netplan

Ubuntu 18.04 uses now Netplan to configure the network interfaces, so the configuration must be done in the file /etc/netplan/50-cloud-init.yaml sudo vi /etc/netplan/50-cloud-init.yaml DHCP address: network: version: 2 renderer: networkd ethernets: enp3s0: dhcp4: true Static address: network: version: 2 renderer: networkd ethernets: enp3s0: addresses: - 10.10.10.2/24 gateway4: 10.10.10.1 nameservers: addresses: [10.10.10.1, 1.1.1.1] You can find … Continue reading How to config static IP address in Ubuntu 18.04 server with Netplan