mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use a temp directory that is more likely to exist (#38645)
`env:SystemDrive\temp` does not necessarily exist `env:temp` is much more likely to exist. Use that
This commit is contained in:
parent
6d830166e9
commit
4ba29c8bf1
1 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ This is an example of how to run this script from PowerShell:
|
|||
.. code-block:: guess
|
||||
|
||||
$url = "https://raw.githubusercontent.com/jborean93/ansible-windows/master/scripts/Upgrade-PowerShell.ps1"
|
||||
$file = "$env:TEMP\Upgrade-PowerShell.ps1"
|
||||
$file = "$env:temp\Upgrade-PowerShell.ps1"
|
||||
$username = "Administrator"
|
||||
$password = "Password"
|
||||
|
||||
|
@ -93,7 +93,7 @@ The following PowerShell command will install the hotfix:
|
|||
.. code-block:: guess
|
||||
|
||||
$url = "https://raw.githubusercontent.com/jborean93/ansible-windows/master/scripts/Install-WMF3Hotfix.ps1"
|
||||
$file = "$env:SystemDrive\temp\Install-WMF3Hotfix.ps1"
|
||||
$file = "$env:temp\Install-WMF3Hotfix.ps1"
|
||||
|
||||
(New-Object -TypeName System.Net.WebClient).DownloadFile($url, $file)
|
||||
powershell.exe -ExecutionPolicy ByPass -File $file -Verbose
|
||||
|
@ -116,7 +116,7 @@ To use this script, run the following in PowerShell:
|
|||
.. code-block:: guess
|
||||
|
||||
$url = "https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1"
|
||||
$file = "$env:SystemDrive\temp\ConfigureRemotingForAnsible.ps1"
|
||||
$file = "$env:temp\ConfigureRemotingForAnsible.ps1"
|
||||
|
||||
(New-Object -TypeName System.Net.WebClient).DownloadFile($url, $file)
|
||||
|
||||
|
|
Loading…
Reference in a new issue