Matthew Gray

Results 9 issues of Matthew Gray

### Describe the problem The pictures below are from the module frontpage. They show that `Get-NCalendar` produces completely wrong output. My tests say the same. That is because you work...

bug

If the first weekday is Monday the Sunday of the next month will by empty. ### February ![image](https://user-images.githubusercontent.com/17237559/156351380-d3c335d2-6c27-436e-bbd0-91d1c11c2b05.png) Yellow square is the day of the next month. Why is it...

bug

This does not work ```powershell [pscustomobject]@{a=0; b=1; c=2}, [pscustomobject]@{a=3; b=4; c=5}, [pscustomobject]@{a=6; b=7; c=8}, [pscustomobject]@{a=9; b=10; c=11} | Transpose-Object ``` but if you add `$col=1` to `begin` block and replace...

If you group multiple properties standard Group-Object uses ", " (comma + space) as delimiter in the `Name` field. Line 42 has an error in `join` operator argument ``` $key...

Method .send() takes time to resolve hostname if you pass not ipaddress. So if you pass a dead name you will get an exception. I would suggest this solution: ```...

In some circumstances (did not dig) `Stop-Process` waits for confirmation. Work around: use `-Force -Confirm:false` in `Open-ExcelPackage` function, line 17. In this context the expression in the line 18 `while...

relates to #1408, #1286, may be more This is not a bug but looks like a missing parameter. I did not dig deep but just looked at `Add-ExcelTable` calls in...

Investigate

Thanks for the great work. A few notes. - Case: there 2 buttons, `Clear` and `Today`. When `Clear` and `Today` are sequentially clicked, input field stays empty. Today date is...

In `EPPlus` functions where number conversion is used like below, value of `CurrentInfo` may not work. Decimal separator makes difference. Enum value should be replaced with `InvariantInfo` ```powershell [Double]::TryParse($v, [System.Globalization.NumberStyles]::Any,...