[SOLVED] datastore recovery

@edwin_nl020 you just have to replace the "square characters" with ":" and the PBS should be able to read the folders again.
I guess, the filename encoding gets lost on the file share…
Thanks! That worked for me. I used the following command in the ct and vm directory:
Code:
find . -type d -name '**' | while read dir; do newdir=$(echo "$dir" | sed 's//:/g') mv "$dir" "$newdir" done