This is a really neat project. But the website undersells it. It took me until reading the docs to understand that this is an alternative to many raw Windows utilities / PowerShell commands, which (to me) are notoriously hard to remember and have goofy capitalization.
Really, really great. But both the landing page and the About page desparately need a "quick to see" example of the project. I didn't even read past the first paragraph in the About page, to be honest. Make it prominent what the app is right away on the splash page.
Your examples aren't Powershell commands, they are Windows command line utilities and could be run from command prompt. Real Powershell commands are quite intuitive, support pipelines and are object driven. Give it some credit! For example:
Not only that, but aliases are also guessable as they are created using the same pattern, one or 2 letters for noun and usually 2 for verb: rjb Remove-Job, etsn Enter-Session, gc Get-Content, gps Get-Process (but also ps for historical and even more discovery resons)
In my book, anybody complaining about terseness of powershell knows 0 about it and should be treated as ignorant. Give me a random bash command and I will probably make it shorter in Powershell without any custom made mumbo jumbo.
In it you can see things like `groups` in `Show-Group` that can be used to show Windows groups you belong to, or typical linux commands for machine restarting in Shutdown.ps1 (halt, reboot...) and something I use zillion times a day:
function Enter-Parent { cd .. }
function Enter-GrandParent { cd ..\.. }
sal .. Enter-Parent
sal ... Enter-GrandParent
Aim of the project is probably to have more standardized syntax sugars rather then each person inventing their own...
For example:
Instead of Or, to enable Windows Biometrics: Instead of: Really, really great. But both the landing page and the About page desparately need a "quick to see" example of the project. I didn't even read past the first paragraph in the About page, to be honest. Make it prominent what the app is right away on the splash page.Edit: The new About page is much better!