mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00: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:
committed by
Jordan Borean
parent
6d830166e9
commit
4ba29c8bf1
@@ -35,7 +35,7 @@ This is an example of how to run this script from PowerShell:
|
|||||||
.. code-block:: guess
|
.. code-block:: guess
|
||||||
|
|
||||||
$url = "https://raw.githubusercontent.com/jborean93/ansible-windows/master/scripts/Upgrade-PowerShell.ps1"
|
$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"
|
$username = "Administrator"
|
||||||
$password = "Password"
|
$password = "Password"
|
||||||
|
|
||||||
@@ -93,7 +93,7 @@ The following PowerShell command will install the hotfix:
|
|||||||
.. code-block:: guess
|
.. code-block:: guess
|
||||||
|
|
||||||
$url = "https://raw.githubusercontent.com/jborean93/ansible-windows/master/scripts/Install-WMF3Hotfix.ps1"
|
$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)
|
(New-Object -TypeName System.Net.WebClient).DownloadFile($url, $file)
|
||||||
powershell.exe -ExecutionPolicy ByPass -File $file -Verbose
|
powershell.exe -ExecutionPolicy ByPass -File $file -Verbose
|
||||||
@@ -116,7 +116,7 @@ To use this script, run the following in PowerShell:
|
|||||||
.. code-block:: guess
|
.. code-block:: guess
|
||||||
|
|
||||||
$url = "https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1"
|
$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)
|
(New-Object -TypeName System.Net.WebClient).DownloadFile($url, $file)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user