本文介绍了为什么MSMQ认为我在工作组电脑上?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的电脑连接到一个域,但是当我去创建一个公共队列时:
My computer is connected to a domain, but when I go to create a public queue:
MessageQueue.Create(@".\testqueue");
我收到此错误:
为什么MSMQ认为我是在工作组计算机上?
Why might MSMQ think I'm on a workgroup computer?
推荐答案
作为域的一部分,是在AD集成模式下安装MSMQ的前提条件。
它不保证MSMQ IS安装在AD集成模式下。
如果以下情况,MSMQ将安装在工作组模式:
Being part of a domain is a pre-cursor for installing MSMQ in AD-integrated mode.It doesn't guarantee MSMQ IS installed in AD-integrated mode.MSMQ will install in workgroup mode if:
- 没有选择AD集成作为设置选项
- 选择AD集成,但未初始化;检查事件日志
是的,工作组名称在域成员情况下令人困惑。
Yes, the workgroup name is confusing in a domain member situation.
这篇关于为什么MSMQ认为我在工作组电脑上?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!