Windows explorer.One of my blue iris pcs ssd is 100% full.. whats the best solution people have found to delete files. There was nothing in the app data deepstack folder. Must be files somewhere else.. I cant even install software to search out the growing files. Haha. Any suggestions
Get-ChildItem -Path 'C:\Users\<USER>\AppData\Local\Temp\DeepStack' -Recurse -Force |
Where-Object {$_.LastWriteTime -lt (Get-Date).AddDays(-10)} |
Remove-Item -Force