Kris Borowinski

Results 45 comments of Kris Borowinski

PS 7.3 GA: ```powershell > [Text.Encoding]::GetEncodings()|%{[Text.Encoding]::GetEncoding($_.Name).WebName} shift_jis ibm860 ibm861 ibm880 dos-862 ibm863 gb2312 ibm864 ibm865 cp866 koi8-u ibm037 ibm869 ibm500 x-mac-icelandic ibm01140 ibm01141 ibm01142 ibm273 ibm01143 ibm01144 ibm01145 windows-1250 ibm01146...

@xtqqczze Thanks, it solves the problem. I'll add it to my profile as a workaround for the time being. Ps. I've found [this](https://github.com/JanKallman/EPPlus/issues/31) when looking for similar issues and I...

@daxian-dbw Would you have a look at this PR please?

@jdogg89: I was using an elevated Powershell 6.1.0 console on Windows 7 to import ActiveDirectory module.

> @kborowinski the fix for this is available in the preview now if you'd like to try it out! @andschwa Works like a charm! Thanks!

@PaulHigin This is rather important IMHO, any timeframe on fixing this? Also which is the correct repo to create issues now. This one or the [that](https://github.com/PowerShell/ThreadJob)?

Wanted to ask of the status of padding optimization?

It would be a nice addition to already great *FlacLibSharp* however I missed that you support custom padding already, so if you have other more important things in mind then...

BTW, just for fun, repro code refactored to use `ForEach-Object -Parallel` works: ```powershell $cpuCount = [Environment]::ProcessorCount $results = 1..($cpuCount * 2) | ForEach-Object -Parallel { Import-Module Pester -Force -ErrorAction Stop...