This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Returns current logged user name.
Syntax
s = OS_GetUserName
Returns
String.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Restrictions
See also
Examples
Thanks to Abraxas for the following script example
USES "OS"
Dim sMsg As String
sMsg += "Computer Name" & $Tab & OS_GetComputerName & $CRLF
sMsg += "OS System Folder " & $Tab & OS_GetSystemDir & $CRLF
sMsg += "Temperary Folder " & $Tab & OS_GetTempDir & $CRLF
sMsg += "Current User Name" & $Tab & OS_GetUserName & $CRLF
sMsg += "Windows Directory" & $Tab & OS_GetWindowsDir & $CRLF
sMsg += "IE Version" & $Tab & OS_IEVersion & $CRLF
sMsg += "Windows Version" & $Tab & OS_WinVersionText & $CRLF
sMSG += "Running" & $Tab & $Tab
' I'm runing 32 bit windows and it returned 0 so i guessed how it worked.
If OS_IsWow64 = 0 Then
SMsg += "32 bit Windows" & $CRLF
Else
SMsg += "64 bit Windows" & $CRLF
End If
MSGBOX 0, sMsg