Unable to install GitHub for Windows

前端 未结 7 1498
半阙折子戏
半阙折子戏 2021-02-04 10:05

I\'m trying to install github for windows when I received this error:

Application cannot be started. Contact the application vendor.

The error

7条回答
  •  野的像风
    2021-02-04 10:36

    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.

提交回复
热议问题