ie static void Main(string[] args) { var thread = new Thread(WhoAmI); thread.Start(); } static void WhoAmI()
I have the following code, that should remove the access of users from a certain folder.Unfortunately it doesn\'t (the access rule remains in place).No exception is thrown.
I have some old code that we have to maintain in VB6.We need to add the ability for it to look up the current user\'s SID.Can anyone point me to some code that shows how to do that?Thanks in adva开发者