Skip to content

Net\_GetAdapterInfo

VB Scripting Library > OSD Scripting Library > Network functions (OSD)

Detects the default gateway for the primary network adapter, and updates the value in the following registry key.
”HKLM\SOFTWARE\CapaSystems\CapaInstaller\Client\Inv\DefaultGateway”

No arguments provided.

Boolean, TRUE if function completed successfully.

The following example detects the default gateway for the network, and displays it to the user.

Private Function IncludeScript(sScriptFile)
'...
End Function
'Begin
bStatus=True
If bStatus Then bStatus=IncludeScript("customlib.cis")
If bStatus Then bStatus=IncludeLibrary("Capalib.cin")
If bStatus Then bStatus=IncludeLibrary("Osdlib.cin")
If bStatus Then bStatus=Job_Start("WS","Script Name","1.0","ScriptName.log","INSTALL")
If bStatus Then bStatus=OSD_Initialize()
If bStatus Then bStatus=Net_GetAdapterInfo()
If bStatus Then bStatus=Reg_GetString("HKLM","SOFTWARE\CapaSystems\CapaInstaller\Client\Inv","DefaultGateway",false)
If bStatus Then bStatus=Dialog_ShowInformation("Your default gateway is: " & gsValue)
Job_End(bStatus)
'End main

Scripting Guidelines, Dialog_ShowInformation