xtqqczze
xtqqczze
@adityapatwardhan This can be closed as outdated.
@solomoncyj We now have @pwshBot submit PRs to update `global.json`.
> I wonder why you are trying to update the edge code. :-) @iSazonov Sorry, could you clarify what you mean?
See also: * #3852 * #3971 * #4053
https://learn.microsoft.com/en-us/windows/win32/api/wldp/nf-wldp-wldpcanexecutefile WldpCanExecuteFile - Win32 appsQueries whether the execution policy allows execution of the code in the supplied file.
Contributes to #18553.
The exception at `OfficeOpenXml.Packaging.Ionic.Zip.ZipOutputStream..ctor` is in the `EPPlus, Version=4.5.3.2, Culture=neutral, PublicKeyToken=ea159fdaa78159a1` assembly. Decompilation yields the following code: ```csharp private Encoding _alternateEncoding = Encoding.GetEncoding("IBM437"); ``` Since .NET Core, IBM437 encoding is...
@kborowinski Could you please invoke the following command and then try running your workflow: ```powershell [System.Text.Encoding]::RegisterProvider([System.Text.CodePagesEncodingProvider]::Instance) ```
Source code for `OfficeOpenXml.Packaging.Ionic.Zip.ZipOutputStream._alternateEncoding`: ```csharp #if (Core) private System.Text.Encoding _alternateEncoding = System.Text.Encoding.GetEncoding("utf-8"); // #else private System.Text.Encoding _alternateEncoding = System.Text.Encoding.GetEncoding("IBM437"); // default = IBM437 #endif ``` https://github.com/JanKallman/EPPlus/blob/4dacf27661b24d92e8ba3d03d51dd5468845e6c1/EPPlus/Packaging/DotNetZip/ZipOutputStream.cs#L1622-L1628 GitHubEPPlus/ZipOutputStream.cs at 4dacf27661b24d92e8ba3d03d51dd5468845e6c1 ·...
> @kborowinski Woah .. that's very , very bad. It means you can't set `$outputEncoding` to the default windows code page for Europe (IBM 850) or "Ansi" aka Windows 1252...