New-WebGlobalModule

New-WebGlobalModule

Creates a new IIS global module.

Syntax

Parameter Set: Default
New-WebGlobalModule [-Name] <String> [-Force] [-Image <String> ] [-Precondition <String> ] [ <CommonParameters>]

Detailed Description

Creates a new IIS global module.

Parameters

-Force

Forces the creation of the new module.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Image<String>

The path to a DLL image (native modules only) for the new module.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-Name<String>

The name of the new module.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-Precondition<String>

Specifies any preconditions to be used for the new module.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (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 (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

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

Outputs

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

Examples

-------------- EXAMPLE 1: Adding a new module --------------

Adds a new module to theglobalModuleslist.

IIS:\>New-WebGlobalModule -Name testGlobalModule -Image c:\test\test.dll