René's URL Explorer Experiment


Title: Parser error on daily PowerShell 7.3. build · Issue #16870 · PowerShell/PowerShell · GitHub

Open Graph Title: Parser error on daily PowerShell 7.3. build · Issue #16870 · PowerShell/PowerShell

X Title: Parser error on daily PowerShell 7.3. build · Issue #16870 · PowerShell/PowerShell

Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerShell 5.1 and PowerShell. Steps to reprodu...

Open Graph Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...

X Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...

Opengraph URL: https://github.com/PowerShell/PowerShell/issues/16870

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Parser error on daily PowerShell 7.3. build","articleBody":"### Prerequisites\r\n\r\n- [X] Write a descriptive title.\r\n- [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases)\r\n- [X] Search the existing issues.\r\n- [X] Refer to the [FAQ](https://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md).\r\n- [X] Refer to [Differences between Windows PowerShell 5.1 and PowerShell](https://docs.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell).\r\n\r\n### Steps to reproduce\r\n\r\nI have complex in-house module that started to fail to import on recent daily builds of PS 7.3. It is working correctly on PS 5.1 and PS 7.2.1 and on older daily builds of PS 7.3. I was able to narrow the offending code to the following:\r\n```powershell\r\nGet-CimInstance -ClassName 'Win32_NetworkAdapterConfiguration' |\r\n\tWhere-Object -Property IPEnabled |\r\n\tForEach-Object {\r\n\t\t[IPAddress]::Parse(\r\n\t\t\t$_.IPSubnet[\r\n\t\t\t\t[Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n\t\t\t]\r\n\t\t)\r\n\t}\r\n```\r\n\r\nError:\r\n```powershell\r\nParserError: D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6\r\nLine |\r\n   6 |                  [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n     |                        ~\r\n     | Missing ] at end of type token.\r\n\r\n```\r\n\r\nThe *fix* is to enclose the ` [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])` in extra pair of parentheses. Like so:\r\n```powershell\r\nGet-CimInstance -ClassName 'Win32_NetworkAdapterConfiguration' |\r\n\tWhere-Object -Property IPEnabled |\r\n\tForEach-Object {\r\n\t\t[IPAddress]::Parse(\r\n\t\t\t$_.IPSubnet[\r\n\t\t\t\t([Array]::IndexOf($_.IPAddress, $_.IPAddress[0]))\r\n\t\t\t]\r\n\t\t)\r\n\t}\r\n```\r\nBut as I mentioned before the original code is working on PS 5.1, PS 7.2.1 and older daily builds of PS 7.3 so it has to be a recent change in the PS 7.3 code that is causing this.\r\n\r\n### Expected behavior\r\n\r\n```console\r\n. .\\Test.ps1\r\n\r\nAddressFamily      : InterNetwork\r\nScopeId            :\r\nIsIPv6Multicast    : False\r\nIsIPv6LinkLocal    : False\r\nIsIPv6SiteLocal    : False\r\nIsIPv6Teredo       : False\r\nIsIPv6UniqueLocal  : False\r\nIsIPv4MappedToIPv6 : False\r\nAddress            : 16777215\r\nIPAddressToString  : 255.255.255.0\r\n```\r\n\r\n\r\n### Actual behavior\r\n\r\n```console\r\n. .\\Test.ps1\r\nParserError: D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6\r\nLine |\r\n   6 |                  [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n     |                        ~\r\n     | Missing ] at end of type token.\r\n```\r\n\r\n\r\n### Error details\r\n\r\n```console\r\nException             :\r\n    Type        : System.Management.Automation.ParseException\r\n    Errors      :\r\n        Extent  :\r\n        ErrorId : EndSquareBracketExpectedAtEndOfType\r\n        Message : Missing ] at end of type token.\r\n\r\n        Extent  :\r\n        ErrorId : MissingEndParenthesisInMethodCall\r\n        Message : Missing ')' in method call.\r\n\r\n        Extent  : ]\r\n        ErrorId : UnexpectedToken\r\n        Message : Unexpected token ']' in expression or statement.\r\n\r\n        Extent  : {\r\n        ErrorId : MissingEndCurlyBrace\r\n        Message : Missing closing '}' in statement block or type definition.\r\n\r\n        Extent  : )\r\n        ErrorId : UnexpectedToken\r\n        Message : Unexpected token ')' in expression or statement.\r\n\r\n        Extent  : }\r\n        ErrorId : UnexpectedToken\r\n        Message : Unexpected token '}' in expression or statement.\r\n    Message     : At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6 char:11\r\n                  +                 [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n                  +                       ~\r\n                  Missing ] at end of type token.\r\n\r\n                  At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6 char:52\r\n                  +                 [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n                  +                                                                ~\r\n                  Missing ')' in method call.\r\n\r\n                  At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:7 char:4\r\n                  +             ]\r\n                  +             ~\r\n                  Unexpected token ']' in expression or statement.\r\n\r\n                  At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:3 char:17\r\n                  +     ForEach-Object {\r\n                  +                    ~\r\n                  Missing closing '}' in statement block or type definition.\r\n\r\n                  At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:8 char:3\r\n                  +         )\r\n                  +         ~\r\n                  Unexpected token ')' in expression or statement.\r\n\r\n                  At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:9 char:2\r\n                  +     }\r\n                  +     ~\r\n                  Unexpected token '}' in expression or statement.\r\n    ErrorRecord :\r\n        Exception             :\r\n            Type    : System.Management.Automation.ParentContainsErrorRecordException\r\n            Message : At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6 char:11\r\n                      +                 [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n                      +                       ~\r\n                      Missing ] at end of type token.\r\n\r\n                      At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6 char:52\r\n                      +                 [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n                      +                                                                ~\r\n                      Missing ')' in method call.\r\n\r\n                      At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:7 char:4\r\n                      +             ]\r\n                      +             ~\r\n                      Unexpected token ']' in expression or statement.\r\n\r\n                      At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:3 char:17\r\n                      +     ForEach-Object {\r\n                      +                    ~\r\n                      Missing closing '}' in statement block or type definition.\r\n\r\n                      At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:8 char:3\r\n                      +         )\r\n                      +         ~\r\n                      Unexpected token ')' in expression or statement.\r\n\r\n                      At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:9 char:2\r\n                      +     }\r\n                      +     ~\r\n                      Unexpected token '}' in expression or statement.\r\n            HResult : -2146233087\r\n        CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException\r\n        FullyQualifiedErrorId : EndSquareBracketExpectedAtEndOfType\r\n        InvocationInfo        :\r\n            ScriptLineNumber : 6\r\n            OffsetInLine     : 11\r\n            HistoryId        : -1\r\n            ScriptName       : D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1\r\n            Line             : [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n\r\n            PositionMessage  : At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6 char:11\r\n                               +                 [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n                               +                       ~\r\n            PSScriptRoot     : D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\r\n            PSCommandPath    : D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1\r\n            CommandOrigin    : Internal\r\n        ScriptStackTrace      : at \u003cScriptBlock\u003e, \u003cNo file\u003e: line 1\r\n    TargetSite  :\r\n        Name          : Create\r\n        DeclaringType : scriptblock\r\n        MemberType    : Method\r\n        Module        : System.Management.Automation.dll\r\n    Data        : System.Collections.ListDictionaryInternal\r\n    Source      : System.Management.Automation\r\n    HResult     : -2146233087\r\n    StackTrace  :\r\n   at System.Management.Automation.ScriptBlock.Create(Parser parser, String fileName, String fileContents) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\runtime\\CompiledScriptBlock.cs:line 660\r\n   at System.Management.Automation.ExternalScriptInfo.ParseScriptContents(Parser parser, String fileName, String fileContents, Nullable`1 definingLanguageMode) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\ExternalScriptInfo.cs:line 263\r\n   at System.Management.Automation.ExternalScriptInfo.get_ScriptBlock() in D:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\ExternalScriptInfo.cs:line 224\r\n   at System.Management.Automation.CommandDiscovery.CreateCommandProcessorForScript(ExternalScriptInfo scriptInfo, ExecutionContext context, Boolean useNewScope, SessionStateInternal sessionState) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\CommandDiscovery.cs:line 660\r\n   at System.Management.Automation.CommandDiscovery.CreateScriptProcessorForSingleShell(ExternalScriptInfo scriptInfo, ExecutionContext context, Boolean useLocalScope, SessionStateInternal sessionState) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\CommandDiscovery.cs:line 340\r\n   at System.Management.Automation.CommandDiscovery.LookupCommandProcessor(CommandInfo commandInfo, CommandOrigin commandOrigin, Nullable`1 useLocalScope, SessionStateInternal sessionState) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\CommandDiscovery.cs:line 584\r\n   at System.Management.Automation.ExecutionContext.CreateCommand(String command, Boolean dotSource) in D:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\ExecutionContext.cs:line 666\r\n   at System.Management.Automation.PipelineOps.AddCommand(PipelineProcessor pipe, CommandParameterInternal[] commandElements, CommandBaseAst commandBaseAst, CommandRedirection[] redirections, ExecutionContext\r\ncontext) in D:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\runtime\\Operations\\MiscOps.cs:line 311\r\n   at System.Management.Automation.PipelineOps.InvokePipeline(Object input, Boolean ignoreInput, CommandParameterInternal[][] pipeElements, CommandBaseAst[] pipeElementAsts, CommandRedirection[][]\r\ncommandRedirections, FunctionContext funcContext) in D:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\runtime\\Operations\\MiscOps.cs:line 510\r\n   at System.Management.Automation.Interpreter.ActionCallInstruction`6.Run(InterpretedFrame frame) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\interpreter\\CallInstruction.Generated.cs:line 608\r\n   at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame) in\r\nD:\\DEVELOPMENT\\PowerShellCore\\src\\System.Management.Automation\\engine\\interpreter\\ControlFlowInstructions.cs:line 341\r\nCategoryInfo          : ParserError: (:) [], ParseException\r\nFullyQualifiedErrorId : EndSquareBracketExpectedAtEndOfType\r\nInvocationInfo        :\r\n    ScriptLineNumber : 6\r\n    OffsetInLine     : 11\r\n    HistoryId        : -1\r\n    ScriptName       : D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1\r\n    Line             : [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n\r\n    PositionMessage  : At D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1:6 char:11\r\n                       +                 [Array]::IndexOf($_.IPAddress, $_.IPAddress[0])\r\n                       +                       ~\r\n    PSScriptRoot     : D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\r\n    PSCommandPath    : D:\\Users\\Bukem\\Documents\\PowerShell\\SCRIPTS\\Test.ps1\r\n    CommandOrigin    : Internal\r\nScriptStackTrace      : at \u003cScriptBlock\u003e, \u003cNo file\u003e: line 1\r\n```\r\n\r\n\r\n### Environment data\r\n\r\n```powershell\r\nName                           Value\r\n----                           -----\r\nPSVersion                      7.3.0-preview.1\r\nPSEdition                      Core\r\nGitCommitId                    7.3.0-preview.1-56-g30eac0a11e3479cf4feac76c7fa4b8d621eaabe2\r\nOS                             Microsoft Windows 10.0.19044\r\nPlatform                       Win32NT\r\nPSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}\r\nPSRemotingProtocolVersion      2.3\r\nSerializationVersion           1.1.0.1\r\nWSManStackVersion              3.0\r\n```\r\n\r\nEnabled experimental features:\r\n```powershell\r\nGet-ExperimentalFeature | Select-Object Name, Enabled\r\n\r\nName                                          Enabled\r\n----                                          -------\r\nPSAMSIMethodInvocationLogging                   False\r\nPSAnsiRenderingFileInfo                         False\r\nPSCleanBlock                                     True\r\nPSCommandNotFoundSuggestion                     False\r\nPSExec                                          False\r\nPSLoadAssemblyFromNativeCode                     True\r\nPSNativeCommandArgumentPassing                   True\r\nPSNativeCommandErrorActionPreference             True\r\nPSNativePSPathResolution                         True\r\nPSRemotingSSHTransportErrorHandling              True\r\nPSStrictModeAssignment                           True\r\nPSSubsystemPluginModel                           True\r\nPSDesiredStateConfiguration.InvokeDscResource    True\r\n```\r\n\r\n### Visuals\r\n\r\n_No response_","author":{"url":"https://github.com/kborowinski","@type":"Person","name":"kborowinski"},"datePublished":"2022-02-11T08:58:42.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":7},"url":"https://github.com/16870/PowerShell/issues/16870"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1c77d279-b570-11f7-0110-0f5b10a6818d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC87A:A72D1:E6389E:13A36B9:6A5567AD
html-safe-nonce630dbde0c3c4537cf200a03e900da9dfb516e733df4537cdfa08b84385cc91e3
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDODdBOkE3MkQxOkU2Mzg5RToxM0EzNkI5OjZBNTU2N0FEIiwidmlzaXRvcl9pZCI6Ijk2NTA3NTgyMDMwMDU2MDMwMSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacedc915e76a5264c74fa4dd8978827cb26729abd35f2c31446118466e93626041
hovercard-subject-tagissue:1132122903
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/PowerShell/PowerShell/16870/issue_layout
twitter:imagehttps://opengraph.githubassets.com/616570b79b82a6fee67badbb8da7132a61e8e9c63f3c2d60797d9d7a5a03bb4f/PowerShell/PowerShell/issues/16870
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/616570b79b82a6fee67badbb8da7132a61e8e9c63f3c2d60797d9d7a5a03bb4f/PowerShell/PowerShell/issues/16870
og:image:altPrerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamekborowinski
hostnamegithub.com
expected-hostnamegithub.com
Noneb5665c84831ed9ac4fb79519c16c9c5580ba8092fb8bb6e3e72972ec7197348e
turbo-cache-controlno-preview
go-importgithub.com/PowerShell/PowerShell git https://github.com/PowerShell/PowerShell.git
octolytics-dimension-user_id11524380
octolytics-dimension-user_loginPowerShell
octolytics-dimension-repository_id49609581
octolytics-dimension-repository_nwoPowerShell/PowerShell
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id49609581
octolytics-dimension-repository_network_root_nwoPowerShell/PowerShell
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release8201d0b7bc32164c4662de52242e463a356df543
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/16870#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F16870
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F16870
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=PowerShell%2FPowerShell
Reloadhttps://github.com/PowerShell/PowerShell/issues/16870
Reloadhttps://github.com/PowerShell/PowerShell/issues/16870
Reloadhttps://github.com/PowerShell/PowerShell/issues/16870
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/16870
PowerShell https://github.com/PowerShell
PowerShellhttps://github.com/PowerShell/PowerShell
Notifications https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Fork 8.4k https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Star 54.4k https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Code https://github.com/PowerShell/PowerShell
Issues 1.2k https://github.com/PowerShell/PowerShell/issues
Pull requests 287 https://github.com/PowerShell/PowerShell/pulls
Discussions https://github.com/PowerShell/PowerShell/discussions
Actions https://github.com/PowerShell/PowerShell/actions
Projects https://github.com/PowerShell/PowerShell/projects
Security and quality 3 https://github.com/PowerShell/PowerShell/security
Insights https://github.com/PowerShell/PowerShell/pulse
Code https://github.com/PowerShell/PowerShell
Issues https://github.com/PowerShell/PowerShell/issues
Pull requests https://github.com/PowerShell/PowerShell/pulls
Discussions https://github.com/PowerShell/PowerShell/discussions
Actions https://github.com/PowerShell/PowerShell/actions
Projects https://github.com/PowerShell/PowerShell/projects
Security and quality https://github.com/PowerShell/PowerShell/security
Insights https://github.com/PowerShell/PowerShell/pulse
#16937https://github.com/PowerShell/PowerShell/pull/16937
Parser error on daily PowerShell 7.3. buildhttps://github.com/PowerShell/PowerShell/issues/16870#top
#16937https://github.com/PowerShell/PowerShell/pull/16937
Issue-BugIssue has been identified as a bug in the producthttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Issue-Bug%22
Resolution-FixedThe issue is fixed.https://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Resolution-Fixed%22
WG-Enginecore PowerShell engine, interpreter, and runtimehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Engine%22
https://github.com/kborowinski
kborowinskihttps://github.com/kborowinski
on Feb 11, 2022https://github.com/PowerShell/PowerShell/issues/16870#issue-1132122903
latest released versionhttps://github.com/PowerShell/PowerShell/releases
FAQhttps://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md
Differences between Windows PowerShell 5.1 and PowerShellhttps://docs.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell
Issue-BugIssue has been identified as a bug in the producthttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Issue-Bug%22
Resolution-FixedThe issue is fixed.https://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Resolution-Fixed%22
WG-Enginecore PowerShell engine, interpreter, and runtimehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Engine%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.