I\'m trying to install github for windows when I received this error:
Application cannot be started. Contact the application vendor.
The error
I see answers here and understand that i did dumb thing. I just made small script that copied all tmp files during installation.
Made small Windows copygithub.cmd
file:
:loop
xcopy C:\Users\Stall\AppData\Local\Temp\Deployment C:\github /y /h /i /s
goto loop
Its just a copy in a loop
. Start it before install github. And close after you receive an error.
Once it get a fail, all files are erased. So i didn't want to miss any file. This copy is in infinity loop. So you should stop it after you got error.
It does not solve issue, but i received working github. That's what i wanted.