Skip to content

Commit b4855f7

Browse files
authored
Updated DeletePending to Remove-Pending to match standards (#412)
* Update and rename DeletePending.ps1 to Remove-Pending.ps1 * Update README.md Changed from delete to remove
1 parent f59830a commit b4855f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Discovered Accounts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Reporting top 100 Enabled, Privileged Discovered Accounts sorted by Username to
9595
Get-DiscoveredAccountsReport.ps1 -PVWAURL https://PAS.mydomain.com/PasswordVault -List -OnlyEnabledAccounts -OnlyPrivilegedAccounts -SortBy "UserName" -Limit 100 -CSVPath "C:\CyberArk\DiscoveredAccounts\Enabled_Privileged_August-2020.csv"
9696
```
9797

98-
# Delete Pending
98+
# Remove Pending
9999

100100
> **General**
101101
> - Uses REST API and can support PCLoud and v12.1 of PVWA and up.
@@ -106,7 +106,7 @@ Get-DiscoveredAccountsReport.ps1 -PVWAURL https://PAS.mydomain.com/PasswordVault
106106
The script will clear all pending accounts to allow them to be discovered again.
107107

108108
```powershell
109-
DeletePending.ps1 -PVWAURL <string> [-AuthType <string>] [-DisableSSLVerify] [-LogonToken <LogonToken>] [<CommonParameters>]
109+
Remove-Pending.ps1 -PVWAURL <string> [-AuthType <string>] [-DisableSSLVerify] [-LogonToken <LogonToken>] [<CommonParameters>]
110110
```
111111

112112
- PVWAURL

Discovered Accounts/DeletePending.ps1 renamed to Discovered Accounts/Remove-Pending.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,4 @@ try {
154154
Invoke-RestMethod -Uri $URL_Logoff -Method POST -Header $g_LogonHeader -ContentType "application/json" -TimeoutSec 2700 -ErrorAction Continue
155155
$global:g_LogonHeader = $null
156156
}
157-
}
157+
}

0 commit comments

Comments
 (0)