IBI-helpMe

ibihelpme_GetSystemInformationItems

Signatur

ibihelpme_GetSystemInformationItems(): string

Beschreibung

Gibt eine Liste der zu ermittelnden Systeminformationen zurück

Verfügbar ab API-Version

1.0.0

Parameter

Keine Parameter erforderlich

Rückgabewert

string

JSON-Array, welches die zu ermittelnden Systeminformationen enhält

[
	{
		"key":"ActiveDirectory.User.Mail", 
		"caption":"{%Strings.EmailCaption%}"
	}
,
...
,
	{
		"key":"Local.UserName", 
		"caption":"User name"
	}
]

Beispiel

JavaScript
var systemInformationItemsSerialized = window.external.ibihelpme_GetSystemInformationItems();
 
var systemInformationItems = JSON.parse(systemInformationItemsSerialized);
 
refreshSystemInformationItems(systemInformationItems);