Set-NAVServerConfiguration

Set-NAVServerConfiguration

Configures settings for a Microsoft Dynamics NAV Server instance.

Syntax

Parameter Set: KeyValuePairSettings
Set-NAVServerConfiguration -KeyName <String> [-Element <String> ] [-KeyValue <String> ] [ <CommonParameters>]

Parameter Set: __AllParameterSets
Set-NAVServerConfiguration [-ServerInstance] <String> [ <CommonParameters>]

Detailed Description

Use the Set-NAVServerConfiguration cmdlet to configure settings for a Microsoft Dynamics NAV Server instance. Values are written directly to the configuration file for the instance (CustomSettings.config). New setting values do not take effect until you restart the server instance.

Parameters

-Element<String>

Specifies the navigation path from the root element to the appSettings section of the configuration document.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-KeyName<String>

The configuration key name. Examine the CustomSettings.config file to determine the correct key name.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-KeyValue<String>

The configuration key value. For more information about supported values, see "Configuring Microsoft Dynamics NAV Server" in the Developer and IT Pro Help. A version of this topic is available online at: https://go.microsoft.com/fwlink/?LinkID=163750.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-ServerInstance<String>

Specifies the name of a Microsoft Dynamics NAV Server instance. The default instance name is DynamicsNAV70. You can specify either the full name of an instance (such as MicrosoftDynamicsNavServer$myinstance) or the short name (such as myinstance).

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

True (ByValue, ByPropertyName)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • System.String

    You can pipe a string that contains a Microsoft Dynamics NAV Server instance name to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • None

    This cmdlet does not generate any output.

Examples

-------------------------- EXAMPLE 1 --------------------------

Description

-----------

In this example, the Set-NAVServerConfiguration cmdlet sets the value for the appSettings Key 'DatabaseServer' to 'DatabaseServer.Domain.Com' for a Microsoft Dynamics NAV Server instance named MyInstance.

C:\PS>Set-NAVServerConfiguration MyInstance -KeyName DatabaseServer -KeyValue DatabaseServer.Domain.Com