Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGough committed May 2, 2023
2 parents d4878bf + e20456c commit 15a9338
Show file tree
Hide file tree
Showing 32 changed files with 173 additions and 163 deletions.
7 changes: 3 additions & 4 deletions Nevergreen/Apps/Get-8x8Work.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
$URL32,$URL64 = Get-Link -Uri 'https://support.8x8.com/cloud-phone-service/voice/work-desktop/download-8x8-work-for-desktop' -MatchProperty href -Pattern 'work-32-msi','work-64-msi'
$URL = Get-Link -Uri 'https://support.8x8.com/cloud-phone-service/voice/work-desktop/download-8x8-work-for-desktop' -MatchProperty href -Pattern '\.msi'

$Version32,$Version64 = $URL32,$URL64 | Get-Version -Pattern '((?:\d+\.)+\d+(?:-\d+)?)' -ReplaceWithDot
$Version = $URL | Get-Version -Pattern '((?:\d+\.)+\d+)'

New-NevergreenApp -Name '8x8 Work' -Version $Version32 -Uri $URL32 -Architecture 'x86' -Type 'Msi'
New-NevergreenApp -Name '8x8 Work' -Version $Version64 -Uri $URL64 -Architecture 'x64' -Type 'Msi'
New-NevergreenApp -Name '8x8 Work' -Version $Version -Uri $URL -Architecture 'x64' -Type 'msi'
1 change: 1 addition & 0 deletions Nevergreen/Apps/Get-AdobeAcrobatReader.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ $Platforms = @(
@{Architecture = 'x86'; Language = 'Neutral'; Pattern = 'AcroRdrDCUpd\d{8,12}\.msp'}
@{Architecture = 'x86'; Language = 'Multi'; Pattern = 'AcroRdrDCUpd\d{8,12}_MUI\.msp'}
@{Architecture = 'x64'; Language = 'Neutral'; Pattern = 'AcroRdrDCx64Upd\d{8,12}\.msp'}
@{Architecture = 'x64'; Language = 'Multi'; Pattern = 'AcroRdrDCx64Upd\d{8,12}_MUI\.msp'}
)

