简体   繁体   中英

How to set Windows shell env variable? The term 'C:\Users\stojko\' is not recognized as the name of a cmdlet

I thought this would work

PS C:\Users\stojko> $env:Path = C:\Users\stojko\
C:\Users\stojko\ : The term 'C:\Users\stojko\' 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 was included, verify that the
path is correct and try again.
At line:1 char:13
+ $env:Path = C:\Users\stojko\
+             ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (C:\Users\stojko\:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

If I go for

$env

shows nothing.

$profile output

C:\Users\stojko\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1

How to set up envs on WIndows 10?

It is a string you need to set:

$env:Path = "C:\Users\stojko\"

and if you want to add it to the existing list:

$env:Path += ";C:\Users\stojko\"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM