I've got a Windows puzzle. Adobe leaves a little junk laying around in a few folders: BigTable, boost_interprocess, Crash Dumps, and Media Cache. Long ago a wrote a simple CMD line batch file to delete all of it, because it can grow to gigabytes over time. It's been working OK for a year or more.
That batch file started failing with the latest updates to Photoshop, specifically on the boost_interprocess folder. The cmd runs OK, reports no errors, but the files are not deleted. Yet they can be deleted manually with File explorer. The batch commands (run as admin) are:
takeown /f "C:\ProgramData\boost_interprocess" /r /d y
icacls "C:\ProgramData\boost_interprocess" /grant Administrators:F /t
del /F /Q "C:\ProgramData\boost_interprocess\*.*"
I just added the takedown and icacls commands when the del cmd started failing because Google gave that hint. When I look at the properties for the boost_interprocess folder there is nothing unusual. Identical to other folders that delete OK. So, any Windows gurus that can help? Photoshop must have started making some mystery setting on the folder when it creates it.
That batch file started failing with the latest updates to Photoshop, specifically on the boost_interprocess folder. The cmd runs OK, reports no errors, but the files are not deleted. Yet they can be deleted manually with File explorer. The batch commands (run as admin) are:
takeown /f "C:\ProgramData\boost_interprocess" /r /d y
icacls "C:\ProgramData\boost_interprocess" /grant Administrators:F /t
del /F /Q "C:\ProgramData\boost_interprocess\*.*"
I just added the takedown and icacls commands when the del cmd started failing because Google gave that hint. When I look at the properties for the boost_interprocess folder there is nothing unusual. Identical to other folders that delete OK. So, any Windows gurus that can help? Photoshop must have started making some mystery setting on the folder when it creates it.