<# .SYNOPSIS Publishes the Remotely clients. .DESCRIPTION Publishes the Remotely clients. To deploy the server, supply the following arguments: -rid win10-x64 -outdir path\to\dir -hostname https://mysite.mydomain.com .COPYRIGHT Copyright © 2019 Translucency Software. All rights reserved. .EXAMPLE Run it from the Utilities folder (located in the solution directory). Or run "powershell -f PublishClients.ps1 -rid win10-x64 -outdir path\to\dir -hostname https://mysite.mydomain.com #> $ErrorActionPreference = "Stop" $Year = (Get-Date).Year.ToString() $Month = (Get-Date).Month.ToString().PadLeft(2, "0") $Day = (Get-Date).Day.ToString().PadLeft(2, "0") $Hour = (Get-Date).Hour.ToString().PadLeft(2, "0") $Minute = (Get-Date).Minute.ToString().PadLeft(2, "0") $CurrentVersion = "$Year.$Month.$Day.$Hour$Minute" $OutDir = "" # RIDs are described here: https://docs.microsoft.com/en-us/dotnet/core/rid-catalog $RID = "" $Hostname = "" $MSBuildPath = (Get-ChildItem -Path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\" -Recurse -Filter "MSBuild.exe" -File)[0].FullName #region Functions function Replace-LineInFile($FilePath, $MatchPattern, $ReplaceLineWith, $MaxCount = -1){ [string[]]$Content = Get-Content -Path $FilePath $Count = 0 for ($i = 0; $i -lt $Content.Length; $i++) { if ($Content[$i] -ne $null -and $Content[$i].Contains($MatchPattern)) { $Content[$i] = $ReplaceLineWith $Count++ } if ($MaxCount -gt 0 -and $Count -ge $MaxCount) { break } } ($Content | Out-String).Trim() | Out-File -FilePath $FilePath -Force -Encoding utf8 } #endregion if ([string]::IsNullOrWhiteSpace($MSBuildPath) -or !(Test-Path -Path $MSBuildPath)) { Write-Host Write-Host "ERROR: Unable to find the path to MSBuild.exe." -ForegroundColor Red Write-Host pause return } for ($i = 0; $i -lt $args.Count; $i++) { $arg = $args[$i].ToString().ToLower() if ($arg.Contains("outdir")){ $OutDir = $args[$i+1] } elseif ($arg.Contains("rid")){ $RID = $args[$i+1] } elseif ($arg.Contains("hostname")){ $Hostname = $args[$i+1] } } $Root = (Get-Item -Path $PSScriptRoot).Parent.FullName Set-Location -Path $Root # Add Current Version file to root content folder for client update checks. Set-Content -Path "$Root\Server\CurrentVersion.txt" -Value $CurrentVersion.Trim() -Encoding UTF8 -Force # Update hostname. if ($Hostname.Length -gt 0) { Replace-LineInFile -FilePath "$Root\Desktop.Win\Desktop.Win.csproj" -MatchPattern "" -ReplaceLineWith "$($Hostname)/Downloads/WinDesktop/" -MaxCount 1 Replace-LineInFile -FilePath "$Root\Desktop.Win\Services\Config.cs" -MatchPattern "public string Host " -ReplaceLineWith "public string Host { get; set; } = `"$($Hostname)`";" -MaxCount 1 Replace-LineInFile -FilePath "$Root\Desktop.Unix\Services\Config.cs" -MatchPattern "public string Host " -ReplaceLineWith "public string Host { get; set; } = `"$($Hostname)`";" -MaxCount 1 } else { Write-Host "`nERROR: No hostname parameter was specified. Application auto-updates will default to the public test server. Please supply your server's hostname.`n" -ForegroundColor Red pause return; } # Clear publish folders. if ((Test-Path -Path "$Root\Agent\bin\Release\netcoreapp\win10-x64\publish") -eq $true) { Get-ChildItem -Path "$Root\Agent\bin\Release\netcoreapp3.0\win10-x64\publish" | Remove-Item -Force -Recurse } if ((Test-Path -Path "$Root\Agent\bin\Release\netcoreapp3.0\win10-x86\publish" ) -eq $true) { Get-ChildItem -Path "$Root\Agent\bin\Release\netcoreapp3.0\win10-x86\publish" | Remove-Item -Force -Recurse } if ((Test-Path -Path "$Root\Agent\bin\Release\netcoreapp3.0\linux-x64\publish") -eq $true) { Get-ChildItem -Path "$Root\Agent\bin\Release\netcoreapp3.0\linux-x64\publish" | Remove-Item -Force -Recurse } # Publish Core clients. dotnet publish /p:Version=$CurrentVersion /p:FileVersion=$CurrentVersion --runtime win10-x64 --configuration Release --output "$Root\Agent\bin\Release\netcoreapp3.0\win10-x64\publish" "$Root\Agent" dotnet publish /p:Version=$CurrentVersion /p:FileVersion=$CurrentVersion --runtime linux-x64 --configuration Release --output "$Root\Agent\bin\Release\netcoreapp3.0\linux-x64\publish" "$Root\Agent" dotnet publish /p:Version=$CurrentVersion /p:FileVersion=$CurrentVersion --runtime win10-x86 --configuration Release --output "$Root\Agent\bin\Release\netcoreapp3.0\win10-x86\publish" "$Root\Agent" New-Item -Path "$Root\Agent\bin\Release\netcoreapp3.0\win10-x64\publish\ScreenCast\" -ItemType Directory -Force New-Item -Path "$Root\Agent\bin\Release\netcoreapp3.0\win10-x86\publish\ScreenCast\" -ItemType Directory -Force New-Item -Path "$Root\Agent\bin\Release\netcoreapp3.0\linux-x64\publish\ScreenCast\" -ItemType Directory -Force # Publish Linux ScreenCaster dotnet publish /p:Version=$CurrentVersion /p:FileVersion=$CurrentVersion --runtime linux-x64 --configuration Release --output "$Root\Agent\bin\Release\netcoreapp3.0\linux-x64\publish\ScreenCast\" "$Root\ScreenCast.Linux\" # Publish Linux GUI App $PublishDir = "$Root\Desktop.Unix\bin\Release\netcoreapp3.0\linux-x64\publish\" dotnet publish /p:Version=$CurrentVersion /p:FileVersion=$CurrentVersion --runtime linux-x64 --configuration Release --output "$PublishDir" "$Root\Desktop.Unix\" # Compress Linux GUI App Compress-Archive -Path "$PublishDir\*" -DestinationPath "$PublishDir\Remotely_Desktop.Unix.zip" -CompressionLevel Optimal -Force while ((Test-Path -Path "$PublishDir\Remotely_Desktop.Unix.zip") -eq $false){ Start-Sleep -Seconds 1 } Move-Item -Path "$PublishDir\Remotely_Desktop.Unix.zip" -Destination "$Root\Server\wwwroot\Downloads\Remotely_Desktop.Unix.zip" -Force # Build .NET Framework ScreenCaster (32-bit) &"$MSBuildPath" "$Root\ScreenCast.Win" /t:Build /p:Configuration=Release /p:Platform=x86 # Copy 32-bit .NET Framework ScreenCaster to Agent output folder. Get-ChildItem -Path "$Root\ScreenCast.Win\bin\x86\Release\" -Exclude "*.xml" | Copy-Item -Destination ".\Agent\bin\Release\netcoreapp3.0\win10-x86\publish\ScreenCast\" -Force # Build .NET Framework ScreenCaster (64-bit) &"$MSBuildPath" "$Root\ScreenCast.Win" /t:Build /p:Configuration=Release /p:Platform=x64 # Copy 64-bit .NET Framework ScreenCaster to Agent output folder. Get-ChildItem -Path "$Root\ScreenCast.Win\bin\x64\Release\" -Exclude "*.xml" | Copy-Item -Destination ".\Agent\bin\Release\netcoreapp3.0\win10-x64\publish\ScreenCast\" -Force # Publish Windows GUI App $PublishDir = "$Root\Desktop.Win\bin\Release\app.publish" &"$MSBuildPath" "$Root\Desktop.Win" /t:Publish /p:Configuration=Release /p:Platform=AnyCPU # Copy to download folder. Get-ChildItem -Path "$Root\Server\wwwroot\Downloads\WinDesktop" | Remove-Item -Force -Recurse Get-ChildItem -Path "$PublishDir" | Move-Item -Destination "$Root\Server\wwwroot\Downloads\WinDesktop" -Force Rename-Item -Path "$Root\Server\wwwroot\Downloads\WinDesktop\setup.exe" -NewName "Remotely_Setup.exe" -Force # Compress Core clients. $PublishDir = "$Root\Agent\bin\Release\netcoreapp3.0\win10-x64\publish" Compress-Archive -Path "$PublishDir\*" -DestinationPath "$PublishDir\Remotely-Win10-x64.zip" -CompressionLevel Optimal -Force while ((Test-Path -Path "$PublishDir\Remotely-Win10-x64.zip") -eq $false){ Start-Sleep -Seconds 1 } Move-Item -Path "$PublishDir\Remotely-Win10-x64.zip" -Destination "$Root\Server\wwwroot\Downloads\Remotely-Win10-x64.zip" -Force $PublishDir = "$Root\Agent\bin\Release\netcoreapp3.0\win10-x86\publish" Compress-Archive -Path "$PublishDir\*" -DestinationPath "$PublishDir\Remotely-Win10-x86.zip" -CompressionLevel Optimal -Force while ((Test-Path -Path "$PublishDir\Remotely-Win10-x86.zip") -eq $false){ Start-Sleep -Seconds 1 } Move-Item -Path "$PublishDir\Remotely-Win10-x86.zip" -Destination "$Root\Server\wwwroot\Downloads\Remotely-Win10-x86.zip" -Force $PublishDir = "$Root\Agent\bin\Release\netcoreapp3.0\linux-x64\publish" Compress-Archive -Path "$PublishDir\*" -DestinationPath "$PublishDir\Remotely-Linux.zip" -CompressionLevel Optimal -Force while ((Test-Path -Path "$PublishDir\Remotely-Linux.zip") -eq $false){ Start-Sleep -Seconds 1 } Move-Item -Path "$PublishDir\Remotely-Linux.zip" -Destination "$Root\Server\wwwroot\Downloads\Remotely-Linux.zip" -Force if ($RID.Length -gt 0 -and $OutDir.Length -gt 0) { if ((Test-Path -Path $OutDir) -eq $false){ New-Item -Path $OutDir -ItemType Directory } dotnet publish /p:Version=$CurrentVersion /p:FileVersion=$CurrentVersion --runtime $RID --configuration Release --output $OutDir "$Root\Server\" } else { Write-Host "`r`nSkipping server deployment. Params -outdir and -rid not specified." -ForegroundColor DarkYellow }