René's URL Explorer Experiment


Title: ReleaseAutomationTest new failures in 7.7.0-preview.1: module-path / MyDocuments test assumptions (3 distinct cases) · Issue #27343 · PowerShell/PowerShell · GitHub

Open Graph Title: ReleaseAutomationTest new failures in 7.7.0-preview.1: module-path / MyDocuments test assumptions (3 distinct cases) · Issue #27343 · PowerShell/PowerShell

X Title: ReleaseAutomationTest new failures in 7.7.0-preview.1: module-path / MyDocuments test assumptions (3 distinct cases) · Issue #27343 · PowerShell/PowerShell

Description: Summary Multiple tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline. They share a common theme - how MyDocuments / SHARED_MODULES / $PSHOME/Modules paths interact with elevated, service-...

Open Graph Description: Summary Multiple tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline. They share a common theme - how MyDocuments / SHARED_MODULES / $PSHOME/Module...

X Description: Summary Multiple tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline. They share a common theme - how MyDocuments / SHARED_MODULES / $PSHOME/Module...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"ReleaseAutomationTest new failures in 7.7.0-preview.1: module-path / MyDocuments test assumptions (3 distinct cases)","articleBody":"## Summary\n\nMultiple tests fail in the `ReleaseAutomationTest` comparison of 7.7.0-preview.1 against the **7.6.0-rc.1** baseline. They share a common theme - how `MyDocuments` / `SHARED_MODULES` / `$PSHOME/Modules` paths interact with elevated, service-account, and ZIP/TAR distribution sessions - but split into distinct root causes.\n\n| # | Case | Lanes | Root cause | Tracking |\n|---|---|---|---|---|\n| 1 | `ModuleIntrinsics.GetPSModulePath` API tests | All elevated Linux/macOS lanes (User variant); all elevated Windows + Linux/macOS lanes (Machine variant, test 100145) | User variant: `sudo -E` drops `HOME`; Machine variant: cross-platform PSModulePath construction regression - top suspect PR #26565 | This issue (below) |\n| 2 | Module-path construction tests fail on portable (ZIP/TAR) and additional lanes | `WindowsServer2016ZIP - Unelevated`, `ubuntu22 TAR`, `mariner ARM64`, `macOS TAR`, `macOS`, `linux ARM32`, `debian12`, `azurelinux30` | Downstream of PR #26565 (\"Refactor the module path construction code\"), which is not in `v7.6.0-rc.1` | **Tracked in #27346** |\n| 3 | PSResourceGet / PowerShellGet `AllUsers` install | All elevated lanes (Windows / Linux / macOS, portable + package-installed) | Confirmed regression vs rc.1; top suspect is PR #26565 (`AddToPath` -\u003e `UpdatePath` rewrite) - same code path as #27346. Unrelated to #27305 | This issue (below) |\n\nAll cases appear as **\"New Failure\"** because the `ReleaseAutomationTest` comparator matches failures by test name/ID against the baseline; tests added, renamed, or running for the first time on a newly-enabled lane in `release/v7.7.0-preview.1` are reported as new.\n\nFirst failing build: `ReleaseAutomationTest-27557-ps-671171`.\n\n---\n\n## Shared context: PR #27305 \"Enable usage in AppContainers\"\n\n`release/v7.7.0-preview.1` commit `1218a29b8` (merged to `master` via `bec015ffc` / PR #27266) changed `ModuleIntrinsics.GetPersonalModulePath` on Windows from:\n\n```csharp\nEnvironment.GetFolderPath(Environment.SpecialFolder.MyDocuments)\n```\n\nto:\n\n```csharp\nEnvironment.GetFolderPath(Environment.SpecialFolder.MyDocuments,\n                          Environment.SpecialFolderOption.DoNotVerify)\n```\n\n`SpecialFolderOption.None` returns `\"\"` if the folder does not physically exist; `DoNotVerify` always returns a non-empty path. It also added `SafeDoesPathExist` in `FileSystemProvider.cs` for AppContainer-friendly drive-root validation. PR #26269 made the same `DoNotVerify` switch in `CorePsPlatform.SafeDeriveFromSpecialFolder` earlier.\n\nThis change is correct for AppContainer scenarios but is **only directly relevant to Case 1**. Case 3 is independent of #27305 (see Case 3 for details).\n\n### Delta between v7.6.0-rc.1 and release/v7.7.0-preview.1 relevant to these cases\n\n```\n1218a29b8 [release/v7.7.0-preview.1] Enable usage in AppContainers (#27305)\n7498139ba Update `Microsoft.PowerShell.PSResourceGet` version to 1.2.0 (#27003)\n212c5f97e Update to .NET 11 SDK and update dependencies (#26783)\n012529a96 Update Microsoft.PowerShell.PSResourceGet version to 1.2.0-rc3 (#26753)\n276989fa5 Update Microsoft.PowerShell.PSResourceGet version to 1.2.0-rc1 (#26691)\n592668bd0 Refactor the module path construction code to make it more robust and easier to maintain (#26565)\n2a49561af Update `Microsoft.PowerShell.PSResourceGet` to `v1.2.0-preview5` (#26589)\nc7ee0d294 Fix checks for local user config file paths (#26269)\n```\n\n---\n\n## Case 1 - `ModuleIntrinsics.GetPSModulePath \"User\"` on elevated lanes\n\n### Lanes affected\n\n- Linux: `mariner_ARM64`, `Ubuntu22`, `debian12`, `linux_Arm32`, `ubi9`\n- macOS: `macOS`, `macOS Tar`\n- Windows: `win_arm64`, `Windows Server 2016`\n\n### Sample failure\n\n```\nExpected '/root/.local/share/powershell/Modules' to be found in collection\n@('/home/cloudtest/PSPackage/download/PowerShell/Modules',\n  '/home/cloudtest/PSPackage/download/Test/test/tools/Modules',\n  '/home/cloudtest/.local/share/powershell/Modules'),\nbut it was not found.\nat \u003cScriptBlock\u003e, test/powershell/engine/Module/ModulePath.Tests.ps1: line 247\n247:         $currentModulePathElements | Should -Contain $mPath\n```\n\n### Root cause\n\nThe test assumes `[ModuleIntrinsics]::GetPSModulePath(\"User\")` must already be present in the inherited `$env:PSModulePath`, which does not hold for the elevated test leg:\n\n1. The elevated leg is launched via `sudo -E pwsh ...` from `build.psm1#L2020`.\n2. `sudo -E` preserves `$env:PSModulePath` from the launching user (`cloudtest`) but most sudoers configurations reset `HOME` to `/root`.\n3. `GetPSModulePath(\"User\")` is computed live from the new `HOME` via `Platform.SelectProductNameForDirectory(USER_MODULES)`, producing `/root/.local/share/powershell/Modules`.\n4. The inherited `$env:PSModulePath` still contains `/home/cloudtest/.local/share/powershell/Modules`, so `$currentModulePathElements | Should -Contain $mPath` fails.\n\nThe same shape applies on elevated Windows lanes - the elevated process is launched from a wrapper that already established `PSModulePath`, and elevation/service-account contexts can produce a different `MyDocuments` folder than the one baked into the inherited `PSModulePath`. PR #27305 surfaces the Windows variant because `DoNotVerify` now returns a value that previously would have been `\"\"`.\n\n### Fix\n\n**This is a test bug.** Two reasonable options:\n\n**Option A - Skip when elevation crossed a user boundary (smallest change):**\n\n```powershell\n# test/powershell/engine/Module/ModulePath.Tests.ps1, inside the \"User\" case\nif ($Name -eq ''User'') {\n    $userPath = [System.Management.Automation.ModuleIntrinsics]::GetPSModulePath(''User'')\n    if ($currentModulePathElements -notcontains $userPath) {\n        Set-ItResult -Skipped -Because ''Elevation session has a different HOME/MyDocuments than the launching user; the inherited PSModulePath does not reflect current user-scope.''\n        return\n    }\n}\n```\n\n**Option B - Reconcile `$env:PSModulePath` after elevation (in the test harness):**\n\nAdd to the elevated test entry point (e.g. around `build.psm1#L2020`):\n\n```powershell\n$env:PSModulePath = [System.Management.Automation.ModuleIntrinsics]::GetModulePath(\n    $env:PSModulePath, $null, $null)\n```\n\nOption A is lower-risk. Option B also makes `Install-Module -Scope CurrentUser` inside elevated legs behave more intuitively.\n\n---\n\n## Case 3 - PSResourceGet / PowerShellGet AllUsers install on all elevated lanes\n\n### Tests\n\n| ID (preview.1 run) | Describe/It | File |\n|---|---|---|\n| 100798 | `PSResourceGet - Module tests (Admin) - Should install a module correctly to the required location with AllUsers scope` | `test/powershell/Modules/Microsoft.PowerShell.PSResourceGet/Microsoft.PowerShell.PSResourceGet.Tests.ps1#L241-L249` |\n| 101755 | `PowerShellGet - Module tests (Admin) - Should install a module correctly to the required location with AllUsers scope` | `test/powershell/Modules/PowerShellGet/PowerShellGet.Tests.ps1#L172-L178` |\n\nNote: `ReleaseAutomationTest` test IDs are run-relative and not stable between runs. The same `It` blocks were tracked as `100120` / `100144` in an earlier draft; only test names are stable.\n\n### Lanes affected (all elevated)\n\n- `win_arm64`\n- `WindowsServer2016ZIP`\n- `ubuntu22_TAR`, `ubuntu22`\n- `ubi9`\n- `arm64`\n- `macOS TAR`, `macOS`\n- `linux_arm32`\n- `debian12`\n- `azurelinux30`\n\nThe coverage spans both portable (ZIP/TAR) and package-installed lanes, ruling out portable-distribution-only theories.\n\n### Confirmed regression\n\nBoth tests **passed** on the v7.6.0-rc.1 baseline (confirmed via the rc.1 `ReleaseAutomationTest` xUnit output: both `result=\"Success\" success=\"True\" executed=\"True\"` for `PSResourceGet - Module tests (Admin)` and `PowerShellGet - Module tests (Admin)`). They now fail on preview.1, so this is a **real product-side regression**, not a comparator artifact.\n\n### Key assertion\n\n```powershell\nInstall-[Module|PSResource] -Name $TestModule -Scope AllUsers -ErrorAction Stop\n$module = Get-Module $TestModule -ListAvailable\n$module.ModuleBase.StartsWith($script:programFilesModulesPath) | Should -BeTrue\n```\n\n`$programFilesModulesPath` is built from `[Platform]::SelectProductNameForDirectory(\"SHARED_MODULES\")`, which on Linux is **hardcoded**:\n\n```csharp\n// src/System.Management.Automation/CoreCLR/CorePsPlatform.cs\ncase XDG_Type.SHARED_MODULES:\n    return \"/usr/local/share/powershell/Modules\";\n```\n\nThat value does not depend on `HOME` / `sudo -E`, so **this case is NOT caused by #27305**. The test files themselves are unchanged between `v7.6.0-rc.1` and `release/v7.7.0-preview.1` (`git log v7.6.0-rc.1..release/v7.7.0-preview.1 -- \u003cpath\u003e` returns no commits), so it is not a rename/new-test artifact either.\n\n### Real candidates (delta commits between v7.6.0-rc.1 and release/v7.7.0-preview.1)\n\n| Commit | Why it matters | Case relevance |\n|---|---|---|\n| `7498139ba` - PR #27003 bump `Microsoft.PowerShell.PSResourceGet` to `1.2.0` (final GA) | New GA could change `Install-PSResource -Scope AllUsers` install path logic | Top suspect for 100120 |\n| `012529a96` - PR #26753 `PSResourceGet 1.2.0-rc3` | Same codebase, interim step | Secondary for 100120 |\n| `592668bd0` - PR #26565 \"Refactor module path construction\" | Rewrote `UpdatePath`, static-initialized `SetModulePath`, changed dedup to use `Path.TrimEndingDirectorySeparator` + `HashSet\u003cstring\u003e` | Top suspect for 100144 |\n| `212c5f97e` - PR #26783 .NET 10 -\u003e .NET 11 SDK | Runtime `GetFolderPath` / path semantics can shift subtly across SDK majors | Possible, lower likelihood |\n| `1218a29b8` / `bec015ffc` - PR #27305 AppContainers | Windows-only behavior change | Unrelated |\n\nPowerShellGet `2.2.5` was not version-bumped between the two releases. Because **101755 also regressed** and PowerShellGet itself did not change, the PSResourceGet 1.2.0 GA bump cannot be the sole explanation - a shared product-side change is required. The strongest single-suspect candidate that would explain regressions in both `Install-PSResource -Scope AllUsers` (test 100798) **and** `Install-Module -Scope AllUsers` (test 101755) is **PR #26565** (`592668bd0`), via the same `AddToPath` -\u003e `UpdatePath` rewrite already confirmed responsible for the test 108309 regression tracked in #27346.\n\n### Likely mechanism\n\nThe failing assertion is:\n\n```powershell\n$module = Get-Module $TestModule -ListAvailable\n$module.ModuleBase.StartsWith($script:programFilesModulesPath, [StringComparison]::OrdinalIgnoreCase) | Should -BeTrue\n```\n\n`$script:programFilesModulesPath` is byte-identical between rc.1 and preview.1 (`/usr/local/share/powershell/Modules` on Linux, `$env:ProgramFiles/PowerShell/Modules` on Windows). The install cmdlet is documented to land `AllUsers`-scoped modules under that root, so the only way the assertion fails is if `Get-Module -ListAvailable` returns a `$module` whose `ModuleBase` is **not** under `$programFilesModulesPath` - i.e. another copy of the module is being resolved first from a different `PSModulePath` entry.\n\n`Get-Module -ListAvailable` enumerates `PSModulePath` in order. PR #26565 changed:\n\n- `AddToPath` -\u003e `UpdatePath` (`HashSet\u003cstring\u003e` dedup using `Path.TrimEndingDirectorySeparator`)\n- `insertPosition` now advances after each insert (forward order), where rc.1's `AddToPath` did not advance it (reverse order)\n- Static `static ModuleIntrinsics() { SetModulePath(); }` initializer added\n\nAny of these can change the relative ordering of (a) the `AllUsers` install root and (b) other paths on `PSModulePath` that may also contain a copy of `$TestModule` (e.g. test-tools modules folder, downloaded test scaffolding). If a non-`programFilesModulesPath` location now sorts earlier on preview.1, `Get-Module -ListAvailable | Select-Object -First 1` returns it, and `StartsWith($programFilesModulesPath)` fails.\n\nThis is consistent with the regression being **across all elevated lanes** (the change is in path construction, not platform-specific) and with **PowerShellGet 2.2.5 being unchanged** (the bug isn't in the install cmdlet, it's in which copy `Get-Module -ListAvailable` resolves first).\n\n### Fix plan\n\n1. **Verify the mechanism.** On a preview.1 build, on any failing lane, after `Install-PSResource -Name $TestModule -Scope AllUsers` run `Get-Module $TestModule -ListAvailable | Select-Object Name, ModuleBase` and inspect (a) which paths are returned and (b) the current `$env:PSModulePath` ordering. Compare against rc.1.\n2. **If mechanism confirmed:** the fix lives in `ModuleIntrinsics.GetModulePath` / `UpdatePath` and is the same family of change as the #27346 fix - either always include `psHomeModulePath` alongside HKLM (as proposed in #27346) or restore rc.1's reverse-insertion ordering for the affected branch.\n3. **If mechanism not confirmed:** widen the bisect across the delta commits above (top suspects remain #26565, then PSResourceGet 1.2.0 GA #27003 for 100798 only, then .NET 11 SDK #26783).\n\n---\n\n## Branch strategy\n\nBoth remaining cases exist on `master` as well as `release/v7.7.0-preview.1`:\n\n- Case 1 - User variant: test file and `sudo -E` wrapper are identical on both. **Fix master first**, backport test change to preview.1.\n- Case 1 - Machine variant (test 100145): same `ModuleIntrinsics` regression as #27346 / Case 3. **Fix master first**, backport.\n- Case 3: confirmed regression. Top suspect is `ModuleIntrinsics` (PR #26565). **Fix master first**, backport to preview.1. Coordinate with the #27346 product-side fix since both target the same code path. If bisect re-points at PSResourceGet 1.2.0 GA, the product delta lives in the NuGet package; either ship a patched 1.2.x bump or revert the PSResourceGet bump on the release branch.\n\nPer `.github/instructions/code-review-branch-strategy.instructions.md`, release branches should not carry workarounds for issues that also exist on master.\n\n---\n\n## Files affected\n\n- `test/powershell/engine/Module/ModulePath.Tests.ps1` (lines 206-250) - Case 1 (User variant test fix)\n- `build.psm1` (line 2020) - Case 1 User variant (option B only)\n- `src/System.Management.Automation/engine/Modules/ModuleIntrinsics.cs` - Case 1 Machine variant (test 100145) and Case 3 (top suspect; same code path as #27346)\n- `test/powershell/Modules/Microsoft.PowerShell.PSResourceGet/Microsoft.PowerShell.PSResourceGet.Tests.ps1` (line 241) - Case 3 (test 100798; file unchanged between rc.1 and preview.1)\n- `test/powershell/Modules/PowerShellGet/PowerShellGet.Tests.ps1` (line 172) - Case 3 (test 101755; file unchanged between rc.1 and preview.1)\n- `src/Modules/PSGalleryModules.csproj` - Case 3 (only if bisect re-points at #27003)\n\n## Related\n\n- Baseline for the comparison: **v7.6.0-rc.1** (tag `9a42b9152`, Feb 19 2026)\n- Target: **release/v7.7.0-preview.1**\n- Regression surfaced by #27305 / #27266 (Enable usage in AppContainers) - Case 1 (Windows portion)\n- Case 2 was extracted to issue #27346\n- PSResourceGet 1.2.0 GA bump #27003 / #27007 - Case 3 candidate\n- .NET 10 -\u003e .NET 11 SDK update #26783 - Case 3 candidate\n- First failing build: `ReleaseAutomationTest-27557-ps-671171`","author":{"url":"https://github.com/jshigetomi","@type":"Person","name":"jshigetomi"},"datePublished":"2026-04-23T16:18:16.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/27343/PowerShell/issues/27343"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:aff84e78-4bd5-f555-b32d-8fe41d9b66bd
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9A9A:31738E:1C369AC:2848B53:6A58E2F3
html-safe-nonce73bb23f6a98bfd2f4aa6148a16b01fb301450bf1b1e54fb6219df8cd79766268
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5QTlBOjMxNzM4RToxQzM2OUFDOjI4NDhCNTM6NkE1OEUyRjMiLCJ2aXNpdG9yX2lkIjoiODI4MzMzNDE2MDM0OTE5MTU1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac9b032daaeb59a15894d56c46bd191ad21bea125f1e20f5280f3b0341d01df0b0
hovercard-subject-tagissue:4317351267
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/27343/issue_layout
twitter:imagehttps://opengraph.githubassets.com/a871adc4258065970cf584e44554cbb529aab6de3520ae1323367aa64499ee00/PowerShell/PowerShell/issues/27343
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/a871adc4258065970cf584e44554cbb529aab6de3520ae1323367aa64499ee00/PowerShell/PowerShell/issues/27343
og:image:altSummary Multiple tests fail in the ReleaseAutomationTest comparison of 7.7.0-preview.1 against the 7.6.0-rc.1 baseline. They share a common theme - how MyDocuments / SHARED_MODULES / $PSHOME/Module...
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
release8aae7b8d6caacacf5c66eaeb2702d8dc88d85b4a
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/27343#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F27343
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%2F27343
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/27343
Reloadhttps://github.com/PowerShell/PowerShell/issues/27343
Reloadhttps://github.com/PowerShell/PowerShell/issues/27343
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/27343
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
ReleaseAutomationTest new failures in 7.7.0-preview.1: module-path / MyDocuments test assumptions (3 distinct cases)https://github.com/PowerShell/PowerShell/issues/27343#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/27343#issue-4317351267
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26565https://github.com/PowerShell/PowerShell/pull/26565
#27346https://github.com/PowerShell/PowerShell/issues/27346
#26565https://github.com/PowerShell/PowerShell/pull/26565
#27346https://github.com/PowerShell/PowerShell/issues/27346
#27305https://github.com/PowerShell/PowerShell/pull/27305
#27305https://github.com/PowerShell/PowerShell/pull/27305
#27266https://github.com/PowerShell/PowerShell/pull/27266
#26269https://github.com/PowerShell/PowerShell/pull/26269
#27305https://github.com/PowerShell/PowerShell/pull/27305
#27305https://github.com/PowerShell/PowerShell/pull/27305
#27305https://github.com/PowerShell/PowerShell/pull/27305
#27003https://github.com/PowerShell/PowerShell/pull/27003
#26753https://github.com/PowerShell/PowerShell/pull/26753
#26565https://github.com/PowerShell/PowerShell/pull/26565
#26783https://github.com/PowerShell/PowerShell/pull/26783
#27305https://github.com/PowerShell/PowerShell/pull/27305
#26565https://github.com/PowerShell/PowerShell/pull/26565
#27346https://github.com/PowerShell/PowerShell/issues/27346
#26565https://github.com/PowerShell/PowerShell/pull/26565
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes #27346https://github.com/PowerShell/PowerShell/issues/27346
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes #27346https://github.com/PowerShell/PowerShell/issues/27346
Refactor the module path construction code to make it more robust and easier to maintain #26565https://github.com/PowerShell/PowerShell/pull/26565
Update Microsoft.PowerShell.PSResourceGet version to 1.2.0 #27003https://github.com/PowerShell/PowerShell/pull/27003
Update to .NET 11 SDK and update dependencies #26783https://github.com/PowerShell/PowerShell/pull/26783
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes #27346https://github.com/PowerShell/PowerShell/issues/27346
Refactor the module path construction code to make it more robust and easier to maintain #26565https://github.com/PowerShell/PowerShell/pull/26565
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes #27346https://github.com/PowerShell/PowerShell/issues/27346
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes #27346https://github.com/PowerShell/PowerShell/issues/27346
Update Microsoft.PowerShell.PSResourceGet version to 1.2.0 #27003https://github.com/PowerShell/PowerShell/pull/27003
[release/v7.7.0-preview.1] Enable usage in AppContainers #27305https://github.com/PowerShell/PowerShell/pull/27305
Enable usage in AppContainers #27266https://github.com/PowerShell/PowerShell/pull/27266
Test failures from module-path refactor PR #26565: tests 103778 / 103842 / 108309 fail on ZIP/TAR/portable distribution lanes #27346https://github.com/PowerShell/PowerShell/issues/27346
Update Microsoft.PowerShell.PSResourceGet version to 1.2.0 #27003https://github.com/PowerShell/PowerShell/pull/27003
[release/v7.6] Update Microsoft.PowerShell.PSResourceGet version to 1.2.0 #27007https://github.com/PowerShell/PowerShell/pull/27007
Update to .NET 11 SDK and update dependencies #26783https://github.com/PowerShell/PowerShell/pull/26783
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.