René's URL Explorer Experiment


Title: FileSystem PSDrives not mounted when PowerShell runs inside an AppContainer · Issue #27253 · PowerShell/PowerShell · GitHub

Open Graph Title: FileSystem PSDrives not mounted when PowerShell runs inside an AppContainer · Issue #27253 · PowerShell/PowerShell

X Title: FileSystem PSDrives not mounted when PowerShell runs inside an AppContainer · Issue #27253 · 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/27253

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"FileSystem PSDrives not mounted when PowerShell runs inside an AppContainer","articleBody":"### Prerequisites\n\n- [x] Write a descriptive title.\n- [x] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases)\n- [x] Search the existing issues.\n- [x] Refer to the [FAQ](https://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md).\n- [x] Refer to [Differences between Windows PowerShell 5.1 and PowerShell](https://learn.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell).\n\n### Steps to reproduce\n\n1. Create a Windows AppContainer profile via `CreateAppContainerProfile`.\n2. Launch `pwsh.exe` inside the AppContainer using `CreateProcessW` with `PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES`.\n3. Run any cmdlet:\n\n```powershell\npwsh.exe -NoProfile -Command \"Write-Output hello\"\n```\n\n\n### Expected behavior\n\n```console\nhello\n``` \n\nPowerShell should mount filesystem PSDrives (`C:`, `D:`, etc.) and module auto-loading should work normally.\n\n### Actual behavior\n\n```console\nWrite-Output: The term 'Write-Output' is not recognized as a name of a cmdlet,\nfunction, script file, or executable program.\nCheck the spelling of the name, or if a path was included, verify that the path\nis correct and try again.\n\n``` \nNo filesystem PSDrives are created. The available drives are only: `HKLM, HKCU, Alias, Env, Temp, Function, Variable`. The `FileSystem` provider is loaded but has no drives attached to it.\n\nThis breaks **all** cmdlets — `Write-Output`, `Get-ChildItem`, `Import-Module`, `Get-Module`, etc. — because module auto-loading cannot resolve `$env:PSModulePath` entries (e.g. `C:\\Program Files\\PowerShell\\7\\Modules`) without a mounted `C:` PSDrive.\n### Error details\nThe root cause is in [`FileSystemProvider.InitializeDefaultDrives()`](https://github.com/PowerShell/PowerShell/blob/9c1272039cf8eab566a048fbfba8007567983cd6/src/System.Management.Automation/namespaces/FileSystemProvider.cs#L849):\n```csharp\nDriveInfo[] logicalDrives = DriveInfo.GetDrives();\n\nforeach (DriveInfo newDrive in logicalDrives)\n{\n    if (newDrive.DriveType == DriveType.Fixed)\n    {\n        if (!newDrive.RootDirectory.Exists)   // ← returns false in AppContainer\n        {\n            continue;                          // ← drive skipped entirely\n        }\n\n        root = newDrive.RootDirectory.FullName;\n    }\n    // … create PSDriveInfo …\n}\n``` \n\n`RootDirectory.Exists` calls [`FileSystem.DirectoryExists()`](https://github.com/dotnet/runtime/blob/cc78323ef440208bab9bd99fee82e3ea40ec61a5/src/libraries/Common/src/System/IO/FileSystem.Attributes.Windows.cs#L17) in the .NET runtime, which calls `GetFileAttributesEx`. On a typical Windows installation, `C:\\` does **not** have an `ALL APPLICATION PACKAGES` ACE, so `GetFileAttributesEx(\"C:\")` returns `ERROR_ACCESS_DENIED` (5). .NET interprets this as \"does not exist\" and returns `false`.\n\nSubdirectories like `C:\\Windows` and `C:\\Program Files` **do** have `ALL APPLICATION PACKAGES` ACEs and are fully accessible — only the volume root is blocked.\n\n**Why this breaks module loading specifically:**\n\nWithout a `C:` PSDrive, PowerShell's path resolution (`LocationGlobber` → `SessionStateDriveAPIs.GetDrive()`) throws `DriveNotFoundException` for any `C:\\…` path. Module auto-discovery iterates `$env:PSModulePath` entries (all on `C:`), each triggers a caught `DriveNotFoundException`, and all are silently skipped. No modules discovered → no cmdlets.\n\nNote: the underlying Win32 filesystem **is** accessible — `[System.IO.Directory]::GetDirectories(\"C:\\Program Files\\PowerShell\\7\\Modules\")` succeeds inside the AppContainer and returns all 14 module directories. The problem is purely in the PSDrive layer.\n\n**Diagnostic evidence:**\n\n| Check | Normal process | AppContainer |\n|---|---|---|\n| `GetFileAttributes(\"C:\\\")` (Win32) | ✅ `0x16` (DIR) | ❌ Error 5 (`ACCESS_DENIED`) |\n| `GetFileAttributes(\"C:\\Windows\")` | ✅ `0x10` (DIR) | ✅ `0x10` (DIR) |\n| `GetLogicalDrives()` | ✅ `0x3C` | ✅ `0x3C` (drives present) |\n| `TokenIsAppContainer` | `0` | `1` |\n| PSDrives | `C, D, E, F, Temp, …` | `HKLM, HKCU, Alias, Env, Temp, Function, Variable` |\n| `FileSystem` provider loaded | ✅ | ✅ (but no drives attached) |\n| `[IO.Directory]::GetDirectories(…)` | ✅ | ✅ (filesystem works) |\n\n**Suggested fix:**\n\nThe `RootDirectory.Exists` check is too strict. `DriveInfo.GetDrives()` already proved the drive exists via `GetLogicalDrives()`. An `ACCESS_DENIED` on the root does not mean the drive is absent. Options:\n\n1. **Remove the `RootDirectory.Exists` check** — `GetDrives()` is sufficient proof.\n2. **Treat `ACCESS_DENIED` as \"exists\"** — similar to the `VolumeLabel` read a few lines above which already catches `UnauthorizedAccessException`.\n3. **Fall back to `GetLogicalDrives()` bitmask** instead of `GetFileAttributes` on the root.\n\n### Environment data\n\n```powershell\nName                           Value\n----                           -----\nPSVersion                      7.5.5\nPSEdition                      Core\nGitCommitId                    7.5.5\nOS                             Microsoft Windows 10.0.26593\nPlatform                       Win32NT\nPSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}\nPSRemotingProtocolVersion      2.3\nSerializationVersion           1.1.0.1\nWSManStackVersion              3.0\n```\n\nAppContainer created via `CreateAppContainerProfile` + `PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES` (standard Win32 APIs).\n\n### Visuals\n\n_No response_","author":{"url":"https://github.com/asklar","@type":"Person","name":"asklar"},"datePublished":"2026-04-10T18:52:55.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/27253/PowerShell/issues/27253"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1ef7284d-3b2b-cd15-388d-c9f723c110fb
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8770:ACCAF:1613F93:1DB5779:6A596AE9
html-safe-nonce1f53aa6a1ee7e3b81c38bfccfbce8ad0bff44f708dfdc6392404b9f8518ae1f7
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NzcwOkFDQ0FGOjE2MTNGOTM6MURCNTc3OTo2QTU5NkFFOSIsInZpc2l0b3JfaWQiOiI1NjkxNjk1ODE2NDA0MjAwMTcwIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac06bf47e7d2831bcccaac4d20f8a4a8b68b3df3f7a79198c397996f9798635a29
hovercard-subject-tagissue:4241149263
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/27253/issue_layout
twitter:imagehttps://opengraph.githubassets.com/58c52130a4a7caa1c62ca366bb6b3399353fdaeac64ab39c866aa236dbd8d8fa/PowerShell/PowerShell/issues/27253
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/58c52130a4a7caa1c62ca366bb6b3399353fdaeac64ab39c866aa236dbd8d8fa/PowerShell/PowerShell/issues/27253
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:usernameasklar
hostnamegithub.com
expected-hostnamegithub.com
Nonea540949572872b935b393b36db38922db390ae71c859537d741b8f3eb7e545b5
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
release4aa391d605ba491481565840251a4b0fec3f4807
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/27253#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F27253
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%2F27253
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/27253
Reloadhttps://github.com/PowerShell/PowerShell/issues/27253
Reloadhttps://github.com/PowerShell/PowerShell/issues/27253
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/27253
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 290 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
#27266https://github.com/PowerShell/PowerShell/pull/27266
FileSystem PSDrives not mounted when PowerShell runs inside an AppContainerhttps://github.com/PowerShell/PowerShell/issues/27253#top
#27266https://github.com/PowerShell/PowerShell/pull/27266
https://github.com/asklar
asklarhttps://github.com/asklar
on Apr 10, 2026https://github.com/PowerShell/PowerShell/issues/27253#issue-4241149263
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://learn.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell
FileSystemProvider.InitializeDefaultDrives()https://github.com/PowerShell/PowerShell/blob/9c1272039cf8eab566a048fbfba8007567983cd6/src/System.Management.Automation/namespaces/FileSystemProvider.cs#L849
FileSystem.DirectoryExists()https://github.com/dotnet/runtime/blob/cc78323ef440208bab9bd99fee82e3ea40ec61a5/src/libraries/Common/src/System/IO/FileSystem.Attributes.Windows.cs#L17
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.