Windows API - GetUserName

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows API - GetUserName相关的知识,希望对你有一定的参考价值。

 1 #include <stdio.h>
 2 #include <windows.h>
 3 
 4 #define INFO_BUFFER_SIZE 32767
 5 
 6 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
 7 {
 8     TCHAR  infoBuf[INFO_BUFFER_SIZE];
 9     DWORD  bufCharCount = INFO_BUFFER_SIZE;
10     if( !GetUserName( infoBuf, &bufCharCount ) )
11         {
12             MessageBox(NULL, TEXT("无法获得用户名"),TEXT("错误"),MB_ICONSTOP|MB_OK);
13         }
14     else
15         {
16             char istr[INFO_BUFFER_SIZE];
17             sprintf(istr,"欢迎使用本程序,当前用户名为:\r\n%s",infoBuf);
18             MessageBox(NULL,TEXT(istr),"MSG",MB_OK);
19         }
20     return 0;
21 }

 

以上是关于Windows API - GetUserName的主要内容,如果未能解决你的问题,请参考以下文章

C++ - 以管理员身份运行进程时的 GetUserName()

User.Identity.GetUserName()返回错误[重复]

如何在实现 Spring Data JPA AuditorAware 接口时获取 getUserPrincipal().getUserName()

VBA结合GetOject和GetUsername返回登录用户的实际名称而不是代码

IBM Worklight:WL.Client.getUserName 无法在身份验证后立即检索 userIdentity

3 windows环境与shell交互操作