' This script was originally published in the Exchange Cookbook, ' (http://www.exchangebookcook.com). Written by Paul Robichaux, ' Missy Koslosky, and Devin Ganger. Redistributed with permission ' of the publisher, O'Reilly & Associates. ' When run on an OWA server, this code disables the ability of users ' to check spelling in OWA 2003. Don't do this unless necessary, ' because most users *love* this feature. ' ------ SCRIPT CONFIGURATION ------ strOWA = "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchangeWeb\OWA\" ' ------ END CONFIGURATION --------- Set objWSH = wscript.CreateObject("WScript.Shell") objWSH.RegWrite strOWA & "DisableSpellCheckOnSend", 1, "REG_DWORD" WScript.echo "OWA 2003 spelling checking turned off."