seemmcconfig: manage the Microsoft Management Console (MMC) region definitions

Syntax

seemmcconfig 
             -add options
             -delete options
             -export options
             -import options
             -list

This command is used to administer the Enterprise Server for .NET Administration UI's region definitions configuration.

Actions

-add
Add a new region definition to the configuration used by the Enterprise Server for .NET Administration UI on the local machine.
-delete
Delete a region definition from the configuration used by the Enterprise Server for .NET Administration UI on the local machine.
-export
Export all region definitions from the configuration used by the Enterprise Server for .NET Administration UI on the local machine.
-import
Import region definitions into the configuration used by the Enterprise Server for .NET Administration UI on the local machine.
-list
List all region definitions from the configuration used by the Enterprise Server for .NET Administration UI on the local machine.

Options

-in:<input-file>
Input filename (-import)
-out:<output-file>
Output filename (-export)

Default : -out:regions.xml

-properties:<properties-file>
Properties file to use for region start-up (-add)
-region:<region-name>
Region name (-add, -delete)
-regionfile:<region-startup-file-name>
Region start-up filename (-add)
-server:<machine>
Hostname of the system that will perform region start-up (-add)

Default : -server:localhost

-type:cics | jcl | jes
Type of region being defined. jcl and jes are synonymous (-add)
-usedb
Use the default SQL Server instance (-add, -delete)
-usedb:<database-server-instance>
Use the specified SQL Server instance (-add, -delete)

Examples

  1. Export all of the currently configured regions used by the Enterprise Server for .NET Administration UI on the local machine to regions.xml in the current directory
    seemmcconfig -export
  2. Export all of the currently configured regions used by the Enterprise Server for .NET Administration UI on the local machine to c:\mydir\myregions.xml
    seemmcconfig -export -out:c:\mydir\myregions.xml
  3. Import the region definitions from c:\mydir\myregions.xml to the configuration used by the Enterprise Server for .NET Administration UI on the local machine
    seemmcconfig -import -in:c:\mydir\myregions.xml
  4. Add the region definition for the CICS region named TEST. The region database will reside on the default SQL Server instance. The region start-up file associated with the region is named test.config and resides in the cross-region database
    seemmcconfig -add -region:TEST -type:cics -regionfile:crdb:test.config
  5. Delete the region definition for the region named TEST which resides on the localhost\SQLEXPRESS SQL Server instance
    seemmcconfig -delete -usedb:localhost\SQLEXPRESS -region:TEST
  6. List all region definitions that are configured for the Enterprise Server for .NET Administration UI on the local machine
    seemmcconfig -list