aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/windows/install-notepad++.ps1
blob: 17e86d27b6f441d7286809016f49bf6364389987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright (C) 2017 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

. "$PSScriptRoot\helpers.ps1"

# This script will install Notepad++

$version = "8.6.5"

$cpu_arch = Get-CpuArchitecture
switch ($cpu_arch) {
    arm64 {
        $arch = ".arm64"
        $sha1 = "eecb8a6b6ed3cb1e467d227b8b7751283c35434e"
        Break
    }
    x64 {
        $arch = ".x64"
        $sha1 = "a0bf3fb15015bc1fbcb819d9a9c61f4762f4a10f"
        Break
    }
    x86 {
        $arch = ""
        $sha1 = "ba940c6b526da1ce127f43b835b4d8c9d5c4b59c"
        Break
    }
    default {
        throw "Unknown architecture $cpu_arch"
    }
}

$filename_exe = "npp." + $version + ".Installer" + $arch + ".exe"
$url_cache = "https://ci-files01-hki.ci.qt.io/input/windows/" + $filename_exe
$url_official = "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v" + $version + "/" + $filename_exe
$nppPackage = "C:\Windows\Temp\npp-$version.exe"

Download $url_official $url_cache $nppPackage
Verify-Checksum $nppPackage $sha1
Run-Executable "$nppPackage" "/S"

Write-Host "Cleaning $nppPackage.."
Remove "$nppPackage"

Write-Output "Notepad++ = $version" >> ~\versions.txt

Write-Host "Disabling auto updates."
Rename-Item -Path "C:\Program Files\Notepad++\updater" -NewName "updater_disabled"