Update install scripts and readme.

This commit is contained in:
Jared Goodwin 2019-12-26 19:10:04 -08:00
parent 85f89591d4
commit 161e93a577
4 changed files with 4 additions and 8 deletions

View File

@ -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.

View File

@ -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/

View File

@ -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

View File

@ -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