Ting som kan have betydning :
-Hvor meget ram, disk m.m.
-hvilken netforbindelse ...direkte til Internet eller ?
-MX record på DNS
-postrelay ??? hos udbyder
-hvad har den lavet før, er den også fil & print server
-har du prøvet med en nyinstalleret maskine....
prøv evt. at lave et natligt AT-job som stopper og starter din exchange (MS har lavet en bat fil) ....->
start på stopall.bat----------------------------------------------------------------
rem v2.1-1026b
cls
@echo Off
echo.
echo ---------------------------------------------------------------------
echo Microsoft Exchange Server 5.5 Series
echo Concepts and Administration - 1026B
echo.
echo Microsoft Official Curriculum (c) Microsoft Corporation, 1998
echo ----------------------------------------------------------------------
echo.
echo Stopping all Exchange Services.....
Echo Stopping the Event Service.
net stop msexchangees
echo.
echo Stopping the cc:Mail Connector
net stop msexchangeccmc
echo.
echo Stopping the Free/Busy Connector
net stop msexchangefb
echo.
echo Stopping the MS Mail Interchange
net stop msexchangemsmi
echo.
echo Stopping the MS Mail PCMTA
net stop msexchangepcmta
echo
echo Stopping Directory Synchronization (DXA)
net stop msexchangedx
echo.
echo Stopping the Internet Mail Service
net stop msexchangeimc
echo.
echo Stopping the Internet News Service
net stop msexchangeins
echo.
echo Stopping the Message Transfer Agent
net stop msexchangemta
echo.
echo Stopping the Information Store
net stop msexchangeis
echo.
echo Stopping the Directory Service
net stop msexchangeds
echo.
echo Stopping the System Attendant
net stop msexchangesa
echo.
echo Stopping the DNS Service
net stop dns
echo.
echo Stopping the World Wide Web Publishing Service
net stop w3svc
echo.
-------------------------------------------------------------------------
det var så stopall.bat
her er startall.bat--------------------------------------------------
rem v2.1-1026b
cls
@echo Off
echo.
echo
---------------------------------------------------------------------
echo Microsoft Exchange Server 5.5 Series
echo Concepts and Administration - 1026B
echo.
echo Microsoft Official Curriculum (c) Microsoft
Corporation, 1998
echo
---------------------------------------------------------------------
-
echo.
echo Stopping all Exchange Services.....
Echo Stopping the Event Service.
net start msexchangees
echo.
echo Stopping the cc:Mail Connector
net start msexchangeccmc
echo.
echo Stopping the Free/Busy Connector
net start msexchangefb
echo.
echo Stopping the MS Mail Interchange
net start msexchangemsmi
echo.
echo Stopping the MS Mail PCMTA
net start msexchangepcmta
echo
echo Stopping Directory Synchronization (DXA)
net start msexchangedx
echo.
echo Stopping the Internet Mail Service
net start msexchangeimc
echo.
echo Stopping the Internet News Service
net start msexchangeins
echo.
echo Stopping the Message Transfer Agent
net start msexchangemta
echo.
echo Stopping the Information Store
net start msexchangeis
echo.
echo Stopping the Directory Service
net start msexchangeds
echo.
echo Stopping the System Attendant
net start msexchangesa
echo.
echo Stopping the DNS Service
net start dns
echo.
echo Stopping the World Wide Web Publishing Service
net start w3svc
echo.
------------------------------------------------------------