Questions tagged [mmc]

The Microsoft Management Console (MMC) is a component of Windows that provides an administrative interface for system configuration. It can be extended with _snap-ins_, which are COM or managed code components that provide the user interface for a particular administrative domain.

The Microsoft Management Console (MMC) is a Windows application used by administrators and power users to administer a Windows system. Administration of varying domains -- such as event logs or starting and stopping [Windows service]s -- can be done within the same console.

MMC hosts components called snap-ins. These are implemented Snap-ins are extensions to the MMC executable, which hosts them and provides a window frame into which they expose their user interfaces. Traditionally, snap-ins have been implemented as COM components, but in recent releases of Windows, support is provided for snap-ins written for the managed runtime.

181 questions
-1
votes
4 answers

Why do I always get an ArrayIndexOutOfBoundsException?

This code is taken from a common algorithms book. The book uses an array starting from 1 instead of 0 for m but starts from 0 for p. How do I solve it ?? These are the errors: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 6 at…
1 2 3
12
13