Create Virtual Machine fails with error 3101
Over Christmas I completed migrating our SCVMM 07 environmentover to SCVMM 08. An issue appeared this week which had me stumped, all of a sudden creating VMs from some templates started to fail when trying to “Install VM Components”. Error (3101) VMM failed to mount VHD file D:\BOH-DHOPE-V07\BOH-DHOPE-V07_disk_1.vhd on the * server. A timeout occurred. […]
SCVMM 2008 Delayed
Microsoft were due to release SCVMM 2008 yesterday (8th October) but according to a forum post by Carmen Asher (a Program Manager at Microsoft) the release has been delayed until October 30th. Ohh well, I guess that pushes our upgrade to SCVMM 2008 back a month – Darn.
Detecting VMWare
Interested in how to detect the presence of VMware / VirtualServer I came across this bit of code to detect whether an application is being run in virtual environment. int swallow_redpill (){ unsigned char m[2+4], rpill[] = “\x0f\x01\x0d\x00\x00\x00\x00\xc3”; *((unsigned*)&rpill[3]) = (unsigned)m; ((void(*)())&rpill)(); return (m[5]>0xd0) ? 1 : 0; } This works by abusing the SIDT […]