tiny11builder
tiny11builder copied to clipboard
Failed cleanup of scratchdir, unable to delete directory
c:\scratchdir.... - Access is denied.
Had the same issue. On Windows: Run powershell/terminal as admin, then:
takeown /F "C:\scratchdir" /R /A
icacls "C:\scratchdir" /grant Administrators:F /T
Remove-Item -Path "C:\scratchdir" -Recurse -Force
Worked for me.
Had the same issue. On Windows: Run powershell/terminal as admin, then:
takeown /F "C:\scratchdir" /R /A
icacls "C:\scratchdir" /grant Administrators:F /T
Remove-Item -Path "C:\scratchdir" -Recurse -Force
Worked for me.
Thanks very much