Reading Time: 3 minutes A quick how-to for Excel explaining how to ‘grey out’ an entire row based of value of one cell.
Leave a CommentAuthor: Jacob Sobczak
Reading Time: < 1 minute I had issues with accessing share on a PC that was connected to private network and had file and sharing enabled. Looking at firewall rules the SMB-In access is enabled from any IP on local subnet, but doesn’t allow access…
Leave a CommentReading Time: < 1 minute Get-NetAdapter and find index of the adapter you want to use, you can also pull more details Get-NetAdapter * | Sort InterfaceDescription | Format-Table -Property Name, InterfaceDescription, MacAddress, Status, ifIndex $adapter = Get-NetAdapter -InterfaceIndex 17 $name = “name of the…
Leave a CommentReading Time: < 1 minute Original script found on https://tommymaynard.com/cmdlets-of-the-same-name-vmware-hyper-v/ Had to modify it to make it work, because Add-PSSnapin no longer works with VMWare Usage: Add-VMCs V will switch to using VMware CMDlets and Add-VMCs H will switch to Hyper-V cmdlets
Leave a CommentReading Time: < 1 minute Error: One morning my desktop PC came up with a following error while trying to access VMs on two remote Hyper-V servers: “Hyper-V encountered an error trying to access an object on computer ‘hostname’ because the object was not found.…
Leave a CommentReading Time: 2 minutes Warning! Only works with Hyper-V host newer than 1803. Make sure you have “Enhanced Session Mode Policy” enabled on your host. Download and install Hyper-V tools to enable Enhanced session on Linux VM – support for clipboard, custom resolution and…
3 CommentsReading Time: < 1 minute Issue: Manjaro throws an error during boot on Live CD “[Failed] Failed to start Light Display Manager.” ony Hyper-V Gen 2VM with secure boot disabled using Manjaro-i3-18.1.5 ISO Fix: Press CTRL+ALT+F2 to switch to TTY2, login with manjaro/manjaro, once you…
5 CommentsReading Time: < 1 minute To be able to run other hypervisor on existing Hyper-V host, such as Proxmox Set-VMProcessor <vm name> -ExposeVirtualizationExtensions $true
Leave a CommentReading Time: 7 minutes Assumptions Writing this guide I made few assumptions about potential audience. I assumed you: have a Hyper-V server set up with a basic virtual switch and internet connection available through the switch know how to create a basic VM using…
Leave a CommentReading Time: < 1 minute I’ve re-created one of my servers and wanted to copy my old .bashrc file over to the new server. This can be accomplished using scp command. Here is how…. For simplicity let’s call the two servers: HostOld and HostNew; jacob…
Leave a Comment