- IMS Knowledge Base
- Code Snippets
- FileBound
- 
        
        
      
        FileBound- Add Content
- Active Directory
- Administration
- Automation Processes
- Basic Search & Retrieval
- Capture
- Clipboard
- Connect
- Database
- Document Actions
- DocuSign
- E-Forms
- Enterprise Service
- Full Text Search
- General
- HelloSign
- Https
- Importer Pro
- Installation
- Licensing
- Maintenance
- Office 365
- Records Management
- Reports
- SAML
- Web Viewer
- Windows Viewer
- Workflow
 
- 
        
        
      
        Windows Settings
- 
        
        
      
        Scanners
- 
        
        
      
        Psigen
- 
        
        
      
        Code Snippets
- 
        
        
      
        PaperVision
Powershell to Delete Documents in a FileBound Workflow
The Powershell script below will delete documents in a divider named "Temp Divider". Use with caution.
function DeleteApplication() {
$Context.File.Documents.Fill()
$Context.File.Documents | ? { $_.Divider -eq "Temp Divider" } | % { $_.Delete() }
return "done"
}