I ran into this a while back, and setup a Group Policy in AD, to force LanmanWorkstation as the only value in this key.
Here's what I used... Save it as
whatever.adm, and add it to your
Administrative Templates, so all VM's in whatever OU you assign your GPO to can use it.
[code]
CLASS MACHINE ;This modifies the HKEY_LOCAL_MACHINE portion of the registry
; the following command creates a node called Desktop Settings
; under User Configuration.
CATEGORY !!categoryname
; the following command specifies the registry key to modify
KEYNAME "SYSTEM\CurrentControlSet\Control\NetworkProvider\Order"
; the following command specifies the name of the policy
; by using the variable "policyname"
POLICY !!policyname
; the following command specifies text on the Explain tab
EXPLAIN !!explaintext
; the following command creates a PART that contains a list box
PART !!labeltext
EditText
; the following statement specifies the registry value to modify
VALUENAME "ProviderOrder"
MAXLEN 255
DEFAULT "LanmanWorkstation"
END PART
END POLICY
END CATEGORY
; the following strings section assigns character strings
; to the variable names specified in the previous section
[strings]
categoryname="VMWare Shared Folders"
policyname="Disable VMware Shared Folders"
explaintext="This policy disables VMware Shared Folders."
explaintext_Help="http://www.vmware.com/support/kb/enduser/std_adp.php?p_faqid=1317"
labeltext="Disable VMware Shared Folders"[/code]