Skip to content

PowerShell Gallery release not updated past 0.60.4 #450

Description

@jagger

Summary

The PowerShell Gallery listing for Thycotic.SecretServer has not been updated past v0.60.4. The current release on GitHub is v0.62.0.

Users who install via Install-Module -Name Thycotic.SecretServer from PSGallery are silently getting an outdated module that is missing fixes and features shipped in 0.61.x and 0.62.0 (see CHANGELOG).

Workaround

Until PSGallery access is restored, install the latest version directly from the GitHub release:

# Pick a module path (CurrentUser scope shown; adjust as needed)
$moduleRoot = "$HOME/Documents/PowerShell/Modules/Thycotic.SecretServer/0.62.0"

New-Item -ItemType Directory -Path $moduleRoot -Force | Out-Null

# Download and extract the release zip
$zip = Join-Path $env:TEMP 'Thycotic.SecretServer.zip'
Invoke-WebRequest -Uri 'https://github.com/thycotic-ps/thycotic.secretserver/releases/download/v0.62.0/Thycotic.SecretServer.zip' -OutFile $zip
Expand-Archive -Path $zip -DestinationPath $moduleRoot -Force
Remove-Item $zip

# If PSGallery's outdated version is already installed, remove it first
Uninstall-Module -Name Thycotic.SecretServer -AllVersions -ErrorAction SilentlyContinue

Import-Module Thycotic.SecretServer
Get-Module Thycotic.SecretServer   # confirm 0.62.0

Verify the download against Thycotic.SecretServer_hash.txt from the v0.62.0 release page before importing.

Docs to update once PSGallery is restored

When this is resolved, the "not updated" warnings should be removed from:

Metadata

Metadata

Assignees

Labels

moduleissues/feature effecting module as a whole (e.g. standards, formatting, types)

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions