I'm writing a small C# (.NET 4) application that will run as a replacement for the user's "Shell" when logging in to Windows Server 2012. Amongst other things, I'd like to offer the user the chance to change the password of their own local account.
Using the following code ..
DirectoryEntry directory = new DirectoryEntry("WinNT://" + Environment.MachineName + ",computer");
DirectoryEntry userEntry = directory.Children.Find(username);
userEntry.Invoke("SetPassword", new object[] { newPassword });
userEntry.CommitChanges();
... works fine if the code is launched from an elevated command prompt. However, as the Shell replacement runs as a "normal" application, I get an
Access is denied
exception when the code runs, even if the user is set as a local administrator.
Is there any code or mechanisms I can use to programatically set the users own local account passwords without having to elevate? Or (and I'm aware this is maybe more a ServerFault question:) any way to run the "replacement shell" as an elevated process without having to disable UAC?
