Check this
http://blogs.msdn.com/b/chinmay_palei/a ... entre.aspx
http://scorpionqa.wordpress.com/2010/01 ... windows-7/
http://www.interworks.com/blogs/dsmith/ ... tual-store
You can get rid of it changic UDC (rights) or writing to the registry (much better)
this is what i do when needed
Hth
Richard
- Code: Select all Expand view
oReg := TReg32():Create( HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" )
I := 0
oReg:Get( "EnableVirtualization", @I )
IF I # 0
IF ! IsUserAnAdmin()
MSGSTOP("Cette fonction nécessite des droits ADMINISTRATEUR , droits non détectés ! veuillez désactiver manuellement ")
oReg:Close()
ELSE
oReg:Set( "EnableVirtualization", 0 )
oReg:Close()
ENDIF
ENDIF
oReg:Close()