arcgis-powershell-dsc
arcgis-powershell-dsc copied to clipboard
Request: provide installer extraction path option
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
Module Version
*4.1.0
Affected Resource(s)
Allow to specify an extract installers path other than c:\windows\temp{....} Sometimes it is not possible to write to C:\ or there is not enough free space.
Hi @widsuoids,
This is a great suggestion. The Module uses the GetTempPath() method which checks for the existence of environment variables in the following order and returns the first path found:
- The path specified by the TMP environment variable.
- The path specified by the TEMP environment variable.
- The path specified by the USERPROFILE environment variable.
- The Windows directory.
If it is not possible to write to C:\
or there is not a enough space, as a workaround, you can change or set the TMP/TEMP environment variable to a different location and the setups will be extracted to that location.
Thanks, Cameron K.