workgroup

Why does MSMQ think I'm on a workgroup computer?

自作多情 提交于 2019-11-29 03:06:13
My computer is connected to a domain, but when I go to create a public queue: MessageQueue.Create(@".\testqueue"); I get this error: A workgroup installation computer does not support the operation. Why might MSMQ think I'm on a workgroup computer? John Breakwell 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 integration was not selected as a setup option AD integration was selected but failed to initialise; check event logs Yes, the workgroup name is

Why does MSMQ think I'm on a workgroup computer?

老子叫甜甜 提交于 2019-11-27 17:23:06
问题 My computer is connected to a domain, but when I go to create a public queue: MessageQueue.Create(@".\testqueue"); I get this error: A workgroup installation computer does not support the operation. Why might MSMQ think I'm on a workgroup computer? 回答1: 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 integration was not selected as a setup option AD

In C# how do I get the list of local computer names like what one gets viewing the Network in windows explorer

こ雲淡風輕ζ 提交于 2019-11-26 14:39:46
问题 There are a lot of questions about getting the name and IP addresses of the local machine and several about getting IP addresses of other machines on the LAN (not all answered correctly). This is different. In windows explorer if I select Network on the side bar I get a view of local machines on my LAN listed by machine name (in a windows workgroup, anyway). How do I get that same information programatically in C#? 回答1: You can try using the System.DirectoryServices namespace. var root = new