Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

Configuring all necessary MSMQ registry parameters saves you from including MSMQADM in the OS design. For information about registry settings, see MSMQ Registry Settings.

Although some registry settings are optional, the following settings must be set for MSMQ to run.

To provide a minimal MSMQ implementation, set the following in the registry.

Copy Code
[HKEY_LOCAL_MACHINE\Software\Microsoft\MSMQ\SimpleClient]
	"BaseDir"="\TEMP\MSMQ" ; or wherever you want to keep MSMQ
store
	"CEStartAtBoot"=DWORD:1 ; start MSMQ at boot time
	"DefaultQuota"=DWORD:300 ; limit on outgoing queues in
kilobytes
	"PingPort"=DWORD:0x00000DC7 ; 3527 – do not change this!
	"Port"=DWORD:0x00000709 ; 1801 – do not change this!
	"QueueManagerGUID"=HEX:... ; 16 bytes of QM GUID.
	This number must be unique, use standard GUID generation
algorithm
	 to obtain it.
	"CETrackNetwork"="Yes" ; not really required but highly advised

Without MSMQADM.EXE, you cannot dynamically start and stop the MSMQ service. However, if the CEStartAtBootvalue of the MSMQ registry entry is set to 0 (zero), MSMQ will not start at the next reboot time.

For more information about registry settings, see MSMQ Registry Settings.

See Also