Couple of good articles on this:
Set your DCs for this:
http://support.microsoft.com/kb/816042
And set your members to NT5DS
http://technet.microsoft.com/en-us/library/bb490845.aspx
Monday, May 3, 2010
Wednesday, April 21, 2010
Wednesday, April 14, 2010
How to host multiple web-sites on XAMP
Edit C:\xampp\apache\conf\httpd.conf
- yes... there are more lines in that file, but these are the ones you need to edit... :)
Edit C:\xampp\apache\conf\extra\httpd-vhosts.conf
- ok - just kinda follow the logic for each website... and place your web files in the right directory... or else...!
Then go to command prompt:
- yes... there are more lines in that file, but these are the ones you need to edit... :)
ServerName *:80
#DocumentRoot "C:/xampp/htdocs"
#<Directory />
# Options FollowSymLinks
# AllowOverride None
# Order deny,allow
# Deny from all
#</Directory>
#<Directory "C:/xampp/htdocs">
# Options Indexes FollowSymLinks Includes ExecCGI
# AllowOverride All
# Order allow,deny
# Allow from all
#</Directory>
Edit C:\xampp\apache\conf\extra\httpd-vhosts.conf
- ok - just kinda follow the logic for each website... and place your web files in the right directory... or else...!
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "C:/xampp/htdocs/FolderForWhateverSite"
ServerName www.whatever.com
##ServerAlias www.whatever.com
ErrorLog "logs/error.log"
CustomLog "logs/error.log" combined
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "C:/xampp/htdocs/FolderForWhateverSite">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Then go to command prompt:
net stop apache2.2 & net start apache2.2
Thursday, April 1, 2010
Installing Exchange 2007 - basics
Install Windows 2003 Ent x64
Install all Windows Updates - reboot
Install IIS
Check for more Windows Updates - reboot
Run Exchange 2007 setup.exe
MailFlow Settings - <Your old Exchange 2003 Server Name>
Readiness Check - all green? - click install
click yes - reboot - run the setup.exe again to Get Critical Updates for Exchange 2007
- mine found Update Rollup 9 for Exchange Server 2007 Service Pack 1 (KB970162)
install AdminPack
install Resource ToolKit
reboot
Open IIS - change directory security so that it does not require 128-bit encryption
Open Exhcange MMC - Server Config > Client Access - Properties of OWA
- - set the internal and external URLs - make sure that the S from the https has been removed.
- - The internal one I set for http://servername.domain.net/owa
- - The external one I set for http://owa.publicdomain.com/owa
After this part, you're ready to configure your proxy server to handle the incoming traffic to OWA and direct it to your new Exchange Server.
Install all Windows Updates - reboot
Install IIS
Check for more Windows Updates - reboot
Run Exchange 2007 setup.exe
MailFlow Settings - <Your old Exchange 2003 Server Name>
Readiness Check - all green? - click install
click yes - reboot - run the setup.exe again to Get Critical Updates for Exchange 2007
- mine found Update Rollup 9 for Exchange Server 2007 Service Pack 1 (KB970162)
install AdminPack
install Resource ToolKit
reboot
Open IIS - change directory security so that it does not require 128-bit encryption
Open Exhcange MMC - Server Config > Client Access - Properties of OWA
- - set the internal and external URLs - make sure that the S from the https has been removed.
- - The internal one I set for http://servername.domain.net/owa
- - The external one I set for http://owa.publicdomain.com/owa
After this part, you're ready to configure your proxy server to handle the incoming traffic to OWA and direct it to your new Exchange Server.
Wednesday, March 31, 2010
How to configure anti-spam agents Exchange 2007
Link HERE!
By default, only the Journaling and Transport Rule agents are installed on the Hub Transport server role. The Anti-Spam Agent must be installed and enabled for you to use the associated transport feature. Only the agents that provide the messaging features that are designed to be deployed inside the organization are installed by default. Agents that are not installed are designed for use in the boundary network on a computer that has the Edge Transport server role installed. To view the agent configuration, run the Get-TransportAgent command in the Exchange Management Shell.
You can install the anti-spam agents on the Hub Transport server role by using the provided Install-AntiSpamAgents.ps1 script. The script is located in the %programfiles%\Microsoft\Exchange Server\Scripts folder. After you run this script, all of the anti-spam agents are installed and enabled, and the Anti-spam tab is available in the Exchange Management Console.
Open Exchange Management Shell
Now, go do a Microsoft Update! This will ensure that you're running with the most recent Anti-Spam Filter Updates.
OK - back to Exchange Management Shell
- if you'vge already configured your Intern SMTP Servers to include all of your SMTP servers that this server is going to talk to, then you're good.
- if not, then do the following:
Of course, use the IPs of your actual SMTP servers. :P
NOTE:
For all anti-spam features to work correctly, you must have at least one IP address of an internal SMTP server set on the InternalSMTPServers parameter on the Set-TransportConfig cmdlet. If the Hub Transport server on which you're running the anti-spam features is the only SMTP server in your organization, enter the IP address of that computer.
Of course, use the IPs of your actual SMTP servers. :P
Done
By default, only the Journaling and Transport Rule agents are installed on the Hub Transport server role. The Anti-Spam Agent must be installed and enabled for you to use the associated transport feature. Only the agents that provide the messaging features that are designed to be deployed inside the organization are installed by default. Agents that are not installed are designed for use in the boundary network on a computer that has the Edge Transport server role installed. To view the agent configuration, run the Get-TransportAgent command in the Exchange Management Shell.
You can install the anti-spam agents on the Hub Transport server role by using the provided Install-AntiSpamAgents.ps1 script. The script is located in the %programfiles%\Microsoft\Exchange Server\Scripts folder. After you run this script, all of the anti-spam agents are installed and enabled, and the Anti-spam tab is available in the Exchange Management Console.
Open Exchange Management Shell
Set-Location "c:\program files\Microsoft\exchange server\scripts"
./install-AntispamAgents.ps1
Restart-Service MSExchangeTransport
Now, go do a Microsoft Update! This will ensure that you're running with the most recent Anti-Spam Filter Updates.
OK - back to Exchange Management Shell
get-TransportConfig
- if you'vge already configured your Intern SMTP Servers to include all of your SMTP servers that this server is going to talk to, then you're good.
- if not, then do the following:
Set-TransportConfig -InternalSMTPServers 10.0.1.10,10.0.1.11
Of course, use the IPs of your actual SMTP servers. :P
NOTE:
For all anti-spam features to work correctly, you must have at least one IP address of an internal SMTP server set on the InternalSMTPServers parameter on the Set-TransportConfig cmdlet. If the Hub Transport server on which you're running the anti-spam features is the only SMTP server in your organization, enter the IP address of that computer.
Of course, use the IPs of your actual SMTP servers. :P
Done
Subscribe to:
Posts (Atom)