New-WebGlobalModule
Creates a new IIS global module.
PowerShell
New-WebGlobalModule
[-Name] <String>
[-Image <String>]
[-Precondition <String>]
[-Force]
[<CommonParameters>]
Creates a new IIS global module.
PowerShell
IIS:\>New-WebGlobalModule -Name testGlobalModule -Image c:\test\test.dll
Adds a new module to theglobalModuleslist.
Forces the creation of the new module.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
The path to a DLL image (native modules only) for the new module.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
The name of the new module.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies any preconditions to be used for the new module.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |