English 中文(简体)
如何确定用户在众所周知的团体中作为每一个人的成员
原标题:How to determine membership of user in well-known-groups as Everyone

在我目前的工作中,我需要列举视窗中众所周知的群体的成员,作为每一个人、互动用户等。 我可以找到一些“根据我的看法”的定义,如何估计用户是每个人的成员,但很难为其他群体提供这种信息。 我来过

问题回答

每个人、互动用户、认证人 用户不是真正的群体。 它们是在你身边的SIDs,但不是他们的成员。

如果您是互动的,那么,如果你真是真的,那么你就会被遗忘。 因此,同一用户可以通过网络连接,其象征性的用户不会有互动用户。 但是,如果他们通过终端服务登录,他们便有互动用户。

你们可以从这个例子中看到,这些假群不是用户的属性,而是“日志”会议。 因此,你不能用这一特性来列举用户。

http://www.codeproject.com/Articles/10042/The-Windows-Access-Control-Model-Part-1”rel=“nofollow”>this URL。 这实际上是关于SID、团体、成员等的文章的精干,C++有样本。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?