Please help me to deal with PowerShell environment variable.
I had learned that PowerShell has special syntax to access the system environment variable values. So I've tried to execute:
$env:Tempin the PowerShell 6.2.4 console on Windows 10. The output is strange:
C:\Users\OD42B~1.BOR\AppData\Local\TempIt has my Windows user name shortened to the 8.3 form.
The problem is that I can't use the cd $env:temp command, it displays the following error:
cd : An object at the specified path C:\Users\OD42B~1.BOR does not exist.But I can do cd %temp% in the cmd terminal.
I've tried Windows PowerShell app (%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe) but cd $env:Temp does not works either.
I've checked environment variable configuration option (Sytem properties\Environment variables) and both TEMP and TMP variables are shown using the long form profile folder name, like c:\users\o.borolongprofilename\AppData\Local\Temp.
How can I make cd $env:Temp work for a non-8.3 profile name in the PowerShell?
UPD
PowerShell
get-childitem env:Tempoutput isC:\Users\OD42B~1.BOR\AppData\Local\Temp.Cmd
echo %temp%output is the sameC:\Users\OD42B~1.BOR\AppData\Local\Temp(butcd %temp%works in the cmd).TEMPenvironment variable in the UI is set properly (value shown is likec:\users\o.borolongprofilename\AppData\Local\Temp).However
TEMPvalue is shown like%USERPROFILE%\AppData\Local\Tempwhen I try to editTEMPusing the UI.PowerShell
get-childitem env:userprofiledisplays full name likec:\users\o.borolongprofilename(surprise).
UPD2
I've just checked PowerShell 7 rc2 but the result is the same: cd $env:Temp does not work.
UPD3
Thank you for helping me. I've found the answer provided by the @Smock comment link:
cd (gi $env:temp).fullname
3 Answers
Thank you for helping me. I've found the answer provided by the @Smock comment link:
cd (gi $env:temp).fullname
I don't know what causes this, but you could add a small piece of powershell in your profile:
$env:TEMP = [Environment]::GetEnvironmentVariable("Temp", [EnvironmentVariableTarget]::User)That way, $env:Temp will be updated each time you launch PowerShell
You can also get the path from registry value and use it:
But not using this one: HKCU\Environment
[HKCU:\Environment]
@TEMP=%USERPROFILE%\AppData\Local\TempTEMP REG_EXPAND_SZ %USERPROFILE%\AppData\Local\TempThe output also came with:
%USERPROFILE%, so....
...try using this registry key: HKCU\Environment
[HKCU:\Volatile Environment]
@LOCALAPPDATA=C:\Users\ecker\AppData\LocalLOCALAPPDATA REG_SZ C:\Users\ecker\AppData\LocalAnd concatenate only the output sequence with:TEMP ==> "$path_str\TEMP"
$path_str = (Get-ItemProperty "HKCU:\Volatile Environment")|Select-Object -ExpandProperty LOCALAPPDATA | Resolve-path ; cd "$path_str\TEMP"
# Or using aliases #
$path_str = (gp "HKCU:\Volatile Environment")|select -ExpandProperty LOCALAPPDATA | rvpa ; cd "$path_str\TEMP"