Is it possible to disable Internet Explorer sound effects using VBScript? I create IE object in standard fashion
set ieObject = CreateObject("InternetExplorer.Application")
ieObject.Visible=True
ieObject.Width = 800
ieObject.Height = 500
ieObject.Navigate "http://stackoverflow.com"
'other code here
ieObject.Quit
then somehow I want to have access sound properties of Internet Explorer. I know that it can be done manually through Windows Control Panel but I want to do it programmatically using VBS.