May
15
This is only one solution that can be protect Exchange 2007 client access role.
For Outlook Anywhere Setting:
I only working with Basic Authentication.
Modify RpcwithCert setting in IIS
Using Basic Authentication Method for outlook anywhere
Outlook 2007 Exchange Proxy Setting
Outlook 2007 to Exchange 2007 connection setting
The following refer website:
Valid Self-cert for ISA 2006
How to proxying Exchange 2007 OWA, ActiveSync, Outlook Anywere using ISA 2006
September
19
Can’t perform the task in Exchange Management Console (GUI)
Please do the following command in Exchange Management Shell
Suspend-StorageGroupCopy -identity “csmailboxpowercom”
Dismount-Database -identity “csmailboxpowercom”
Move-StorageGroupPath -identity <serverStorageGroupName> -logfolderpath <NewPath> -system folderpath <NewPath> -ConfigurationOnly (This command only can used in Exchange Management Shell)
Reference Link:
http://technet.microsoft.com/en-us/library/aa996391.aspx
September
19
Exchange 2007 can’t get the CCR to replicate. This is solution of resolve the passive node can’t replicate in CCR….
In Exchange Management Shell:
Update-storagegroupcopy -identity “csmailboxpowercom” -DeleteExisitingFiles -Verbose

For delete log files, the CCR status can not be online so we have to suspend which storage group.
Suspend-StorageGroupCopy -identity “csmailboxpowercom”

To delete log file after successful to suspend which storage group.
Update-storagegroupcopy -identity “csmailboxpowercom” -DeleteExisitingFiles -Verbose

To verify the CCR status Get-StorageGroupCopyStatus
If the storage group is suspend we have to resume/update for replicate the passive node.

Resume-StorageGroupCopy -identity “csmailboxpowercom”
Update-StorageGroupCopy -identity “csmailboxpowercom”
July
22
Windows Login Script
By default NetLogon located in the following:
%SystemRoot%sysvol<domain DNS name>scripts
Create a .bat for Client Script:
%SystemRoot%sysvol<domain DNS name>scriptslogin.bat
To use .bat:
login.bat
| # Mapping Network Driversnet
use z: \myservermyfolder
# Mapping Network Printer
net user LPT1 \myservermyprinter |
To use VBscript:
login.bat
| # Use Vbs
@echo offwscript \myservernetlogonVBscript.vbs |
VBscript.vbs
The following script that a part of need to modify. Download the full version please click HERE.
| ‘############# ↓↓↓↓CHANGE SCRIPT BELOW↓↓↓↓ ##############
‘ ifisMember(“Sales”) then
‘ DriveMapper “h:”, “\salesserverhome” & strUser ‘”‘Connect H: to \salesserverhomejohan
‘ DriveMapper “i:”, “\salesserversalesdept” ‘ Connect I: to \salesserversalesdept
‘ AddPrinter “\salesserverlaserjet” ‘ Create printer from shared printer
‘ SetPrinterDefault “\salesserverlaserjet” ‘ Set the printer as default
‘end if’
############# ↑↑↑↑CHANGE SCRIPT ABOVE↑↑↑↑ ############## |
refer link:
http://www.computerperformance.co.uk/Logon/logon_scripts.htm