获取Windows用户C#

本文关键字:用户 Windows 获取 | 更新日期: 2023-09-27 18:19:56

我有一个WPF应用程序,它需要获取用户的Windows用户名。我正在使用以下代码行:

MessageBox.Show("Your username is:'n" + WindowsIdentity.GetCurrent().Name);

这在我的电脑和其他开发人员的电脑上运行良好,但对其他人来说,它会崩溃。我认为这是权限问题。错误如下:

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: notesformultipleproperties.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 51cb04a1
Problem Signature 04: PresentationFramework
Problem Signature 05: 4.0.0.0
Problem Signature 06: 504dc7da
Problem Signature 07: 7b4d
Problem Signature 08: 0
Problem Signature 09: System.Windows.Markup.XamlParse
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1033
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
C:'Windows'system32'en-US'erofflps.txt

无论用户拥有什么权限,我都可以允许这行代码运行吗?

获取Windows用户C#

Environment.UserName怎么样?它将返回"当前进程运行的用户名"。

您可以使用Environment.UserName而不是获取WindowsIdentity。这需要较少的权限,并且可能在没有您当前所需的提升权限的情况下工作。

这个问题有一个公认的答案:我如何获得登录用户';s窗口';在WPF应用程序中的凭据

Environment.UserName