Skip to content

Latest commit

 

History

History
133 lines (98 loc) · 2.92 KB

File metadata and controls

133 lines (98 loc) · 2.92 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.IIS.PowerShell.Provider.dll-Help.xml
WebAdministration
12/27/2016
2.0.0
Set-WebGlobalModule

Set-WebGlobalModule

SYNOPSIS

Specifies configuration settings for an IIS module.

SYNTAX

Set-WebGlobalModule [-Name] <String> [-Precondition <String>] [-Image <String>] [-WhatIf] [-Confirm]
 [<CommonParameters>]

DESCRIPTION

The Set-WebGlobalModule cmdlet specifies configuration settings for an Internet Information Services (IIS) module.

EXAMPLES

Example 1: Change a property of a global module

IIS:\> Set-WebGlobalModule -Name "UriCacheModule" -Image "c:\test.dll"

This command changes the image name of the UriCacheModule to c:\test.dll.

PARAMETERS

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-Image

Specifies the path to a DLL image file for the module.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Name

Specifies the name of the module for which this cmdlet sets configuration settings.

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Precondition

Specifies a precondition for the module.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

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

INPUTS

OUTPUTS

NOTES

RELATED LINKS

Disable-WebGlobalModule

Enable-WebGlobalModule

Get-WebGlobalModule

New-WebGlobalModule

Remove-WebGlobalModule