PyWin32 사용자 정보 얻기

Pywin32를 이용해서 현재 사용자 이름을 얻을 수 있습니다.


컴퓨터 이름

예제 - GetComputerName()

from win32api import GetComputerName

print(GetComputerName())
COMPUTERNAME

설정한 ‘컴퓨터 이름’을 출력합니다.



사용자 이름

예제 - GetUserName()

from win32api import GetUserName

print(GetUserName())
admin

현재 ‘사용자 이름’을 출력합니다.



이전글/다음글