René's URL Explorer Experiment


Title: Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes · Issue #27346 · PowerShell/PowerShell · GitHub

Open Graph Title: Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes · Issue #27346 · PowerShell/PowerShell

X Title: Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes · Issue #27346 · PowerShell/PowerShell

Description: Summary Three Pester tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline on portable (ZIP/TAR) and several non-portable distribution lanes. All three are downstream of PR #26565 ("Refacto...

Open Graph Description: Summary Three Pester tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline on portable (ZIP/TAR) and several non-portable distribution lanes. All thr...

X Description: Summary Three Pester tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline on portable (ZIP/TAR) and several non-portable distribution lanes. All thr...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes","articleBody":"## Summary\n\nThree Pester tests fail in the `ReleaseAutomationTest` comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline on portable (ZIP/TAR) and several non-portable distribution lanes. All three are downstream of PR #26565 (\"Refactor the module path construction code\", commit `592668bd0`), which is in `release/v7.7.0-preview.1` but is **not** in `v7.6.0-rc.1` (verified: `git merge-base --is-ancestor 592668bd0 v7.6.0-rc.1` returns 1).\n\n| Test ID | Test | File | Origin |\n|---|---|---|---|\n| 103778 | `ConsoleHost - SettingsFile - PSModulePath - Verify PowerShell PSModulePath should contain paths from config file` (Windows) | `test/powershell/Host/ConsoleHost.Tests.ps1#L402` | New test added by PR #26565 |\n| 103842 | Non-Windows equivalent of 103778 (same `It` block, run on Linux/macOS lanes) | `test/powershell/Host/ConsoleHost.Tests.ps1#L402` | New test added by PR #26565 |\n| 108309 | `Import-Module with WinCompat - WinCompat process does not inherit PowerShell-Core-specific paths` | `test/powershell/Modules/Microsoft.PowerShell.Core/CompatiblePSEditions.Module.Tests.ps1#L727` | Pre-existing since PR #7183 (2018); newly fails in preview.1 |\n\nLanes affected (one or more of these tests fail per lane):\n\n- `WindowsServer2016ZIP - Unelevated`\n- `ubuntu22 TAR`\n- `mariner ARM64`\n- `macOS TAR`, `macOS`\n- `linux ARM32`\n- `debian12`\n- `azurelinux30`\n\nFirst failing build: `ReleaseAutomationTest-27557-ps-671171`.\n\nThese tests were previously tracked as **Case 2 of issue #27343** and are split out here because the root cause is unrelated to PR #27305 (the original framing of #27343).\n\n## Background: what PR #26565 changed\n\nCommit `592668bd0` rewrote `ModuleIntrinsics.GetModulePath` and replaced the helper `AddToPath` (with `PathContainsSubstring`) with `UpdatePath`, which uses `HashSet\u003cstring\u003e` plus `Path.TrimEndingDirectorySeparator` for dedup and advances `insertPosition` after each insert. It also added a static `static ModuleIntrinsics() { SetModulePath(); }` initializer.\n\nThe \"EVT.Process exists\" branch in preview.1's `GetModulePath` is:\n\n```csharp\nstring systemModulePathToUse = string.IsNullOrEmpty(hklmMachineModulePath)\n    ? psHomeModulePath\n    : hklmMachineModulePath;\n\nint insertIndex = 0;\ncurrentProcessModulePath = UpdatePath(currentProcessModulePath, personalModulePathToUse, ref insertIndex);\ncurrentProcessModulePath = UpdatePath(currentProcessModulePath, sharedModulePath,       ref insertIndex);\ncurrentProcessModulePath = UpdatePath(currentProcessModulePath, systemModulePathToUse,  ref insertIndex);\n```\n\nWhen `hklmMachineModulePath` is non-empty, `systemModulePathToUse = hklmMachineModulePath` and `psHomeModulePath` (i.e., `$PSHOME/Modules`) is never added to the process `PSModulePath`. The same logical branch exists on Linux/macOS via the equivalent OS-level system module path.\n\nPR #26565 also added the **new** test `Verify PowerShell PSModulePath should contain paths from config file` (test 103778 / 103842) that asserts `$PSHOME/Modules` is already present at `IndexOf \u003e 0` in `$env:PSModulePath`. That assertion is incompatible with portable distributions where `$PSHOME` is a user-local path not registered in the OS-level `PSModulePath`.\n\n## Why each test fails\n\n### Tests 103778 (Windows) and 103842 (non-Windows)\n\n```powershell\n# BeforeAll: write settings file with PSModulePath = \"$PSHOME/Modules\u003csep\u003e$TestDrive/NonExist\"\n$psModulePath = \u0026 $powershell -NoProfile -SettingsFile $CustomSettingsFile -Command '$env:PSModulePath'\n# Assertion:\n$index = $psModulePath.IndexOf(\"$mPath1$pathSep\", [StringComparison]::OrdinalIgnoreCase)\n$index | Should -BeGreaterThan 0   # FAILS - $PSHOME/Modules ends up at position 0\n```\n\nFailure mechanics on a portable distribution:\n\n1. Child pwsh inherits parent `$env:PSModulePath` = `\u003cpersonal\u003e\u003csep\u003e\u003cshared\u003e\u003csep\u003e\u003cOS-defaults\u003e` and does **not** contain the ZIP/TAR-extracted `$PSHOME/Modules`.\n2. Settings-file `PSModulePath` is read as `hkcuUserModulePath = \"$PSHOME/Modules\u003csep\u003e$TestDrive/NonExist\"`.\n3. `GetModulePath` \"Process exists\" branch sets `personalModulePathToUse = hkcuUserModulePath`.\n4. `UpdatePath(current, \"$PSHOME/Modules\u003csep\u003e$TestDrive/NonExist\", ref insertIndex=0)`:\n   - `$PSHOME/Modules` is NOT in `initialPaths` -\u003e inserted at position 0.\n   - `$TestDrive/NonExist` is NOT in `initialPaths` -\u003e inserted at position 1.\n5. Final `PSModulePath` starts with `$PSHOME/Modules\u003csep\u003e$TestDrive/NonExist\u003csep\u003e...`.\n6. `IndexOf(\"$PSHOME/Modules\u003csep\u003e\")` = `0` -\u003e `Should -BeGreaterThan 0` fails.\n7. `StartsWith(\"$TestDrive/NonExist\u003csep\u003e\")` = `false` -\u003e later assertion also fails.\n\nThe `BeforeAll` comment in the test literally states: *\"$mPath1 already exists in the value of env PSModulePath, so it won''t be added again.\"* That precondition does not hold on portable distributions. Since the `It` block is shared across platforms, it manifests as test 103778 on Windows lanes and 103842 on non-Windows lanes.\n\n### Test 108309\n\n```powershell\n$pscoreSystemPath = Join-Path -Path $PSHOME -ChildPath 'Modules'\n$pscorePaths = $env:psmodulepath\n$pscorePaths | Should -BeLike \"*$pscoreSystemPath*\"   # FAILS\n```\n\nSame root assumption - the test requires `$PSHOME/Modules` to be in `$env:PSModulePath`. On portable distributions this is not guaranteed.\n\nThis test is 7+ years old and **passed on the v7.6.0-rc.1 baseline** (confirmed via the rc.1 `ReleaseAutomationTest` xUnit output: `\u003ctest-case description=\"WinCompat process does not inherit PowerShell-Core-specific paths\" ... result=\"Success\" success=\"True\" executed=\"True\"/\u003e`). It now fails on preview.1, so this is a **real product-side regression** introduced by PR #26565 - not just a comparator artifact. The rc.1 code (`AddToPath` + `PathContainsSubstring`) produced an effective `PSModulePath` that contained `$PSHOME/Modules` on the affected lanes; preview.1's `UpdatePath` rewrite no longer does. A product-side fix is required in addition to the test fix below.\n\n## Suggested resolution\n\n**Test side (required regardless):** make the assertions portable-distribution-aware.\n\nFor tests 103778 / 103842 (`test/powershell/Host/ConsoleHost.Tests.ps1`):\n\nOption A - have `BeforeAll` ensure the precondition the test was written against:\n\n```powershell\nBeforeAll {\n    $CustomSettingsFile = Join-Path -Path $TestDrive -ChildPath 'powershell.test.json'\n    $mPath1 = Join-Path $PSHOME 'Modules'\n    $mPath2 = Join-Path $TestDrive 'NonExist'\n    $pathSep = [System.IO.Path]::PathSeparator\n\n    # Test assumes $PSHOME/Modules is already in $env:PSModulePath.\n    # On ZIP/TAR/portable distributions this may not hold; ensure it.\n    $contains = $env:PSModulePath -split [regex]::Escape($pathSep) |\n        Where-Object { [string]::Equals($_, $mPath1, 'OrdinalIgnoreCase') }\n    if (-not $contains) {\n        $script:savedPSModulePath = $env:PSModulePath\n        $env:PSModulePath = \"$mPath1$pathSep$env:PSModulePath\"\n    }\n\n    $ModulePath = \"${mPath1}${pathSep}${mPath2}\".Replace(''\\'', \"\\\\\")\n    Set-Content -Path $CustomSettingsfile -Value \"{`\"Microsoft.PowerShell:ExecutionPolicy`\":`\"Unrestricted`\", `\"PSModulePath`\": `\"$ModulePath`\" }\" -ErrorAction Stop\n}\n\nAfterAll {\n    if ($script:savedPSModulePath) {\n        $env:PSModulePath = $script:savedPSModulePath\n    }\n}\n```\n\nOption B - skip when the precondition does not hold:\n\n```powershell\nIt \"Verify PowerShell PSModulePath should contain paths from config file\" {\n    if (($env:PSModulePath -split [regex]::Escape([IO.Path]::PathSeparator)) -notcontains $mPath1) {\n        Set-ItResult -Skipped -Because ''$PSHOME/Modules is not in $env:PSModulePath (portable distribution); test precondition does not hold.''\n        return\n    }\n    # ... existing assertions ...\n}\n```\n\nFor test 108309 (`test/powershell/Modules/Microsoft.PowerShell.Core/CompatiblePSEditions.Module.Tests.ps1`):\n\n```powershell\nIt ''WinCompat process does not inherit PowerShell-Core-specific paths'' {\n    $pscoreUserPath   = Join-Path -Path $HOME -ChildPath \"Documents/PowerShell/Modules\"\n    $pscoreSharedPath = Join-Path -Path $env:ProgramFiles -ChildPath \"PowerShell/Modules\"\n    $pscoreSystemPath = Join-Path -Path $PSHOME -ChildPath ''Modules''\n    $pscorePaths = $env:psmodulepath\n    $pscorePaths | Should -BeLike \"*$pscoreUserPath*\"\n    $pscorePaths | Should -BeLike \"*$pscoreSharedPath*\"\n    if ($pscorePaths -like \"*$pscoreSystemPath*\") {\n        $pscorePaths | Should -BeLike \"*$pscoreSystemPath*\"\n    }\n    # else: tolerated - portable/ZIP/TAR distributions do not put $PSHOME/Modules in $env:PSModulePath.\n    # Remaining WinCompat exclusion assertions still run unchanged.\n    # ...\n}\n```\n\n**Product side (required - confirmed regression):** PR #26565's `AddToPath` -\u003e `UpdatePath` rewrite changed the effective `PSModulePath` shape on the affected lanes; rc.1 included `$PSHOME/Modules`, preview.1 does not. Two viable options:\n\n1. **Always include `psHomeModulePath` in the system path.** In the \"EVT.Process exists\" branch of `ModuleIntrinsics.GetModulePath`, instead of:\n\n   ```csharp\n   string systemModulePathToUse = string.IsNullOrEmpty(hklmMachineModulePath)\n       ? psHomeModulePath\n       : hklmMachineModulePath;\n   ...\n   currentProcessModulePath = UpdatePath(currentProcessModulePath, systemModulePathToUse, ref insertIndex);\n   ```\n\n   add both, so `$PSHOME/Modules` is always present regardless of HKLM state:\n\n   ```csharp\n   if (!string.IsNullOrEmpty(hklmMachineModulePath))\n   {\n       currentProcessModulePath = UpdatePath(currentProcessModulePath, hklmMachineModulePath, ref insertIndex);\n   }\n   currentProcessModulePath = UpdatePath(currentProcessModulePath, psHomeModulePath, ref insertIndex);\n   ```\n\n   `UpdatePath` already dedups via `HashSet\u003cstring\u003e`, so no double-insertion when HKLM also contains `$PSHOME/Modules` (e.g. MSI install).\n\n2. **Restore the rc.1 path-construction shape directly** by reverting the relevant portion of `GetModulePath` to the pre-#26565 behavior (compose via `AddToPath` semantics) for the affected branch. Lower-risk for backport but loses the dedup/ordering improvements of #26565.\n\nOption 1 is preferred. After the fix, re-run the `ReleaseAutomationTest` lanes that originally failed (especially `WindowsServer2016ZIP - Unelevated`) and confirm `$PSHOME/Modules` is in `$env:PSModulePath`.\n\n## Branch strategy\n\nPer `.github/instructions/code-review-branch-strategy.instructions.md`: PR #26565 is on `master` and on `release/v7.7.0-preview.1`. Fix the test files on `master` first; backport to release branches as needed. Do not add ZIP/TAR-specific workarounds only on the release branch.\n\n## Files affected\n\n- `test/powershell/Host/ConsoleHost.Tests.ps1` (lines 391-413) - tests 103778 / 103842\n- `test/powershell/Modules/Microsoft.PowerShell.Core/CompatiblePSEditions.Module.Tests.ps1` (line 727) - test 108309\n- `src/System.Management.Automation/engine/Modules/ModuleIntrinsics.cs` - product-side fix for confirmed 108309 regression (rc.1 result: `Success`)\n\n## Related\n\n- PR #26565 - \"Refactor the module path construction code\" (commit `592668bd0`); not in `v7.6.0-rc.1`\n- Issue #27343 - parent triage issue (Cases 1 and 3); Case 2 was extracted into this issue\n- First failing build: `ReleaseAutomationTest-27557-ps-671171`","author":{"url":"https://github.com/jshigetomi","@type":"Person","name":"jshigetomi"},"datePublished":"2026-04-23T18:40:43.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/27346/PowerShell/issues/27346"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:d49df407-243c-04a5-7a71-ddced86153dc
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9564:1255E3:2BC2CD4:3E9F8E8:6A590661
html-safe-nonceae0b8ec6bac4f2b468adb3de63b07283591408c75a42cf0796de5f30cfde65c6
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NTY0OjEyNTVFMzoyQkMyQ0Q0OjNFOUY4RTg6NkE1OTA2NjEiLCJ2aXNpdG9yX2lkIjoiMTI1NDg5ODUxMjYyNzgyODMyMSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac1fa80868cacc021b40f104c1a7c5009e9222409f7d315c2d2a714d7cd9a6a573
hovercard-subject-tagissue:4318076327
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/27346/issue_layout
twitter:imagehttps://opengraph.githubassets.com/af01600c4f0edf625ab02d1d29aee4794126e3e3643a92852c47fa50a8a6421d/PowerShell/PowerShell/issues/27346
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/af01600c4f0edf625ab02d1d29aee4794126e3e3643a92852c47fa50a8a6421d/PowerShell/PowerShell/issues/27346
og:image:altSummary Three Pester tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline on portable (ZIP/TAR) and several non-portable distribution lanes. All thr...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejshigetomi
hostnamegithub.com
expected-hostnamegithub.com
None5f2a0c7865178af3d91dd9f13b0cdfc3c73a2529c873d2780bb4c01271a57ec6
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
release9842457e8d7e3b2e1635a63af28da35614845510
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/27346#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F27346
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%2F27346
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/27346
Reloadhttps://github.com/PowerShell/PowerShell/issues/27346
Reloadhttps://github.com/PowerShell/PowerShell/issues/27346
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/27346
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 291 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
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution laneshttps://github.com/PowerShell/PowerShell/issues/27346#top
Issue-BugIssue has been identified as a bug in the producthttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Issue-Bug%22
https://github.com/jshigetomi
jshigetomihttps://github.com/jshigetomi
on Apr 23, 2026https://github.com/PowerShell/PowerShell/issues/27346#issue-4318076327
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
#7183https://github.com/PowerShell/PowerShell/pull/7183
#27343https://github.com/PowerShell/PowerShell/issues/27343
#27305https://github.com/PowerShell/PowerShell/pull/27305
#27343https://github.com/PowerShell/PowerShell/issues/27343
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
Refactor the module path construction code to make it more robust and easier to maintain #26565https://github.com/PowerShell/PowerShell/pull/26565
Refactor the module path construction code to make it more robust and easier to maintain #26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
Refactor the module path construction code to make it more robust and easier to maintain #26565https://github.com/PowerShell/PowerShell/pull/26565
ReleaseAutomationTest new failures in 7.7.0-preview.1: module-path / MyDocuments test assumptions (3 distinct cases) #27343https://github.com/PowerShell/PowerShell/issues/27343
Issue-BugIssue has been identified as a bug in the producthttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Issue-Bug%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.