Windows 10 (swedish)

Uppdateringshistorik för Windows 10 (1703)

https://support.microsoft.com/sv-se/help/4018124/windows-10-update-history

Uppdateringshistorik för Windows 10 (1607)

https://support.microsoft.com/sv-se/help/4000825

wmic

https://superuser.com/questions/447277/list-all-installed-software-on-pc
https://community.spiceworks.com/how_to/111076-using-wmic-to-retrieve-a-list-of-all-installed-programs
https://social.msdn.microsoft.com/Forums/vstudio/en-US/a9beeed3-99f0-4627-ba1e-aa0161fa58c9/wmic-invalid-xsl-format-or-file-name?forum=windowsgeneraldevelopmentissues

Lista alla installerade program, html
wmic /output:Installed.htm product get /format:”%WINDIR%\system32\wbem\en-US\hform”

Lista alla installerade program, csv
wmic /output:Installed.csv product get /format:”%WINDIR%\system32\wbem\en-US\csv”

VirtualBox – convert RAW image to VDI and otherwise

Cloned from: https://blog.sleeplessbeastie.eu/2012/04/29/virtualbox-convert-raw-image-to-vdi-and-otherwise/

VirtualBox – convert RAW image to VDI and otherwise

VirtualBox command-line interface (VBoxManage) provides an easy way to convert raw disk image to the VDI/VMDK format and otherwise.

Let’s assume that we have raw image of the sdb device:

sudo dd if=/dev/sdb of=./sdb.raw

To use it with VirtualBox we need to convert it to the VDI format:

VBoxManage convertdd sdb.raw sdb.vdi --format VDI

To use it with VMware we need to convert it to the VMDK format:

VBoxManage convertdd sdb.raw sdb.vmdk --format VMDK

Convert between VDI/VMDK formats:

VBoxManage clonehd sdb.vdi sdb.vmdk --format VMDK
VBoxManage clonehd sdb.vmdk sdb.vdi --format VDI

Convert to the RAW image:

VBoxManage clonehd sdb.vdi sdb.raw --format RAW

Alternative solution to get back raw image after applying modifications is to use qemu-img command from qemu package:

qemu-img convert -f vmdk sdb.vmdk -O raw sdb.raw

Now we can write image to the device:

sudo dd if=./sdb.raw of=/dev/sdb