oemsetup.inf Driver File Contents (R57047.EXE)

[InstallOption] 
    Set Status  = STATUS_FAILED
    Set Option   = "AVMWAM"
    Set SrcDir   = $($2)
    Set AddCopy  = $($3)
    Set DoCopy   = $($4)
    Set DoConfig = $($5)
    Set LanguageList = ^(LanguagesSupported, 1)
    IfContains(i) $($0) NOT-IN $(LanguageList)
        Return STATUS_NOLANGUAGE
    EndIf
    Set OldDebugControl = $(!DebugOutputControl)

    Set-Subst LF = "\n"
    Read-Syms GeneralConstants
    Read-Syms DialogConstants$(!STF_LANGUAGE)
    IfStr(i) $(!NTN_Origination) == "NCPA"
        Set Continue = $(OK)
    EndIf

    Set MAXIMUM_ALLOWED = 33554432
    Set BaseKey = ""
    Set ECR_BaseKeyName = "HARDWARE\DEVICEMAP\SerialComm"

    OpenRegKey $(!REG_H_LOCAL) "" $(ECR_BaseKeyName) $(MAXIMUM_ALLOWED) BaseKey
    IfStr $(BaseKey) != ""
	Set ECR_KeyHandle = $(BaseKey)
	IfStr $(ECR_KeyHandle) != ""
    		Set TapiDeviceKey = $(ECR_KeyHandle)

    		Set NewValueList = { +
          		{AVMPORT00,     0,$(!REG_VT_SZ), "COM2"},+
          		{AVMPORT01,     0,$(!REG_VT_SZ), "COM5"}}

    		Shell $(UtilityInf), AddValueList, $(TapiDeviceKey), $(NewValueList)
    		IfInt $($ShellCode) != $(!SHELL_CODE_OK)
       			Shell "subroutn.inf" SetupMessage, $(!STF_LANGUAGE), "STATUS",  +
             			"Error settings values in registry"
    		EndIf
	EndIf
    	CloseRegKey $(BaseKey)
    Else
	Shell "subroutn.inf" SetupMessage, $(!STF_LANGUAGE), "STATUS",  +
      			"Error opening registry for "$(ECR_BaseKeyName)
    EndIf


    Set ECR_BaseKeyName = "Software\Microsoft\Windows NT\CurrentVersion\Ports"

    OpenRegKey $(!REG_H_LOCAL) "" $(ECR_BaseKeyName) $(MAXIMUM_ALLOWED) BaseKey
    IfStr $(BaseKey) != ""
	Set ECR_KeyHandle = $(BaseKey)
	IfStr $(ECR_KeyHandle) != ""
    		Set TapiDeviceKey = $(ECR_KeyHandle)

    		Set NewValueList = { +
          		{"COM2:",     0,$(!REG_VT_SZ), "115200,n,8,1"},+
          		{"COM5:",     0,$(!REG_VT_SZ), "115200,n,8,1"}}

    		Shell $(UtilityInf), AddValueList, $(TapiDeviceKey), $(NewValueList)
    		IfInt $($ShellCode) != $(!SHELL_CODE_OK)
       			Shell "subroutn.inf" SetupMessage, $(!STF_LANGUAGE), "STATUS",  +
             			"Error settings values in registry"
    		EndIf
	EndIf
    	CloseRegKey $(BaseKey)
    Else
	Shell "subroutn.inf" SetupMessage, $(!STF_LANGUAGE), "STATUS",  +
      			"Error opening registry for "$(ECR_BaseKeyName)
    EndIf

    Goto End    
NonFatalInfo = +
    Set Severity = STATUS
    Set CommonStatus = STATUS_USERCANCEL
    IfStr(i) $(Error) == ""
        Set Severity = NONFATAL
        Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
        IfInt $($ShellCode) != $(!SHELL_CODE_OK)
            GoTo ShellCodeError
        EndIf
        Set Error = $($R0)
    EndIf
    Shell $(SubRoutineInf) "NonFatalError", $(!STF_LANGUAGE), $(Severity), $(Error)
    IfInt $($ShellCode) != $(!SHELL_CODE_OK)
        GoTo ShellCodeError
    EndIf
    IfStr(i) $($R1) == "OK"
        GoTo $(From)
    EndIf
    GoTo End
