Home
»
Discussion Forums
»
Scripts & Agent Procedures
»
Modify Exchange SMTP virtual Server settings
Subscribe via RSS
Share this
Similar Posts
Exchange POP3/SMTP/IMAP Virtual Servers
by
LegacyPoster
on
Sep 2, 2009
SMTP Virtual Server is stopped or not running
by
LegacyPoster
on
Mar 22, 2005
Configuring Default SMTP Virtual Server with authenticated Smart host account
by
LegacyPoster
on
Feb 3, 2006
Article 10010: Configuring Microsoft IIS Default SMTP Virtual Server to co-exist with 3rd Party SMTP
by
LegacyPoster
on
Dec 16, 2004
SMTP server?
by
LegacyPoster
on
Dec 11, 2007
View More
Details
2
Replies
0
Subscribers
Posted
over 12 years ago
Scripts & Agent Procedures
Modify Exchange SMTP virtual Server settings
Posted by
LegacyPoster
on
Dec 18, 2008 6:43 AM
This may be a longshot but...
The exchange virtual server delivery settings (Time for delay, NDR). Any one know how to get at these without manually entering them.
We want to make change across every exchange server.
Thanks and my fingers are crossed.
Legacy Forum Name: Modify Exchange SMTP virtual Server settings,
Legacy Posted By Username: rvines@axcelltech.com
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
Posted by
LegacyPoster
on
Dec 18, 2008 7:21 AM
I don't know, but an idea comes to mind...use the GUI to change them to an odd value - such as 123 or 321 or 987. Then use REGEDIT and search the registry for the odd value. If you find a match, you found the Registry value. Then you can write a script to use Kaseya to modify the registry value on all machines running Exchange. You may also have to stop and start the SMTP service.
Good luck.
Lloyd
Legacy Forum Name: Scripts Forum,
Legacy Posted By Username: lwolf
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
Posted by
LegacyPoster
on
Dec 18, 2008 8:40 AM
The settings you are looking for are in the IIS Metabase.
usually:
C:\WINDOWS\system32\inetsrv\MetaBase.xml, and can be edited directly if you wanted to. I.e with notepad
You have to modify metadata information for IIS.
There are two methods. Use IIS Resource kit - get it from Microsoft. And there was Metadata Explorer.
Other way is to use
adsutil.vbs
from Intepub/Adminscripts
With adsutil.vbs - from command prompt
this will list
settings
for the first
smtp
instance.
adsutil.vbs enum /SmtpSvc/1
It is tree-like structure. You can view other paths if you use enum on higher node.
There you will notice parameters
DropDirectory
BadMailDirectory
PickupDirectory
QueueDirectory
You can
set
them with
adsutil.vbs
SET
/SmtpSvc/1/BadMailDirectory "f:\forgotten_one"
Legacy Forum Name: Scripts Forum,
Legacy Posted By Username: myArch-man
You have posted to a forum that requires a moderator to approve posts before they are publicly available.