Virtual Machine SYMMPI Fix

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 Feb 7, 09:20 AM by Jason Langone

Commenting is closed for this article.

Commenting is closed for this article.