Arquivo de tag copia de sombra

Shadow Copy Due Long Filename – Nome do Arquivo Muito Longo

Quando estiver com dificuldades para recuperar um cópia de sompra porque o nome do arquivo está muito longo.

 

Siga esses passos

 

I had the exact same problem in Server 2008 R2 and this is how I solved it:

  1. Right click on the folder you’re trying to restore from shadow copy and chose Previous Versions. Chose a date and click on Open.
  2. Right click on any file or folder within the previous folder and chose Properties. On the General tab copy what’s shown in ‘location’, e.g.: \\localhost\D$\@GMT-2011.09.20-06.00.04\_Data
  3. Open cmd.exe and type in:
    subst X: \\localhost\D$\@GMT-2011.09.20-06.00.04\_Data
    
  4. Open PowerShell and use robocopy to copy content of X: e.g.:
    robocopy Z: D:\Folder\ /E /COPYALL
    
  5. Check that all files have been copied.
  6. When finished type subst X: /D in cmd

 

From: https://serverfault.com/questions/285997/unable-to-restore-from-shadow-copy-due-to-long-filename#:~:text=The%20source%20file%20name(s,s)%20before%20attempting%20this%20operation.