Monthly Archives: May 2017

How to Convert a VMWare VMDK to Hyper-V VHD(X)

There are several ways and tools for this. Here is the path that worked for me. qemu-img for Windows QEMU disk image utility for Windows. It is used for converting, creating and consistency checking of various virtual disk formats. It’s compatible with Hyper-V, KVM, VMware, VirtualBox and Xen virtualization solutions.This build has been optimized for… Read More »

How To Fix Corrupt PowerShell In Windows 10

What to do if you find that your Windows 10 Powershell is filled with cryptic text? Actually the chance is that it is not corrupt but just needs font adjustments. Start Powershell 2. Open Window Properties As visible the font example is cryptic also in preview window 3. Select different font And we are back… Read More »

5 cents hint – c# looping between date range

If you need looping between date range then there are many ways to solve this task. Here is one simple code snippet DateTime startDate = new DateTime(2017, 1, 1); DateTime endDate = DateTime.Today; // looping between date range while (startDate < endDate) { // … to the “thing” startDate = startDate.AddDays(1); } Mission completed.