We had working in Windows 2008 Server Enterprise 64 bits the Windows Server Backup and was working perfect. Then we made the upgrade to Windows 2008 Server Enterprise 64 bits R2 after tht when we want to create a backup it stops giving the error 2155347997. Trying to fix we did this first:
We ran the GetInvalidPathsv2.ps1 and only detect instances of "The service path contains spaces, the whole path needs to be enclosed using double quotes"
We have other server with Windows 2008 Enterprise NOT R2 and gives identical instances but Windows Server Backup works there.
Now what could be happening after the upgrade to Windows Server R2 why not run there? Before the update in Windows NOT R2 works fine just after the upgrade to R2 began the problem. Also we tried these 2 scripts running from a .bat without luck:
Takeown /f %windir%\winsxs\temp\PendingRenames /a icacls %windir%\winsxs\temp\PendingRenames /grant "NT AUTHORITY\SYSTEM:(RX)"icacls %windir%\winsxs\temp\PendingRenames /grant "NT Service\trustedinstaller:(F)"icacls %windir%\winsxs\temp\PendingRenames /grant BUILTIN\Users:(RX)Takeown /f %windir%\winsxs\filemaps\* /a icacls %windir%\winsxs\filemaps\*.* /grant "NT AUTHORITY\SYSTEM:(RX)"icacls %windir%\winsxs\filemaps\*.* /grant "NT Service\trustedinstaller:(F)"icacls %windir%\winsxs\filemaps\*.* /grant BUILTIN\Users:(RX)net stop cryptsvcnet start cryptsvc
and this other also:
REM Set ACLs correct for System WriterREM *************************************Takeown /f %windir%\winsxs\filemaps /aicacls %windir%\winsxs\filemaps /grant "NT AUTHORITY\SYSTEM:(RX)"icacls %windir%\winsxs\filemaps /grant "NT Service\trustedinstaller:(F)"icacls %windir%\winsxs\filemaps /grant "BUILTIN\Users:(RX)"icacls %windir%\winsxs\filemaps /grant "Administratoren:(RX)"Takeown /f %windir%\winsxs\filemaps\* /aicacls %windir%\winsxs\filemaps\*.* /grant "NT AUTHORITY\SYSTEM:(RX)"icacls %windir%\winsxs\filemaps\*.* /grant "NT Service\trustedinstaller:(F)"icacls %windir%\winsxs\filemaps\*.* /grant "BUILTIN\Users:(RX)"icacls %windir%\winsxs\filemaps\*.* /grant "Administrators:(RX)"Takeown /f %windir%\winsxs\temp\PendingRenames /aicacls %windir%\winsxs\temp\PendingRenames /grant "Administrators:(RX)"icacls %windir%\winsxs\temp\PendingRenames /grant "NT AUTHORITY\SYSTEM:(RX)"icacls %windir%\winsxs\temp\PendingRenames /grant "NT Service\trustedinstaller:(F)"icacls %windir%\winsxs\temp\PendingRenames /grant "BUILTIN\Users:(RX)"Takeown /f %windir%\winsxs\temp\PendingRenames\*.* /aicacls %windir%\winsxs\temp\PendingRenames\*.* /grant "Administrators:(RX)"icacls %windir%\winsxs\temp\PendingRenames\*.* /grant "NT AUTHORITY\SYSTEM:(RX)"icacls %windir%\winsxs\temp\PendingRenames\*.* /grant "NT Service\trustedinstaller:(F)"icacls %windir%\winsxs\temp\PendingRenames\*.* /grant "BUILTIN\Users:(RX)"REM Restart the Cryptographic ServicesREM **********************************net stop cryptsvc &;& net start cryptsvc