Remove-SilVMHost
Remove-SilVMHost
Removes hosts from the Software Inventory Logging Aggregator database.
Sintaxe
Parameter Set: Default
Remove-SilVMHost [-EndTime <DateTime> ] [-Force] [-StartTime <DateTime> ] [-VMHostName <String[]> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
Descrição detalhada
The Remove-SilVMHost cmdlet removes host names from the Software Inventory Logging Aggregator database and deletes host credentials from Credential Manager.
Parâmetros
-EndTime<DateTime>
Specifies the polling end date and time. This cmdlet purges the active list of hosts based on the value that this parameter specifies.
Aliases |
none |
Obrigatório? |
false |
Posição? |
named |
Valor padrão |
none |
Aceitar entrada de pipeline? |
false |
Aceitar caracteres curinga? |
false |
-Force
Força a execução do comando sem solicitar a confirmação do usuário.
Aliases |
none |
Obrigatório? |
false |
Posição? |
named |
Valor padrão |
none |
Aceitar entrada de pipeline? |
false |
Aceitar caracteres curinga? |
false |
-StartTime<DateTime>
Specifies the polling start date and time. This cmdlet purges the active list of hosts based on the value that this parameter specifies.
Aliases |
none |
Obrigatório? |
false |
Posição? |
named |
Valor padrão |
none |
Aceitar entrada de pipeline? |
false |
Aceitar caracteres curinga? |
false |
-VMHostName<String[]>
Specifies an array of virtual machine host names to remove.
Aliases |
none |
Obrigatório? |
false |
Posição? |
named |
Valor padrão |
none |
Aceitar entrada de pipeline? |
true(ByValue) |
Aceitar caracteres curinga? |
false |
-Confirm
Solicita confirmação antes de executar o cmdlet.
Obrigatório? |
false |
Posição? |
named |
Valor padrão |
false |
Aceitar entrada de pipeline? |
false |
Aceitar caracteres curinga? |
false |
-WhatIf
Mostra o que ocorreria se o cmdlet fosse executado. O cmdlet não é executado.
Obrigatório? |
false |
Posição? |
named |
Valor padrão |
false |
Aceitar entrada de pipeline? |
false |
Aceitar caracteres curinga? |
false |
<CommonParameters>
Esse cmdlet oferece suporte aos parâmetros comuns: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer e -OutVariable. Para obter mais informações, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Entradas
O tipo de entrada é o tipo dos objetos que você pode redirecionar para o cmdlet.
Saídas
O tipo de saída é o tipo de objeto que o cmdlet emite.
Exemplos
Example 1: Remove hosts and delete credentials
This command removes the host names Host01 and Host02 from the Software Inventory Logging Aggregator database and deletes the host credentials from Credential Manager.
PS C:\> Remove-SilVMHost -VMHostName "Host01","Host02"
Example 2: Remove hosts and delete credentials without confirmation
This command removes the host names Host01 and Host02 from the Software Inventory Logging Aggregator database and deletes the host credentials from Credential Manager. This command specifies the Force parameter. The cmdlet does not prompt you for confirmation.
PS C:\> Remove-SilVMHost -VMHostName "Host01","Host02" -Force
Example 3: Remove hosts after a specified time
This command removes the host names from the database after the specified date and time.
PS C:\> Remove-SilVMHost -StartTime "12/29/2014 11:00 AM"
Example 4: Remove hosts before a specified time
This command removes the host names from the database before the specified date and time.
PS C:\> Remove-SilVMHost -EndTime "12/29/2014 11:00 AM"
Example 5: Remove hosts that match a wildcard and delete credentials
This command removes host names that match the wildcard string a* from the database and deletes the host credentials from Credential Manager.
PS C:\> Remove-SilVMHost -VMHostName "a*"