René's URL Explorer Experiment


Title: Start-Process -UseNewEnvironment provides an environment that is missing crucial standard environment variables while not supporting passing a new environment · Issue #4671 · PowerShell/PowerShell · GitHub

Open Graph Title: Start-Process -UseNewEnvironment provides an environment that is missing crucial standard environment variables while not supporting passing a new environment · Issue #4671 · PowerShell/PowerShell

X Title: Start-Process -UseNewEnvironment provides an environment that is missing crucial standard environment variables while not supporting passing a new environment · Issue #4671 · PowerShell/PowerShell

Description: Update: It seems that in v7.1+ the previously missing env. vars. on Windows are now present (but they'll continue to be missing in Windows PowerShell); on Unix-like platforms, the resulting environment is still virtually empty as of v7.5...

Open Graph Description: Update: It seems that in v7.1+ the previously missing env. vars. on Windows are now present (but they'll continue to be missing in Windows PowerShell); on Unix-like platforms, the resulting environ...

X Description: Update: It seems that in v7.1+ the previously missing env. vars. on Windows are now present (but they'll continue to be missing in Windows PowerShell); on Unix-like platforms, the resulting env...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Start-Process -UseNewEnvironment provides an environment that is missing crucial standard environment variables while not supporting passing a new environment","articleBody":"_Update_: \n\n * It seems that in v7.1+ the previously missing env. vars. on Windows are now present (but they'll continue to be missing in _Windows PowerShell_); on Unix-like platforms, the resulting environment is still virtually empty as of v7.5.x.\n\n---\n\nOn both Windows and Unix platforms, `Start-Process -UseNewEnvironment` results in an environment that is missing crucial standard environment variables, making the new environment virtually useless, while not providing a mechanism to define a new environment:\n\n* On Windows, `-UseNewEnvironment` defines _only_ the variables that are _explicitly_ defined, as displayed in System Properties (`sysdm.cpl`), with crucial, usually automatically defined variables such as `$env:ProgramFiles` missing, and `$env:USERNAME` unexpectedly containing `SYSTEM`.\n\n     * This even prevents another `powershell` instance from being started this way - see https://github.com/PowerShell/PowerShell/issues/3545#issuecomment-320699488 and below.\n\n* On Unix, an _empty_ environment is essentially passed (with _no_ environment variables defined at all, except `$env:PSModulePath`).\n\n    * This even prevents invoking any executable by filename only, given that `$env:PATH` is undefined - see below.\n\n    * While this behavior is similar to POSIX [`env -i`](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/env.html) on Unix platforms, the `env` utility notably includes a mechanism to provide a _new_ environment via `name=value` pairs, which `Start-Process` lacks.\n\n---\n\nPossible solutions:\n\n* Repurpose `-UseNewEnvironment` to not start with a blank slate / crucial variables missing, but to provide the same environment that a shell would see when directly launched by the system (in other words: any environment-variable modifications made by the calling shell would be ignored).\n\n* Additionally, provide a way to pass a custom environment, applied _on top_ of the current or pristine (`-UseNewEnvironment`) environment:\n\n   * E.g., a new `-Environment \u003chashtable\u003e`  / `-Environment \u003cCollections.DictionaryEntry[]\u003e` parameter could be used.\n\n    * If someone truly wanted an _empty_ environment, they could start with `$emptyEnv = (Get-ChildItem env:); $emptyEnv | % { $_.Value = $null }` and pass `-Environment $emptyEnv`.\n\n---\n\nThe `-Environment` feature would allow for an - incomplete - approximation of the convenient ad-hoc, command-scoped environment-variable definition feature that POSIX-like shells such as `bash` offer, where you can prepend one or more `name=value` pairs to a command:\n\n```sh\n# Bash (any POSIX-compatible shell)\n# Defines $env:FOO as 'bar', but *only for the some-utility child process*.\nFOO=bar some-utility 666\n```\n\n_Update_: #3316 suggests emulating this syntax in PowerShell, which would be the best solution.\n\nThe PS approximation would be:\n\n```powershell\nStart-Process -Wait  -Environment @{ FOO = 'bar' } some-utility -Args 666\n```\n\nThat said, a crucial limitation is that use of `Start-Process` makes the external utility operate outside PowerShell's streams, so the only way to provide input / collect output is via the `-Redirect*` parameters, which requires _auxiliary files_.\n\n\n\nCurrent behavior\n------------------\n\n```powershell\nStart-Process -UseNewEnvironment -Wait -NoNewWindow pwsh -args '-Command', 'gci env:; whoami'\n```\n\n* On Windows: PowerShell refuses to start - see #3545; note that adding `-LoadUserProfile` makes no difference.\n\n```none\nInternal Windows PowerShell error.  Loading managed Windows PowerShell failed with error 8009001d.\n```\n\n* On Unix: PowerShell starts, lists `$env:PSModulePath` as the _only_ environment variable - with a seemingly temporary user account's module directory prepended -  and the `whoami` invocation fails, because it cannot be located in the absence of a suitable `$env:PATH`.\n\n```none\n\nName                           Value                                                                                                                           \n----                           -----                                                                                                                           \nPSModulePath                   /tmp/ba38e79f-40c2-440e-ae08-7cf32e0708e1/.local/share/powershell/Modules:/usr/local/share/powershell/Modules:/opt/microsoft/...\nwhoami : The term 'whoami' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path \nwas included, verify that the path is correct and try again.\nAt line:1 char:21\n+ Get-ChildItem env:; whoami\n+                     ~~~~~~\n    + CategoryInfo          : ObjectNotFound: (whoami:String) [], CommandNotFoundException\n    + FullyQualifiedErrorId : CommandNotFoundException\n```\n\nEnvironment data\n----------------\n\n```powershell\nPowerShell Core v6.0.0-beta.5 on macOS 10.12.6\nPowerShell Core v6.0.0-beta.5 on Ubuntu 16.04.3 LTS\nPowerShell Core v6.0.0-beta.5 on Microsoft Windows 10 Pro (64-bit; v10.0.15063)\nWindows PowerShell v5.1.15063.483 on Microsoft Windows 10 Pro (64-bit; v10.0.15063)\n```\n","author":{"url":"https://github.com/mklement0","@type":"Person","name":"mklement0"},"datePublished":"2017-08-25T14:06:50.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":34},"url":"https://github.com/4671/PowerShell/issues/4671"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:53e2c6c1-dad6-67cb-a25b-ad1ced05b239
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id949C:781E9:BA9996:10DFF89:6A54A813
html-safe-nonce6f9b2d28fa72240aacdd7247cba66e835d19a9bd39883ab28e3d8fc20d7bf5fe
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NDlDOjc4MUU5OkJBOTk5NjoxMERGRjg5OjZBNTRBODEzIiwidmlzaXRvcl9pZCI6IjI2MzM2Mzc1NTY0MzMyMzM5MzkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacba73b17cff6e6c4adc7a4274f17f3a56a49b3b62172a20e0fdd8641ffb543d73
hovercard-subject-tagissue:252911712
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/4671/issue_layout
twitter:imagehttps://opengraph.githubassets.com/2d5e82c4c471f511c0fc43e320e46f741ba9a745910e31caad855ed62e3c3283/PowerShell/PowerShell/issues/4671
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/2d5e82c4c471f511c0fc43e320e46f741ba9a745910e31caad855ed62e3c3283/PowerShell/PowerShell/issues/4671
og:image:altUpdate: It seems that in v7.1+ the previously missing env. vars. on Windows are now present (but they'll continue to be missing in Windows PowerShell); on Unix-like platforms, the resulting environ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemklement0
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
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
releasef8cfff6384f62259baea531c7f58bc7040f8dd92
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/4671#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F4671
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%2F4671
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/4671
Reloadhttps://github.com/PowerShell/PowerShell/issues/4671
Reloadhttps://github.com/PowerShell/PowerShell/issues/4671
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/4671
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.3k https://github.com/PowerShell/PowerShell/issues
Pull requests 288 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
Start-Process -UseNewEnvironment provides an environment that is missing crucial standard environment variables while not supporting passing a new environmenthttps://github.com/PowerShell/PowerShell/issues/4671#top
Issue-Enhancementthe issue is more of a feature request than a bughttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Issue-Enhancement%22
KeepOpenThe bot will ignore these and not auto-closehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22KeepOpen%22
WG-Cmdlets-Managementcmdlets in the Microsoft.PowerShell.Management modulehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Cmdlets-Management%22
WG-ReviewedA Working Group has reviewed this and made a recommendationhttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Reviewed%22
https://github.com/mklement0
mklement0https://github.com/mklement0
on Aug 25, 2017https://github.com/PowerShell/PowerShell/issues/4671#issue-252911712
Start-Process fails to launch new powershell.exe instance with -UseNewEnvironment switch #3545 (comment)https://github.com/PowerShell/PowerShell/issues/3545#issuecomment-320699488
env -ihttp://pubs.opengroup.org/onlinepubs/9699919799/utilities/env.html
#3316https://github.com/PowerShell/PowerShell/issues/3316
Start-Process fails to launch new powershell.exe instance with -UseNewEnvironment switch #3545https://github.com/PowerShell/PowerShell/issues/3545
Issue-Enhancementthe issue is more of a feature request than a bughttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Issue-Enhancement%22
KeepOpenThe bot will ignore these and not auto-closehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22KeepOpen%22
WG-Cmdlets-Managementcmdlets in the Microsoft.PowerShell.Management modulehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Cmdlets-Management%22
WG-ReviewedA Working Group has reviewed this and made a recommendationhttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Reviewed%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.