Starts a DWAS operation.
Syntax
Parameter Set: Default
Start-WebSitesOperation [-OperatorName] <String>
[-OperationName] <String> [-Parameters] <Hashtable>
[[-WaitForCompletion]] [[-Timeout] <TimeSpan> ]
[-PipelineVariable <String> ] [ <CommonParameters>]
The Start-WebSitesOperation cmdlet starts a DWAS operation. This cmdlet is commonly used for upgrading and repairing web site farms.
Specifies the name of the operation. For example: Repair, Upgrade.
Aliases |
none |
Required? |
true |
Position? |
2 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies the name of the operator.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies a hashtable that contains the parameters for the operation.
Aliases |
none |
Required? |
true |
Position? |
3 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies a variable to be used with the pipeline operator.
Aliases |
pv |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies the maximum time to wait for the operation to complete.
Aliases |
none |
Required? |
false |
Position? |
5 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Indicates that the cmdlet waits for the operation to complete.
Aliases |
none |
Required? |
false |
Position? |
4 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.
This command starts an upgrade operation on front-end servers.
PS C:\> Start-WebSitesOperation -OperatorName WFF -OperationName Upgrade @{"WebFarmName"="FrontEndServers"}
This command starts an upgrade operation on file servers.
PS C:\> Start-Operation -OperatorName WFF -OperationName Upgrade @{"WebFarmName"="FileServers"}
This command starts an upgrade operation on management servers.
PS C:\> Start-Operation -OperatorName WFF -OperationName Upgrade @{"WebFarmName"="ManagementServers"}
This command starts an upgrade operation on publisher servers.
PS C:\> Start-Operation -OperatorName WFF -OperationName Upgrade @{"WebFarmName"="PublisherServers"}
This command starts an upgrade operation on the server named Server01.
PS C:\> Start-Operation -OperatorName WFF -OperationName Upgrade @{"WebFarmName"="WorkerServers";ServerName="SERVER01"}
This command starts a repair operation on front-end servers.
PS C:\> Start-WebSitesOperation -OperatorName WFF -OperationName Repair @{"WebFarmName"="FrontEndServers"}