- Код: Выделить всё
Dim impersonationContext As System.Security.Principal.WindowsImpersonationContext
Dim currentWindowsIdentity As System.Security.Principal.WindowsIdentity
currentWindowsIdentity = CType(User.Identity, System.Security.Principal.WindowsIdentity)
impersonationContext = currentWindowsIdentity.Impersonate()
'Здесь то, что хочешь делать под учетной записью пользователя
impersonationContext.Undo()
C#
- Код: Выделить всё
System.Security.Principal.WindowsImpersonationContext impersonationContext;
impersonationContext =
((System.Security.Principal.WindowsIdentity)User.Identity).Impersonate();
// Здесь то, что хочешь делать под учетной записью пользователя
impersonationContext.Undo();