Mathias R. Jessen
Mathias R. Jessen
I've just encountered the same behavior as @othews when deploying 10.4.0 with docker, and accessing it from Chrome 114 on Windows 10. ``` Uncaught TypeError: Cannot read properties of null...
@SeeminglyScience @daxian-dbw @TravisEz13 any ideas/recommendations for ways we could meaningfully introduce tests to cover this behavior?
I'm having similar issues with `Find-Module` in `PowerShellGet` version 1.6.7, registered repository with: ```powershell Register-PSRepository testget -SourceLocation https://[host]/v3/index.json -PublishLocation https://[host]/api/v2/package ``` `Publish-Module` works just fine, but according to the IIS...
This behavior is entirely expected. The specific enumerator implementation returned by `Hashtable.GetEnumerator()` has 4 public properties: ``` PS ~> $htEnumerator = @{}.GetEnumerator() PS ~> $htEnumerator.GetType() IsPublic IsSerial Name BaseType --------...
That's exactly right @iRon7 - the `HashtableEnumerator` instance does _not_ have a public `Name` property, and thus evaluation of the expression `.Name` fails to resolve to an instance member, and...
@AndrewSav "DWORD" stands for "double word", and "word" in this context means a 16 bit integer. So a DWORD is a 32 bit integer. If the value in the registry...
@daxian-dbw do we have any good reason to not move ahead and fix `Escape()` here? Happy to do the PR
As mentioned in Twitter this is definitely possible for script functions. One of the ideas I had was to pass an include list of functions to expand, if not recursively...