Unfortunately no support from microsoft for this issue. I have since resolved this by writing a visual basic app to automatically delete the old files, and rename the files with the '-DEKSTOP-7CC49LB' extension. Here is the code if someone else runs into the same problem:
Public Class Form1
Dim CopyCtr As Long
Private Sub BtnRename_Click(sender As Object, e As EventArgs) Handles BtnRename.Click
Call LoopAllSubFolders("C:\Users\koen\Downloads")
TxtBox.Text = CopyCtr & " copies found and renamed"
End Sub
Sub LoopAllSubFolders(ByVal folderPath As String)
Dim fileName As String
Dim fullFilePath As String
Dim fullFilePathToDelete As String
Dim newFileName As String
Dim numFolders As Long
Dim folders() As String
Dim i As Long
If folderPath.PadRight(1) <> "" Then
folderPath &= ""
End If
fileName = Dir(folderPath & "*.*", vbDirectory)
While Len(fileName) <> 0
If fileName.PadLeft(1) <> "." Then
fullFilePath = folderPath & fileName
If (GetAttr(fullFilePath) And vbDirectory) = vbDirectory Then
ReDim Preserve folders(numFolders)
folders(numFolders) = fullFilePath
numFolders += 1
Else
Debug.Print(fullFilePath)
If InStr(fileName, "-DESKTOP-7CC49LB") Then
newFileName = Replace(fileName, "-DESKTOP-7CC49LB", "")
fullFilePathToDelete = folderPath & newFileName
My.Computer.FileSystem.DeleteFile(fullFilePathToDelete)
My.Computer.FileSystem.RenameFile(fullFilePath, newFileName)
CopyCtr += 1
End If
End If
End If
fileName = Dir()
End While
For i = 0 To numFolders - 1
LoopAllSubFolders(folders(i))
Next i
End Sub
End Class
This worked perfectly and I can now access all my projects again.