SYMMPI Fix for VMWare ESX/VI3

Due to the amount of emails I receive on the subject, here’s my .vbs script to perform the Symmpi fix for Virtual Machines. This is recommended in VMWare’s ESX and VI3 Best Practices. Use the vbs and apply via GPO, SMS Package or use it in a post-deployment script via Virtual Center.

Cheers.

‘ Add TimeOutValue to Virtual Machines because our EVA ce n’est pas bon.
‘ Written By: Jason Langone
‘ November 21, 2006
Option Explicit
Dim objShell
Dim strtimevalue, strsymmpi, strregloc
strsymmpi = “TimeOutValue” ‘ New Key
strtimevalue = “60”
strregloc = “HKLM\SYSTEM\CurrentControlSet\” _
& “Services\Disk\”
Set objShell = CreateObject(“WScript.Shell”)
objShell.RegWrite strregloc & strsymmpi, 1, “REG_DWORD”
objShell.RegWrite strregloc & strsymmpi, strtimevalue, “REG_DWORD”
WScript.Quit

- Jason Langone

Posted on Jun 29, 01:31 PM by Jason Langone

Commenting is closed for this article.

Comment

Commenting is closed for this article.