From 161e93a577bb2a24c1a0cfb6cc5e3089a7bf5711 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Thu, 26 Dec 2019 19:10:04 -0800 Subject: [PATCH] Update install scripts and readme. --- README.md | 4 ++++ Server/wwwroot/Downloads/Install-Linux-x64.sh | 4 ---- Server/wwwroot/Downloads/Install-Win10-x64.ps1 | 2 -- Server/wwwroot/Downloads/Install-Win10-x86.ps1 | 2 -- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0b7f439d..e50c930d 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ Public Server: https://tryremotely.lucency.co (not intended for production use) *Notice: Remotely is currently in maintenance mode and will likely stay in a more-or-less prototype state.* +## Client Prerequisites: +* Endpoint devices require the .NET Core runtime to be installed. + * Downlaod Link: https://dotnet.microsoft.com/download/dotnet-core/current/runtime + ## Build Instructions (Windows 10) The following steps will configure your Windows 10 machine for building the Remotely server and clients. * Install Visual Studio 2019. diff --git a/Server/wwwroot/Downloads/Install-Linux-x64.sh b/Server/wwwroot/Downloads/Install-Linux-x64.sh index d1a07287..3e979390 100644 --- a/Server/wwwroot/Downloads/Install-Linux-x64.sh +++ b/Server/wwwroot/Downloads/Install-Linux-x64.sh @@ -18,10 +18,6 @@ apt-get -y install libgdiplus apt-get -y install libxtst-dev apt-get -y install xclip -wget -q https://dot.net/v1/dotnet-install.sh -chmod +x dotnet-install.sh -sudo ./dotnet-install.sh --runtime dotnet - mkdir -p /usr/local/bin/Remotely/ cd /usr/local/bin/Remotely/ diff --git a/Server/wwwroot/Downloads/Install-Win10-x64.ps1 b/Server/wwwroot/Downloads/Install-Win10-x64.ps1 index 4f345d2b..cb0b179e 100644 --- a/Server/wwwroot/Downloads/Install-Win10-x64.ps1 +++ b/Server/wwwroot/Downloads/Install-Win10-x64.ps1 @@ -66,8 +66,6 @@ function Uninstall-Remotely { } function Install-Remotely { - Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile "$env:TEMP\dotnet-install.ps1" - &"$env:TEMP\dotnet-install.ps1" -runtime dotnet if ((Test-Path -Path "$InstallPath") -eq $true){ if ((Test-Path -Path "$InstallPath\ConnectionInfo.json") -eq $true){ $ConnectionInfo = Get-Content -Path "$InstallPath\ConnectionInfo.json" | ConvertFrom-Json diff --git a/Server/wwwroot/Downloads/Install-Win10-x86.ps1 b/Server/wwwroot/Downloads/Install-Win10-x86.ps1 index 181c9bbc..d76e9ad1 100644 --- a/Server/wwwroot/Downloads/Install-Win10-x86.ps1 +++ b/Server/wwwroot/Downloads/Install-Win10-x86.ps1 @@ -63,8 +63,6 @@ function Uninstall-Remotely { } function Install-Remotely { - Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile "$env:TEMP\dotnet-install.ps1" - &"$env:TEMP\dotnet-install.ps1" -runtime dotnet if ((Test-Path -Path "$InstallPath") -eq $true){ if ((Test-Path -Path "$InstallPath\ConnectionInfo.json") -eq $true){ $ConnectionInfo = Get-Content -Path "$InstallPath\ConnectionInfo.json" | ConvertFrom-Json