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:
Summary
The PowerShell Gallery listing for
Thycotic.SecretServerhas not been updated past v0.60.4. The current release on GitHub is v0.62.0.Users who install via
Install-Module -Name Thycotic.SecretServerfrom 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:
Verify the download against
Thycotic.SecretServer_hash.txtfrom 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:
README.mddocs/getting_started/install.mddocs/README.md