Neil White

Results 8 comments of Neil White

For reference, the .ps1 version on Invoke-Parallel is here: https://github.com/RamblingCookieMonster/Invoke-Parallel

I second this. A more user-friendly message would have saved my team an hour or more a few months back. The cryptic error from the Windows API is something that...

> Try this new version: https://github.com/rodneyviana/ODSyncUtil/ > > I would love to have you as contributor to create a nugget. Please push to the source and request a PR and...

> The DLL is the beta version but will become the main version. So you call it ODSyncUtil. Create for the DLL and PowerShell version only. I really appreciate your...

> variableresistor, > > I never published a Nuget and I may be asking something it is already in your solution: > > 1. How the Nuget will know which...

> @variableresistor - This is a great idea. I didn't realize that PS Core 7+ supported TLS 1.3. > > That being said, I'm not confident with the change. >...

Fixed it. To test: ```powershell powershell -Command '$PSVersionTable.PSVersion -lt [version]"7.0.0"' True pwsh -Command '$PSVersionTable.PSVersion -lt [version]"7.0.0"' False ```

Maybe add a setting "perPage" and default it to 0. Then implement the parameter on a case-by-case basis: ```powershell $perPage = Get-GitHubConfiguration -Name 'PerPage' if ($perPage -gt 0) { $getParams...