Justin Grote

Results 875 comments of Justin Grote

In thinking about this for my Keepass vault, there's nothing to stop me from supplying a `Get-KeepassVaultOptions` command or whatever that provides a strictly typed object that casts to a...

Same for me with pnpm. `pnpm test` works just fine, and my custom debug vscode task works just fine. I'm on windows. One thing I noticed is that it does...

While not ideal, it's a reasonable compromise, thanks @alexr00!

@harsh26690 I don't have a problem with scheduled tasks, keep in mind though that usually scheduled tasks, unless you specify a different user, run under SYSTEM, so you have to...

What account does your sched task run under? Did you run set secret in the same context? You could also try a simpler script to just get-secret and output it...

You should use psexec -I -s pwsh to get a SYSTEM account prompt and set the password there. Alternatively, edit your scheduled task to run as the same user you...

@hbenl hello, any appetite to merge this or should I just fork?

@robinmalik Foreach -Parallel and ThreadJob as they are both first party solutions that are "good enough", I've been meaning to make PoshRSJob-style wrappers for easily importing functions and whatnot but...

Maybe related, I've noticed the formatter seems to hang a lot more often than it used to, noticed it in the last month or so. I do format on save...

@iricigor You can run `Invoke-Build Test` to run the existing pester tests, but any new functionality you add should have a pester test for it as well :). Your best...