Matthew Gray
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...
If the first weekday is Monday the Sunday of the next month will by empty. ### February  Yellow square is the day of the next month. Why is it...
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...
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,...