u/Limp-Leather-241

Poking the bear on the ICCU issue
▲ 75 r/Ioniq5

Poking the bear on the ICCU issue

I just found out something the other day that I thought I would share in regards to the ICCU failures, at least indirectly, particularly pertaining to the assumed failure rate of this subassembly on this vehicle. The Ioniq 5 is an extremely popular cab choice in South Korea. As a matter of fact the entire 800V platform (Kia EV6, ioniq 6, etc.) is preferred as EV fleet vehicles, and tens of thousands of them are driven every day carrying a ton of passengers around.
If you know anything about fleet maintenance, you know they value reliability over all other factors. If this issue were anywhere near as wide spread as so many push on Redditt, there's just no way these vehicles would be so widespread.
I just thought I would share that little factoid for people on the fence.

https://en.wikipedia.org/wiki/Taxis_of_South_Korea

u/Limp-Leather-241 — 3 days ago

Issue with powershell script running on N-able

I'm not a powershell expert by any stretch, but I can script kiddie my way around fairly well. N-able has a utility for executing a powershell script on a client, but it isn't working. Basically it is failing to write an out-file to a shared network server. It executes locally on my machine without any issues. Any pointers would be much appreciated!

Trying to execute the following code:

# $OutputFile = "\\realhostnamegoeshere\common\output_log.txt"

$OutputFile = "c:\output_log.txt"

$ComputerName = $env:COMPUTERNAME

Get-WinEvent -FilterHashtable @{LogName='System'; Id=1808} -ErrorAction SilentlyContinue |

Select-Object @{Name='ComputerName'; Expression={$ComputerName}}, TimeCreated, Id, Message |

Out-File -FilePath $OutputFile -Append

And getting this error:

Out-File : Access to the path '\\slsindfps02\common\output_log.txt' is denied.

reddit.com
u/Limp-Leather-241 — 4 days ago