List SMTP Service Properties Using ADSI
Description
Returns information about the SMTP service on a computer.
Supported Platforms
Windows Server 2003 |
Yes |
Windows XP |
No |
Windows 2000 |
No |
Windows NT 4.0 |
No |
Windows 98 |
No |
Script Code
strComputer = "LocalHost" Set objIIS = GetObject("IIS://" & strComputer & "/SMTPSVC") Wscript.Echo "Access Flags: " & objIIS.AccessFlags Wscript.Echo "Disable Socket Pooling: " & _ objIIS.DisableSocketPooling Wscript.Echo "Allow Anonymous: " & objIIS.AllowAnonymous Wscript.Echo "Don't Log: " & objIIS.DontLog Wscript.Echo "Anonymous Only: " & objIIS.AnonymousOnly Wscript.Echo "Anonymous Password Sync: " & _ objIIS.AnonymousPasswordSync Wscript.Echo "Anonymous User Name: " & objIIS.AnonymousUserName Wscript.Echo "Anonymous User Password: " & _ objIIS.AnonymousUserPass Wscript.Echo "Connection Timeout: " & objIIS.ConnectionTimeout Wscript.Echo "Log Ext File Flags: " & objIIS.LogExtFileFlags Wscript.Echo "Log ODBC Data Source: " & objIIS.LogOdbcDataSource Wscript.Echo "Log ODBC Password: " & objIIS.LogOdbcPassword Wscript.Echo "Log File Directory: " & objIIS.LogFileDirectory Wscript.Echo "Log ODBC Table Name: " & objIIS.LogOdbcTableName Wscript.Echo "Log ODBC User Name: " & objIIS.LogOdbcUserName Wscript.Echo "Log File Period: " & objIIS.LogFilePeriod Wscript.Echo "Log Plugin Clsid: " & objIIS.LogPluginClsid Wscript.Echo "Log File Truncate Size: " & _ objIIS.LogFileTruncateSize Wscript.Echo "Log Type: " & objIIS.LogType Wscript.Echo "Maximum Connections: " & objIIS.MaxConnections Wscript.Echo "Server Comment: " & objIIS.ServerComment Wscript.Echo "Maximum Endpoint Connections: " & _ objIIS.MaxEndpointConnections Wscript.Echo "Server Listen Timeout: " & _ objIIS.ServerListenTimeout Wscript.Echo "Realm: " & objIIS.Realm Wscript.Echo "Server AutoStart: " & objIIS.ServerAutoStart
For online peer support, join the microsoft.public.windows.server.scripting community on the msnews.microsoft.com news server. To provide feedback or report bugs in sample scripts or the Scripting Guide, please contact Microsoft TechNet.
Disclaimer
This sample script is not supported under any Microsoft standard support program or service. The sample script is provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.