Pathcheck: simple windows PATH utility banner

Pathcheck: simple windows PATH utility

3 devlogs
5h 17m 4s

Installing CLI tools on Windows often means extracting a zip to Program Files, updating PATH, and then finding out PowerShell still doesn't recognize the command. The PATH just hasn't loaded into your current shell yet.

Pathcheck solves this. R…

Installing CLI tools on Windows often means extracting a zip to Program Files, updating PATH, and then finding out PowerShell still doesn’t recognize the command. The PATH just hasn’t loaded into your current shell yet.

Pathcheck solves this. Run commands before they’ve loaded into your shell, locate executables instantly, and audit your PATH for duplicates, invalid entries, and security issues.

Demo Repository

Loading README...

Matthias

Wrote a simple readme and a MIT License,

Also I made this banner in figma, I think it looks good, tell me what you think about it :)

Attachment
0
Matthias

Added some cool features to the app, for example audit, a simple command to check for duplicates, invalid paths and potential vulnerabilities. Also unique, a simple command to get a raw list of all PATH entries without any duplicates. And a proper help command too.

Attachment
Attachment
Attachment
0
Matthias

Added core functionality. The Program now works mostly I just need fix some edge cases, add some more features and some QOL improvements, honestly the hardest part was getting the actual PATH var as you have to talk to the windows api directly to get all entries not just the loaded ones, while you can just do os.getenv(“path”) for jus the loaded ones.

Attachment
Attachment
0