foreach ($Platform in $Platforms) {
Expand Down
4 changes: 2 additions & 2 deletions Nevergreen/Apps/Get-AdobeDigitalEditions.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
try {

$Version = Get-Link -Uri 'https://www.adobe.com/uk/solutions/ebook/digital-editions/download.html' -MatchProperty href -Pattern '\.exe$' -ReturnProperty outerHTML | Get-Version -Pattern '>((?:\d+\.)+\d+)'
$Version = Get-Link -Uri 'https://www.adobe.com/uk/solutions/ebook/digital-editions/download.html' -Headers @{"accept-language"="en-GB,en;q=0.9,en-US;q=0.8"} -MatchProperty href -Pattern '\.exe$' -ReturnProperty outerHTML | Get-Version -Pattern '>((?:\d+\.)+\d+)'

$URL = Get-Link -Uri 'https://www.adobe.com/uk/solutions/ebook/digital-editions/download.html' -MatchProperty href -Pattern '\.exe$'
$URL = Get-Link -Uri 'https://www.adobe.com/uk/solutions/ebook/digital-editions/download.html' -Headers @{"accept-language"="en-GB,en;q=0.9,en-US;q=0.8"} -MatchProperty href -Pattern '\.exe$'

New-NevergreenApp -Name 'Adobe Digital Editions' -Version $Version -Uri $URL -Architecture 'x86' -Type 'Exe'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ foreach ($MajorVersion in $MajorVersions) {

$Release | ForEach-Object {
$Version = ($_.version.openjdk_version.Replace('_','.').Replace('+','.') -Replace '-[a-z]','.') -Replace '^1\.8\.','8.'
New-NevergreenApp -Name "Eclipse Temeru Runtime $ImageType" -Version $Version -Uri $_.binary.installer.link -Architecture $Architecture -Type 'Msi'
New-NevergreenApp -Name "Eclipse Temeru Runtime $ImageType" -Version $Version -Uri $_.binary.package.link -Architecture $Architecture -Type 'Zip'
New-NevergreenApp -Name "Adoptium Temurin $ImageType" -Version $Version -Uri $_.binary.installer.link -Architecture $Architecture -Type 'Msi'
New-NevergreenApp -Name "Adoptium Temurin $ImageType" -Version $Version -Uri $_.binary.package.link -Architecture $Architecture -Type 'Zip'
}
}

Expand Down
13 changes: 0 additions & 13 deletions Nevergreen/Apps/Get-Anaconda.ps1

This file was deleted.

6 changes: 3 additions & 3 deletions Nevergreen/Apps/Get-CiscoWebex.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$Version = Get-Version -Uri 'https://help.webex.com/en-us/mqkve8/Webex-Release-Notes' -Pattern 'Version:\s((?:\d+\.)+(?:\d+))</p>'
$Version = Get-Version -Uri 'https://help.webex.com/en-us/article/mqkve8/Webex-App-%7C-Release-notes' -Pattern 'Windows[^\d]+((?:\d+\.)+(?:\d+))'

$URL32 = Get-Link -Uri 'https://help.webex.com/en-us/nw5p67g/Webex-Installation-and-Automatic-Upgrade' -MatchProperty href -Pattern 'Webex_x86\.msi'
$URL64 = Get-Link -Uri 'https://help.webex.com/en-us/nw5p67g/Webex-Installation-and-Automatic-Upgrade' -MatchProperty href -Pattern 'Webex\.msi'
$URL32 = Get-Link -Uri 'https://help.webex.com/en-us/article/nw5p67g/Webex-App-%7C-Installation-and-automatic-upgrade' -MatchProperty href -Pattern 'Webex_x86\.msi'
$URL64 = Get-Link -Uri 'https://help.webex.com/en-us/article/nw5p67g/Webex-App-%7C-Installation-and-automatic-upgrade' -MatchProperty href -Pattern 'Webex\.msi'

New-NevergreenApp -Name 'Cisco Webex' -Version $Version -Uri $URL32 -Architecture 'x86' -Type 'Msi'
New-NevergreenApp -Name 'Cisco Webex' -Version $Version -Uri $URL64 -Architecture 'x64' -Type 'Msi'
14 changes: 7 additions & 7 deletions Nevergreen/Apps/Get-FileOpenPlugin.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
$Apps = @(
@{Architecture = 'x64'; Type = 'EXE'; Pattern = '\.exe$' }
@{Architecture = 'x64'; Type = 'MSI'; Pattern = '64\.msi$' }
$Releases = @(
@{Architecture = 'Multi'; Type = 'exe'; Pattern = '\.exe$' }
@{Architecture = 'x64'; Type = 'msi'; Pattern = '64\.msi$' }
)

foreach ($App in $Apps) {
foreach ($Release in $Releases) {
try {
$URL = Get-Link -Uri 'https://plugin.fileopen.com/' -MatchProperty href -Pattern $App.Pattern -PrefixDomain
$Version = Get-Link -Uri 'https://plugin.fileopen.com/' -MatchProperty href -Pattern $App.Pattern -ReturnProperty outerHTML | Get-Version -Pattern '\[(\d+(?:\.\d+)*)\]'
New-NevergreenApp -Name 'FileOpen Plugin' -Version $Version -Uri $URL -Architecture $App.Architecture -Type $App.Type
$URL = Get-Link -Uri 'https://plugin.fileopen.com/' -MatchProperty href -Pattern $Release.Pattern -PrefixDomain -ErrorAction Stop
$Version = Get-Link -Uri 'https://plugin.fileopen.com/' -MatchProperty href -Pattern $Release.Pattern -ReturnProperty outerHTML -ErrorAction Stop | Get-Version -Pattern '\[(\d+(?:\.\d+)*)\]'
New-NevergreenApp -Name 'FileOpen Plugin' -Version $Version -Uri $URL -Architecture $Release.Architecture -Type $Release.Type
}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
Expand Down
16 changes: 5 additions & 11 deletions Nevergreen/Apps/Get-GoogleDrive.ps1
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
# Release notes are out of date so not releasing this just yet

try {
$Response = (Invoke-RestMethod -Uri 'https://update.googleapis.com/service/update2' -Method Post -DisableKeepAlive -Body '<?xml version="1.0" encoding="UTF-8"?><request protocol="3.0" updaterversion="1.3.36.82"><app appid="{6BBAE539-2232-434A-A4E5-9A33560C6283}"><updatecheck/></app></request>').response
$Version = $Response.app.updatecheck.manifest.version
$URL = @($Response.app.updatecheck.urls.url.codebase)[-1] + $Response.app.updatecheck.manifest.packages.package.name
$SHA256 = $Response.app.updatecheck.manifest.packages.package.hash_sha256

#$Version = Get-Version -Uri 'https://support.google.com/a/answer/7577057?hl=en' -Pattern 'Version ((?:\d+\.)+\d+)'

$Version = (Invoke-RestMethod -Uri 'https://update.googleapis.com/service/update2' -Method Post -DisableKeepAlive -Body '<?xml version="1.0" encoding="UTF-8"?><request protocol="3.0" updaterversion="1.3.36.82"><app appid="{6BBAE539-2232-434A-A4E5-9A33560C6283}"><updatecheck/></app></request>').response.app.updatecheck.urls.url.codebase | Select-Object -First 1 | Get-Version

$URL = 'https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe'


New-NevergreenApp -Name 'Google Drive' -Version $Version -Uri $URL -Architecture 'Multi' -Type 'Exe'

New-NevergreenApp -Name 'Google Drive' -Version $Version -Uri $URL -Architecture 'Multi' -Type 'Exe' -SHA256 $SHA256
}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
Expand Down
22 changes: 15 additions & 7 deletions Nevergreen/Apps/Get-JabraDirect.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
try {
$Version = Get-Version -Uri 'https://www.jabra.com/Support/release-notes/release-note-jabra-direct' -UserAgent 'Googlebot/2.1 (+http://www.google.com/bot.html)' -Pattern '((?:\d+\.)+\d+)<br>'
$URL = Get-Link -Uri 'https://www.jabra.com/software-and-services/jabra-direct' -MatchProperty href -Pattern '/Jabra.+\.exe$'
# Getting intermittent certificate errors from this URL. -SkipCertificateCheck on Invoke-WebRequest resolves it but that is PS7 only.
# Have seen up to 31 retries needed, so a 50 retry loop implemented!

New-NevergreenApp -Name 'Jabra Direct' -Version $Version -Uri $URL -Architecture 'Multi' -Type 'Exe'
$RetryCount = 50

for ($i = 0; $i -lt $RetryCount; $i++) {
try {
$Version = Get-Version -Uri 'https://www.jabra.com/Support/release-notes/release-note-jabra-direct' -UserAgent 'Googlebot/2.1 (+http://www.google.com/bot.html)' -Pattern '((?:\d+\.)+\d+)<br>' -ErrorAction Stop
$URL = Get-Link -Uri 'https://www.jabra.com/software-and-services/jabra-direct' -MatchProperty href -Pattern '/Jabra.+\.exe$' -ErrorAction Stop
New-NevergreenApp -Name 'Jabra Direct' -Version $Version -Uri $URL -Architecture 'Multi' -Type 'exe'
return
}
catch {
Write-Verbose "Attempt $($i+1) failed, retrying... $_"
}
}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
}
Write-Error $error[0]
8 changes: 4 additions & 4 deletions Nevergreen/Apps/Get-LibreOffice.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $Language = 'en-GB'
foreach ($Branch in $Branches) {

try {
$Version = Get-Version -Uri 'https://www.libreoffice.org/download/release-notes' -Pattern "LibreOffice ((?:\d+\.)+\d+)[^<]+$Branch"
$Version = Get-Version -Uri 'https://www.libreoffice.org/download/release-notes' -Pattern "LibreOffice ((?:\d+\.)+\d+)[^<]+$Branch" -ErrorAction Stop
}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
Expand All @@ -15,9 +15,9 @@ foreach ($Branch in $Branches) {
foreach ($Architecture in $Architectures) {

try {
$DownloadPage = Get-Link -Uri "https://www.libreoffice.org/download/download/?type=win-$Architecture&version=$Version&lang=$Language" -MatchProperty href -Pattern "$Version.+$($Architecture.Replace('86_',''))\.msi$"
$URL = (Get-Link -Uri $DownloadPage -MatchProperty href -Pattern "$Version.+$($Architecture.Replace('86_',''))\.msi$") -replace '^//','https://'
New-NevergreenApp -Name 'LibreOffice' -Version $Version -Uri $URL -Architecture $Architecture.Replace('86_','') -Type 'MSI' -Channel $Branch -Language 'Multi'
$DownloadPage = Get-Link -Uri "https://www.libreoffice.org/download/download-libreoffice/?type=win-$Architecture&version=$Version&lang=$Language" -MatchProperty href -Pattern "$Version[^`"]+$($Architecture.Substring($Architecture.Length-2,2))\.msi$" -ErrorAction Stop
$URL = (Get-Link -Uri $DownloadPage -MatchProperty href -Pattern "$Version[^`"]+$($Architecture.Substring($Architecture.Length-2,2))\.msi$" -ErrorAction Stop) -replace '^//','https://'
New-NevergreenApp -Name 'LibreOffice' -Version $Version -Uri $URL -Architecture $Architecture.Replace('86_','') -Type 'msi' -Channel $Branch -Language 'Multi'
}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
Expand Down
26 changes: 20 additions & 6 deletions Nevergreen/Apps/Get-MicrosoftOpenJDK.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
$URL11Zip,$URL11MSI,$URL17Zip,$URL17MSI = Get-Link -Uri 'https://docs.microsoft.com/en-gb/java/openjdk/download' -MatchProperty href -Pattern 'microsoft-jdk-11.+zip$','microsoft-jdk-11.+msi$','microsoft-jdk-17.+zip$','microsoft-jdk-17.+msi$'
$Version11,$Version17 = $URL11MSI,$URL17MSI | Get-Version
$Releases = @(
@{Architecture = 'x64'; Type = 'msi'; Pattern = 'microsoft-jdk-11.+x64\.msi$'}
@{Architecture = 'x64'; Type = 'zip'; Pattern = 'microsoft-jdk-11.+x64\.zip$'}
@{Architecture = 'ARM64'; Type = 'msi'; Pattern = 'microsoft-jdk-11.+aarch64\.msi$'}
@{Architecture = 'ARM64'; Type = 'zip'; Pattern = 'microsoft-jdk-11.+aarch64\.zip$'}
@{Architecture = 'x64'; Type = 'msi'; Pattern = 'microsoft-jdk-17.+x64\.msi$'}
@{Architecture = 'x64'; Type = 'zip'; Pattern = 'microsoft-jdk-17.+x64\.zip$'}
@{Architecture = 'ARM64'; Type = 'msi'; Pattern = 'microsoft-jdk-17.+aarch64\.msi$'}
@{Architecture = 'ARM64'; Type = 'zip'; Pattern = 'microsoft-jdk-17.+aarch64\.zip$'}
)

New-NevergreenApp -Name 'Microsoft OpenJDK' -Version $Version11 -Uri $URL11Zip -Architecture 'x64' -Type 'Zip'
New-NevergreenApp -Name 'Microsoft OpenJDK' -Version $Version11 -Uri $URL11MSI -Architecture 'x64' -Type 'MSI'
New-NevergreenApp -Name 'Microsoft OpenJDK' -Version $Version17 -Uri $URL17Zip -Architecture 'x64' -Type 'Zip'
New-NevergreenApp -Name 'Microsoft OpenJDK' -Version $Version17 -Uri $URL17MSI -Architecture 'x64' -Type 'MSI'
foreach ($Release in $Releases) {
try {
$URL = Get-Link -Uri 'https://docs.microsoft.com/en-gb/java/openjdk/download' -MatchProperty href -Pattern $Release.Pattern -ErrorAction Stop
$Version = $URL | Get-Version
New-NevergreenApp -Name 'Microsoft OpenJDK' -Version $Version -Uri $URL -Architecture $Release.Architecture -Type $Release.Type
}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
}
}
19 changes: 13 additions & 6 deletions Nevergreen/Apps/Get-MicrosoftWindowsADK.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
$Links = (Invoke-WebRequest 'https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install' -DisableKeepAlive -UseBasicParsing).Links

$Versions = @('1607','1703','1709','1803','1809','1903','1909','2004','20H2','21H1','21H2','22H1','22H2','23H1','23H2','24H1','24H2','25H1','25H2')
$URL = $Links | Where-Object outerHTML -match "Download the Windows ADK" | Select-Object -ExpandProperty href -First 1
if ($URL) {
New-NevergreenApp -Name 'Microsoft Windows ADK for Windows 11' -Version '22H2' -Uri $URL -Architecture 'x86' -Type 'Exe'
}

foreach ($Version in $Versions) {
$URL = $Links | Where-Object outerHTML -match "ADK for Windows 11" | Select-Object -ExpandProperty href -First 1
if ($URL) {
New-NevergreenApp -Name 'Microsoft Windows ADK for Windows 11' -Version '21H2' -Uri $URL -Architecture 'x86' -Type 'Exe'
}

$URL32 = $Links | Where-Object outerHTML -match "ADK for Windows 10, version $Version" | Select-Object -ExpandProperty href -First 1
$Versions = @('1607','1703','1709','1803','1809','1903','1909','2004')

if ($URL32) {
New-NevergreenApp -Name 'Microsoft Windows ADK' -Version $Version -Uri $URL32 -Architecture 'x86' -Type 'Exe'
foreach ($Version in $Versions) {
$URL = $Links | Where-Object outerHTML -match "ADK for Windows 10, version $Version" | Select-Object -ExpandProperty href -First 1
if ($URL) {
New-NevergreenApp -Name 'Microsoft Windows ADK for Windows 10' -Version $Version -Uri $URL -Architecture 'x86' -Type 'Exe'
}

}
12 changes: 12 additions & 0 deletions Nevergreen/Apps/Get-OpenVPNCommunity.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
$Version = Get-Version -Uri 'https://openvpn.net/community-downloads/' -Pattern 'OpenVPN ((?:\d+\.)+\d+\S*)'

$Releases = @(
@{Architecture = 'x86'; Type = 'Msi'; Pattern = 'x86\.msi$'}
@{Architecture = 'x64'; Type = 'Msi'; Pattern = 'amd64\.msi$'}
@{Architecture = 'ARM64'; Type = 'Msi'; Pattern = 'arm64\.msi$'}
)

foreach ($Release in $Releases) {
$URL = Get-Link -Uri 'https://openvpn.net/community-downloads/' -MatchProperty href -Pattern $Release.Pattern
New-NevergreenApp -Name 'OpenVPNCommunity' -Version $Version -Uri $URL -Architecture $Release.Architecture -Type $Release.Type
}
11 changes: 11 additions & 0 deletions Nevergreen/Apps/Get-OpenVPNConnect.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$Version = Get-Version -Uri 'https://openvpn.net/vpn-server-resources/openvpn-connect-for-windows-change-log/' -Pattern 'Release notes for ((?:\d+\.)+\d+)'

$Releases = @(
@{Architecture = 'x86'; Type = 'Msi'; Pattern = 'x86\.msi$'}
@{Architecture = 'x64'; Type = 'Msi'; Pattern = 'windows\.msi$'}
)

foreach ($Release in $Releases) {
$URL = Get-Link -Uri 'https://openvpn.net/client-connect-vpn-for-windows/' -MatchProperty href -Pattern $Release.Pattern
New-NevergreenApp -Name 'OpenVPNConnect' -Version $Version -Uri $URL -Architecture $Release.Architecture -Type $Release.Type
}
11 changes: 9 additions & 2 deletions Nevergreen/Apps/Get-Opera.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ $Architectures = @('x64','i386')
foreach ($Architecture in $Architectures) {
try {

$Redirect = (Resolve-Uri -Uri "https://download.opera.com/download/get/?partner=www&opsys=Windows&download_url=&arch=$Architecture").Uri
$Response = Invoke-WebRequest -Uri "https://download.opera.com/download/get/?partner=www&opsys=Windows&download_url=&arch=$Architecture" -UseBasicParsing

if ($Redirect -match 'id=(\d+)') {
if ($IsCoreCLR) {
$Redirect = $Response.BaseResponse.RequestMessage.RequestUri.AbsoluteUri
}
else {
$Redirect = $Response.BaseResponse.ResponseUri.AbsoluteUri
}

if ($Redirect -match 'id%3D(\d+)') {
$URL = (Resolve-Uri -Uri "https://download.opera.com/download/get/?id=$($matches[1])&nothanks=yes").Uri
$Version = $URL | Get-Version
if ($Architecture -eq 'i386') { $Architecture = 'x86'}
Expand Down
6 changes: 6 additions & 0 deletions Nevergreen/Apps/Get-PingIdentityPingID.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$Response = Invoke-RestMethod 'https://docs.pingidentity.com/api/khub/maps/v6hqiVhowIDI52XNglkuRw/pages' -DisableKeepAlive
$Version = (($Response.paginatedToc | Where-Object title -eq 'Release Notes').children | Where-Object title -eq 'PingID desktop app release notes').children[0].title | Get-Version

$URL = Get-Link -Uri 'https://www.pingidentity.com/en/resources/downloads/pingid.html' -MatchProperty outerHTML -Pattern 'download for windows'

New-NevergreenApp -Name 'PingID' -Version $Version -Uri $URL -Architecture 'x86' -Type 'Exe'
21 changes: 12 additions & 9 deletions Nevergreen/Apps/Get-Python.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
try {
$SupportedVersions = @('3.10','3.11')

$URL64 = Get-Link -Uri 'https://www.python.org/downloads/windows/' -MatchProperty href -Pattern 'python-((?:\d+\.)+\d+)-amd64\.exe$'
$Version = $URL64 | Get-Version
New-NevergreenApp -Name 'Python' -Version $Version -Uri $URL64 -Architecture 'x64' -Type 'Exe'
$Suffixes = @{x86 = '.exe'; x64 = '-amd64.exe'; ARM64 = '-arm64.exe'}

$URL32 = Get-Link -Uri 'https://www.python.org/downloads/windows/' -MatchProperty href -Pattern 'python-((?:\d+\.)+\d+)\.exe$'
New-NevergreenApp -Name 'Python' -Version $Version -Uri $URL32 -Architecture 'x86' -Type 'Exe'
foreach ($SupportedVersion in $SupportedVersions) {

foreach ($Platform in $Suffixes.keys) {

$URL = Get-Link -Uri 'https://www.python.org/downloads/windows/' -MatchProperty href -Pattern "python-($([RegEx]::Escape($SupportedVersion))\.\d+)$([RegEx]::Escape($Suffixes[$Platform]))$"
if ($URL) {
$Version = $URL | Get-Version
New-NevergreenApp -Name "Python $SupportedVersion" -Version $Version -Uri $URL -Architecture $Platform -Type 'Exe'
}
}

}
catch {
Write-Error "$($MyInvocation.MyCommand): $($_.Exception.Message)"
}
21 changes: 0 additions & 21 deletions Nevergreen/Apps/Get-RizonesoftNotepad3.ps1

This file was deleted.

Loading

0 comments on commit 15a9338

Please sign in to comment.