Dialup and Mocha This is Ian Chan”s Blog
Browsing all posts in: IT Lab

Secure Client Assess Role for Proxy Exchange 2007

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

outlookanywhere-1.jpg

Using Basic Authentication Method for outlook anywhere

outlookanywhere-2.jpg

Outlook 2007  Exchange Proxy Setting

OutlookAnywhere-3.JPG

Outlook 2007 to Exchange 2007 connection setting

OutlookAnywhere-4.JPG

The following refer website:

Valid Self-cert for ISA 2006

How to proxying Exchange 2007 OWA, ActiveSync, Outlook Anywere using ISA 2006

Add domain user into local administor group as client computer

April 27

But it will be overwrite original setting.

http://technet.microsoft.com/en-us/library/cc756802.aspx

RestrictedGroupPolicy.JPG

Exchange 2007 Data Path Security Reference

January 3

http://technet.microsoft.com/en-us/library/bb331973.aspx

You can no longer access the CD drive or the DVD drive

December 23

http://support.microsoft.com/?scid=kb;en-us;314060&x=12&y=13

Exchange 2007: How to Upgrade a Clustered Mailbox Server in a CCR to Exchange 2007 SP1

September 19

Reference Link:

http://technet.microsoft.com/en-us/library/bb676320(EXCHG.80).aspx

Exchange 2007: How to Move a Storage Group in a CCR

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

Exchange 2007: Mailbox CCR can not replicate

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”

Windows Login Script

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