Skip to content

Enable AvmOnTelByIndex

Gincules edited this page Apr 4, 2023 · 1 revision

Enable-AvmOnTelByIndex

Synopsis

Action: SetEnableByIndex
Available on: ✅ FRITZ!Box / 🚫 FRITZ!Repeater
Status: ✅
Remote access: ✅
Required rights: ☎️

Description

This function is used to trigger the telephone book synchronization manually. The synchronization starts if switching from false to true. After enabling, the synchronization is automatically started periodically once within 24 hours.
All accounts are triggered to check for updates on COMS by invoking this action. If the revision has not increased, no synchronization will be made.

Input:

Data type Variable Example or Description
Boolean NewEnable 0
Ushort NewIndex 0

Output:

Data type Variable Example
String u urn:dslforum-org:service:X_AVM-DE_OnTel:1

Syntax

Enable-AvmOnTelByIndex
    [-Insecure]
    [-RemoteAccess]
    [-Url <String>]
    [-Port <Ushort>]
    [-Credential <PSCredential>]
    [-NewEnable <Boolean>]
    [-NewIndex  <Ushort>]

Examples

Example 1

This example describes how to run the command using a valid certificate and remote access.

[PSCredential]$Credential = Import-Clixml -Path "${env:APPDATA}\PScred\avmtools-credential.xml"

$splatParameters = @{
    RemoteAccess = $true
    Url = "https://myfritzaddress12.myfritz.net"
    Port = 443
    Credential = $Credential
    NewEnable = 0
    NewIndex = 0
}

Enable-AvmOnTelByIndex @splatParameters

Example 2

This example describes how to run the command using local connection with a valid certificate.

[PSCredential]$Credential = Import-Clixml -Path "${env:APPDATA}\PScred\avmtools-credential.xml"

$splatParameters = @{
    Url = "https://fritz.box"
    Port = 49443
    Credential = $Credential
    NewEnable = 0
    NewIndex = 0
}

Enable-AvmOnTelByIndex @splatParameters

IP address can be used instead of DNS name.

[PSCredential]$Credential = Import-Clixml -Path "${env:APPDATA}\PScred\avmtools-credential.xml"

$splatParameters = @{
    Url = "https://192.168.178.1"
    Port = 49443
    Credential = $Credential
    NewEnable = 0
    NewIndex = 0
}

Enable-AvmOnTelByIndex @splatParameters

Example 3

This example describes how to run the command using local connection without a valid certificate.

[PSCredential]$Credential = Import-Clixml -Path "${env:APPDATA}\PScred\avmtools-credential.xml"

$splatParameters = @{
    Insecure = $true
    Url = "http://fritz.box"
    Port = 49000
    Credential = $Credential
    NewEnable = 0
    NewIndex = 0
}

Enable-AvmOnTelByIndex @splatParameters

IP address can be used instead of DNS name.

[PSCredential]$Credential = Import-Clixml -Path "${env:APPDATA}\PScred\avmtools-credential.xml"

$splatParameters = @{
    Insecure = $true
    Url = "http://192.168.178.1"
    Port = 49000
    Credential = $Credential
    NewEnable = 0
    NewIndex = 0
}

Enable-AvmOnTelByIndex @splatParameters
Clone this wiki locally