Not able to install vcredist

Unfortunatelly i am stucked, the following docker commands does not work anymore

#escape = `
FROM mcr.microsoft.com/dotnet/framework/runtime:4.8

SHELL [“powershell”, “-Command”, “$ErrorActionPreference = ‘Stop’; $ProgressPreference = ‘SilentlyContinue’; $verbosePreference=‘Continue’;”]

ADD http://download.microsoft.com/download/0/5/6/056dcda9-d667-4e27-8001-8a0c6971d6b1/vcredist_x64.exe vcredist_x64.exe
RUN Get-ChildItem -Path c:
RUN Start-Process -filepath C:\vcredist_x64.exe -ArgumentList “/install”, “/passive”, “/norestart”, “’/log c:\c.txt’” -PassThru | wait-process
RUN Get-ChildItem -Path c:
RUN Get-Content -Path c:\c.txt

File ist c:\c.txt is not created
Step 8/10 : RUN Get-Content -Path c:\c.txt
—> Running in 8b818b1b2c6b
Get-Content : Cannot find path ‘C:\c.txt’ because it does not exist.

I am not able anymore to install the vcredit, the log file is not created and also vcredist_x64.exe is not installed.
Can somebody please help ?