You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.EXAMPLE
Remove-Account -ID 125134
Deletes the account with ID 125134
.EXAMPLE
Get-Account 'OldAccount' | Remove-Account
Removes the account(s) with the name 'OldAccount'. This example shows how the pipeline input works. One thing to note is that because multiple accounts can have the same name, if you pipe Get-Account to Remove-Account, you may end up deleting multiple accounts.
Support ShouldProcess/ShouldContinue
The text was updated successfully, but these errors were encountered:
.SYNOPSIS
Deletes an account
.PARAMETER ID
The ID of the account to remove
.EXAMPLE
Remove-Account -ID 125134
Deletes the account with ID 125134
.EXAMPLE
Get-Account 'OldAccount' | Remove-Account
Removes the account(s) with the name 'OldAccount'. This example shows how the pipeline input works. One thing to note is that because multiple accounts can have the same name, if you pipe Get-Account to Remove-Account, you may end up deleting multiple accounts.
The text was updated successfully, but these errors were encountered: