Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

6,311

Downloads of v 1.10:

47

Last Update:

28 Mar 2020

Package Maintainer(s):

Software Author(s):

  • Johan Geluk

Tags:

foss password security

pass-winmenu

This is not the latest version of pass-winmenu available.

  • 1
  • 2
  • 3

1.10 | Updated: 28 Mar 2020

Downloads:

6,311

Downloads of v 1.10:

47

Maintainer(s):

Software Author(s):

  • Johan Geluk

pass-winmenu 1.10

This is not the latest version of pass-winmenu available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Failed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Package Approved

This package was approved as a trusted package on 11 Apr 2020.

WARNING

This package is unlisted and hidden from package listings.

Description

Pass-winmenu follows the philosophy of (and is compatible with) the Linux password manager pass, which defines an open standard for password management that's easy to extend and customise to your personal requirements.

Features

  • Cryptography is handled by GPG.
  • The directory structure for passwords is intuitive and allows you to organise your passwords with your file manager.
  • Because the passwords are simply stored in a directory tree, it's easy to synchronise your password store using any version control software of your choosing, giving you synchronisation, file history, and redundancy
  • The password files are always encrypted and can only be decrypted with your private GPG key, which is secured with a passphrase.

Package Parameters

  • /InstallDir - Installation location, by default $(Get-ToolsLocation)\pass-winmenu.
  • /PasswordStore - Location of the password store, by default $HOME\.password-store.
  • /GpgId - Email address of the GPG key to be used.

Notes

  • You need to have an existing GPG key. If not, the store will not work until you create one using gpg --gen-key.
  • If you use git to sync the passwords with multiple environments, you need to install it along with this package since git synchronization is not mandatory: cinst pass-winmenu git.

screenshot


legal\LICENSE.txt
Copyright (c) 2016 Johan Geluk

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
legal\VERIFICATION.txt
VERIFICATION

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Package can be verified like this:

1. Go to

   x32: https://github.com/geluk/pass-winmenu/releases/download/v1.10/pass-winmenu-nogpg.zip

   to download the zip file.

2. You can use one of the following methods to obtain the SHA256 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum32: 21EDA5D94799E1588A7FC2FF173E9A91C4F338AAC56E2FCF5669DD5AA60F8BF4

File 'license.txt' is obtained from:
   https://github.com/Baggykiin/pass-winmenu/blob/master/LICENCE
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$running = ps pass-winmenu -ea 0 | kill -PassThru

$pp = Get-PackageParameters
$installDir    = if ($pp.InstallDir ) { $pp.InstallDir } else { "$(Get-ToolsLocation)\pass-winmenu" }
$passwordStore = if ($pp.PasswordStore) { $pp.PasswordStore } else {  "$Home\.password-store" }

$packageArgs = @{
    PackageName    = 'pass-winmenu'
    FileFullPath   = gi $toolsPath\*.zip
    Destination    = $installDir
}

Get-ChocolateyUnzip @packageArgs
rm $toolsPath\*.zip -ea 0
cp $installDir\pass-winmenu\* $installDir -Recurse -Force
rm $installDir\pass-winmenu -Recurse -Force

$config = gc $installDir\pass-winmenu.yaml -Encoding UTF8
if ($pp.PasswordStore) { $config = $config -replace '^password-store: .+', "password-store: $passwordStore" }
$config | Set-Content $installDir\pass-winmenu.yaml -Encoding UTF8

if (!(Test-Path $passwordStore)) {
    Write-Host "Creating password store: $passwordStore"
    mkdir $passwordStore -ea 0 | Out-Null
}

if ($pp.GpgId) { 
    Write-Host "Setting up GpgId to $($pp.GpgId)"
    $pp.GpgId | Out-File -Encoding utf8 $passwordStore\.gpg-id 
}

if ($running) { start $installDir\pass-winmenu.exe }
tools\pass-winmenu-nogpg.zip
md5: A9BCC72FA0F9C0E8FCE1DA478BCBC286 | sha1: C0353E633A4FEB7C1FB3463294021D7E182BB8FB | sha256: 21EDA5D94799E1588A7FC2FF173E9A91C4F338AAC56E2FCF5669DD5AA60F8BF4 | sha512: A95E3826B73D171FD29D28633A134037214109AF54603A457BC406885239F742285E8657DDC1F593F4F23F689B1B1319A87B3BFBC66319C8E3585BC44F6C368A

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
pass-winmenu 1.13.1.20221018 528 Tuesday, October 18, 2022 Approved
pass-winmenu 1.13.1 76 Monday, October 17, 2022 Approved
pass-winmenu 1.13 329 Monday, March 21, 2022 Approved
pass-winmenu 1.12.1 291 Tuesday, October 12, 2021 Approved
pass-winmenu 1.12 172 Friday, September 3, 2021 Approved
pass-winmenu 1.11.1 397 Sunday, February 7, 2021 Approved
pass-winmenu 1.11 267 Wednesday, November 11, 2020 Approved
pass-winmenu 1.10.1 446 Thursday, April 9, 2020 Approved
pass-winmenu 1.9.1.20190612 604 Wednesday, June 12, 2019 Approved
pass-winmenu 1.9.1 166 Monday, June 10, 2019 Approved
pass-winmenu 1.9 367 Monday, January 28, 2019 Approved
pass-winmenu 1.8.1 309 Monday, November 5, 2018 Approved
pass-winmenu 1.8 223 Sunday, October 28, 2018 Approved
pass-winmenu 1.7.1 267 Sunday, August 26, 2018 Approved
pass-winmenu 1.7 366 Sunday, April 8, 2018 Approved
pass-winmenu 1.7-pre2 275 Monday, April 2, 2018 Approved
pass-winmenu 1.7-pre 288 Sunday, April 1, 2018 Approved
pass-winmenu 1.6.1 403 Friday, October 27, 2017 Approved
pass-winmenu 1.6 361 Saturday, September 16, 2017 Approved

Discussion for the pass-winmenu Package

Ground Rules:

  • This discussion is only about pass-winmenu and the pass-winmenu package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or pass-winmenu, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus