You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When determining the cache location and using the `TEMP` environment
variable, ensure that it is coming back as a Full Path and not as an
8.3 path. This happens on some systems when you simply call for the
Environment Variable. However `Path.GetTempPath()` provides a fully
qualified path instead of a shortened path. Use that instead.
Using `Path.GetTempPath()` instead of
`Environment.GetEnvironmentVariable("TEMP")` in 76ae7e2 for GH-532
has caused the SYSTEM user to return one of the following:
* `c:\windows\system32\config\systemprofile\appdata\local\temp`
* `c:\windows\syswow64\config\systemprofile\appdata\local\temp`
These folders seem to cause issues with accessing files, causing all
kinds of fun issues, such as "Not able to read package from path" and
not able to find executables being downloaded to these folders.
If one of these two folders is detected, ensure that the folder
structure is `%SystemRoot%\TEMP`.
Related to #415 - Do not provide
$env:TEMP
as an 8.3 variable.The text was updated successfully, but these errors were encountered: