app.mcafee.com
Open in
urlscan Pro
44.232.100.52
Public Scan
URL:
https://app.mcafee.com/activationwizard/Media/_Common/Scripts/app/RefCallSupport.vbs
Submission: On September 23 via api from DE — Scanned from US
Submission: On September 23 via api from DE — Scanned from US
Form analysis
0 forms found in the DOMText Content
'=============================================================================== ' VB script support for application calls using reference as parameters '=============================================================================== '------------------------------------------------- ' GetApplicationLIst '------------------------------------------------- Function GetApplicationList(clientDb) Dim appList on error resume next call clientDb.GetSubInfoAppList(appList) GetApplicationList = appList End Function '------------------------------------------------ ' GetAppInfo(appInfo) '------------------------------------------------ Function GetAppInfo(appInfo) Dim allInfo on error resume next call appInfo.GetAllProperties(allInfo) GetAppInfo = allInfo End Function '------------------------------------------------ ' GetRegisteredUser '------------------------------------------------ Function GetRegisteredUser(subMgr, backend) Dim accoutnId on error resume next call subMgr.GetUserRegisteredForBackend(backend, accountId) GetRegisteredUser = accountId End Function