GithubHelp home page GithubHelp logo

Update management about evlwatcher HOT 4 CLOSED

devnulli avatar devnulli commented on June 16, 2024
Update management

from evlwatcher.

Comments (4)

Sparticuz avatar Sparticuz commented on June 16, 2024 2

@shimuldn This is how I am managing updates for EvlWatcher. (Also how I install it initially across my domain) I put this script on my GPO->Computer Config->Windows Settings->Scripts->Startup and it checks if EvlWatcher is installed, and if it's out of date. To update EvlWatcher, I put the exe in the correct spot, then update the $version -eq 2.1.5.0 to be the correct version

$DefaultLogLocation = "C:\Windows\Logs\EvlWatcher.txt"
Start-Transcript -Path $DefaultLogLocation

Write-Host "Starting EvlWatcher Install"

If( -not(Test-Path "C:\Program Files (x86)\EvlWatcher" )) {
    Write-Host "EvlWatcher not installed, starting install process..."
    $params = @(
        '/S'
    )
    $p = Start-Process 'MYDOMAINSYSVOL\Software\EvlWatcher\EvlWatcher-v2.1.5-setup.exe' -ArgumentList $params -NoNewWindow -Wait -PassThru
    $p.ExitCode
    Write-Host "Done Installing EvlWatcher $($p.ExitCode)"
} else {
    Write-Host "EvlWatcher already installed, checking version"
    $version = (Get-ItemProperty "C:\Program Files (x86)\EvlWatcher\EvlWatcher.exe").VersionInfo.ProductVersion
    If( $version -eq 2.1.5.0) {
        Write-Host "The latest version of EvlWatcher is already installed, no changes have been made."
    } else {
        Write-Host "An outdated version of EvlWatcher is installed, updating..."
        $params = @(
            '/S'
        )
        $p = Start-Process '\\MYDOMAINSYSVOL\Software\EvlWatcher\EvlWatcher-v2.1.5-setup.exe' -ArgumentList $params -NoNewWindow -Wait -PassThru
        $p.ExitCode
        Write-Host "Done Updating EvlWatcher $($p.ExitCode)"
    }
}

Stop-Transcript

EDIT: That's powershell btw

from evlwatcher.

devnulli avatar devnulli commented on June 16, 2024

auto updates: i would rather not do that. right now, the service runs a localservice (not as localnetwork), meaning it can guarantee every admin, that it will never, under no circumstances communicate (external or internal) over the network.

maybe updating via the console app, that could be an option. - for example, when you open the console app, it tells you that there are update available an so on ... then replace the signed dlls with other signed dlls, directly from github. that, we could do

however, not in the close future - but lets keep it a feature request. - who knows 😁

from evlwatcher.

shimuldn avatar shimuldn commented on June 16, 2024

Auto-updates: Good point, I agree.

Yeah, who knows. Let's where the apps go!

from evlwatcher.

peyman47 avatar peyman47 commented on June 16, 2024

sql server port 1433 would be great if supported

from evlwatcher.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.