FatalRegistry = +
    Shell $(UtilityInf) RegistryErrorString $(RegistryErrorIndex)
    IfInt $($ShellCode) != $(!SHELL_CODE_OK)
        GoTo ShellCodeError
    EndIF
    Set Error = $($R0)
    GoTo FatalError
FatalError = +
    IfStr(i) $(Error) == ""
        Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
        IfInt $($ShellCode) != $(!SHELL_CODE_OK)
            GoTo ShellCodeError
        EndIf
        Set Error = $($R0)
    EndIf
    Shell $(SubRoutineInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
    IfInt $($ShellCode) != $(!SHELL_CODE_OK)
        GoTo ShellCodeError
    EndIf
    GoTo SetFailed
ShellCodeError = +
    Set DlgType   = "MessageBox"
    Set STF_MB_TITLE  = $(ShellCodeErrorTitle)
    Set STF_MB_TEXT   = $(ShellCodeErrorText)
    Set STF_MB_TYPE   = 1
    Set STF_MB_ICON   = 3
    Set STF_MB_DEF    = 1
    UI Start "Error Message"
    GoTo SetFailed
SetFailed = +
    Set CommonStatus = STATUS_FAILED
    IfStr(i) $(OEM_ABANDON_ON) == TRUE
        Set OEM_ABANDON_ON = FALSE
        GoTo Abandon
    EndIf
    GoTo End
End = +
    Set !DebugOutputControl = $(OldDebugControl)
    Return $(CommonStatus)

    Exit


[Identify]
    Set Identifier  = NetAdapter
    Set Status      = STATUS_SUCCESSFUL
    Set Media       = #("Source Media Descriptions", 1, 1)
    Return $(Status) $(Identifier) $(Media)

[Source Media Descriptions]
    1 = "NDIS WAN Setup Disk #1"

[LanguagesSupported]
    ENG

[Date]
    Now = {} ? $(!LIBHANDLE) GetSystemDate

[PlatformsSupported]
    ISA
    EISA
    "Jazz-Internal Bus"

[Options]
    AVMWAN

[OptionsTextENG]
    AVMWAN = "AVM CAPI Port Driver for Windows NT (Dummy Inf File)"

[ReturnOptions]
    ;Set !G:DebugOutputControl = 1
    Debug-Output "########## avm NdisWan [ReturnOptions] ################"
    Set Status          = STATUS_FAILED
    Set OptionList      = {}
    Set OptionTextList  = {}
    Set LanguageList    = ^(LanguagesSupported, 1)
    IfContains(i) $($0) in $(LanguageList)
        GoTo CheckPlatforms
    EndIf
    Set Status = STATUS_NOLANGUAGE
    GoTo ExitReturnOptions
CheckPlatforms = +
    IfStr(i) $($1) == ""
        GoTo SetOptions
    EndIf
    Set PlatformList = ^(PlatformsSupported, 1)
    IfContains(i) $($1) in $(PlatformList)
        GoTo SetOptions
    EndIf
    Set Status = STATUS_NOTSUPPORTED
    GoTo ExitReturnOptions
SetOptions = +
    Set OptionList     = ^(Options, 1)
    Set OptionTextList = ^(OptionsText$($0), 1)
    Set Status         = STATUS_SUCCESSFUL
    GoTo ExitReturnOptions
ExitReturnOptions = +
    Debug-Output "avmwan: End of ReturnOptions !!"
    Return $(Status) $(OptionList) $(OptionTextList)

    Exit 

[GeneralConstants]
    MaxCountChannels          = 2
    ExitCodeOk                = 0
    ExitCodeCancel            = 1
    ExitCodeFatal             = 2
    RegistryErrorIndex        = NO_ERROR
    KeyProduct                = ""
    KeyParameters             = ""
    TRUE                      = 1
    FALSE                     = 0
    NoTitle                   = 0
    MAXIMUM_ALLOWED           = 33554432
    InfName                   = "OEMSETNT.INF"
    UtilityInf                = "UTILITY.INF"
    SubRoutineInf             = "SUBROUTN.INF"
    RasInf                    = "OEMNSVRA.INF"
    SoftwareType              = "driver"
    Manufacturer              = "AVM Berlin"
    ProductMajorVersion       = "1"
    ProductMinorVersion       = "0"
    ProductOpSupport          = 134
    ProductOpMinimum          = 4
    ProductSoftwareName       = "AVMWAN"
    ProductSoftwareImagePath  = "\SystemRoot\System32\drivers\AVMWAN.SYS"
    NetRuleSoftwareType       = "AVMWANSys AVMWANDriver"
    NetRuleSoftwareUse        = $(SoftwareType)
    NetRuleSoftwareBindForm   = """AVMWANSys"" yes no container"
    NetRuleSoftwareClass      = {"AVMWANDriver basic"}
    ProductHardwareName       = "AVMWAN"
    Msn                       = ""
    NetRuleHardwareBindForm   = " yes yes container"
    NetRuleHardwareAVMWANType = "AVMWAN AVMWANAdapter"
    NetRuleHardwareAVMWANClass= {"AVMWANAdapter basic"}
    BindableAVMWANTxt         = {"AVMWANDriver AVMWANAdapter non exclusive 100"}

    NetRuleHardwareType = "AVMWAN AVMWANAdapter"
    NetRuleHardwareClass= {"AVMWANAdapter basic"}
    BindableTxt         = {"AVMWANDriver AVMWANAdapter non exclusive 100"}

    KDriverST                 = "Auto"
    TapiMediaType             = "ISDN"
    ProductKeyName            = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"+
                                $(ProductSoftwareName)"\CurrentVersion"
    WinNTVersionKey           = $(!NTN_SoftwareBase)"\Microsoft\Windows NT\CurrentVersion"
    ProSerName                = "SYSTEM\CurrentControlSet\Services\"
    AvmnwAdapterKeyBegin      = "SYSTEM\CurrentControlSet\Services\"

[DialogConstantsENG]
    Help        = "&Help"
    Exit        = "Cancel"
    OK          = "OK"
    HelpContext = ""
    Continue    = "Continue"
    Cancel      = "Cancel"

[FileconstantsENG]
    ProCaption    = "Windows NT Setup"
    ProCancel     = "Cancel"
    ProCancelMsg  = "Windows NT Networking is not correctly installed. "+
                    "Are you sure you want to cancel copying files?"
    ProCancelCap  = "Network Setup Message"
    ProText1      = "Copying:"
    ProText2      = "To:"
    ProductSoftwareDescription      = "AVM NDIS WAN CAPI 2.0 Driver"
    ProductSoftwareDescriptionNT40  = "The NDIS WAN CAPI Driver registers to the COMMON-ISDN-API (CAPI 2.0). It features fast access to the Internet and online services."
    ProductSoftwareTitle            = "AVM NDIS WAN CAPI Driver"
    ProductHardwareAVMWANDescription= $(ProductSoftwareDescription)
    ProductHardwareAVMWANTitle      = $(ProductSoftwareTitle)

    ProductHardwareDescription= $(ProductSoftwareDescription)
    ProductHardwareTitle      = $(ProductSoftwareTitle)


Download Driver Pack

How To Update Drivers Manually

After your driver has been downloaded, follow these simple steps to install it.

  • Expand the archive file (if the download file is in zip or rar format).

  • If the expanded file has an .exe extension, double click it and follow the installation instructions.

  • Otherwise, open Device Manager by right-clicking the Start menu and selecting Device Manager.

  • Find the device and model you want to update in the device list.

  • Double-click on it to open the Properties dialog box.

  • From the Properties dialog box, select the Driver tab.

  • Click the Update Driver button, then follow the instructions.

Very important: You must reboot your system to ensure that any driver updates have taken effect.

For more help, visit our Driver Support section for step-by-step videos on how to install drivers for every file type.

server: ftp, load: 1.93