June 2005
Intermediate to advanced
464 pages
13h 2m
English
You want to create a new SG on an Exchange server.
Launch the Exchange System Manager (Exchange System Manager.msc).
In the left pane, expand the appropriate Administrative Groups container, and then expand the Servers container.
Right-click the target server, and choose New→ Storage Group.
Type a name in the Name field.
Optionally, change the location of the store database and log files to a different volume or path in the appropriate dialog boxes.
Optionally, enable circular logging or zeroing out of deleted database pages.
Click OK.
' This code creates a new storage group on the target Exchange server ' ------ SCRIPT CONFIGURATION ------ strComputerName = "<serverName>" ' e.g., "batman" strSGName = "<storageGroupName>" ' e.g., "New Storage Group" ' ------ END CONFIGURATION --------- set theServer = CreateObject("CDOEXM.ExchangeServer") Set theSG = CreateObject("CDOEXM.StorageGroup") theServer.DataSource.Open strComputerName ' get the URL of the first SG on this particular server sgArray = theServer.StorageGroups strSGName = sgArray(0) ' stuff our new SG name into the URL strTemp = Mid(strTemp, InStr(2, strTemp, "CN")) strTargetSG = "LDAP://" & theServer.DirectoryServer & "/CN=" & _ strSGName & "," & strTemp ' saving the new SG object to this URL actually creates the SG theSG.DataSource.SaveTo strTargetSG WScript.echo "Created SG " & strSGName & " successfully".
The Enterprise version of ...