summaryrefslogtreecommitdiff
path: root/examples/scripts
diff options
context:
space:
mode:
authorcipress <ciprartins@gmail.com>2014-11-04 17:38:08 +0100
committercipress <ciprartins@gmail.com>2014-11-04 17:38:08 +0100
commitc1fc0ca4fd1b3414b2745b303e8afdd5325f198a (patch)
tree07ab40be65014a7278bd7d34a852bf95d828dd1f /examples/scripts
parentafd8cca3452c0700e154a4f430aa73d97efe162a (diff)
downloadansible-c1fc0ca4fd1b3414b2745b303e8afdd5325f198a.tar.gz
Found issue on different System architecture.
On x86 systems doesn't work so, starting by the line 63 we check if the architecture is x86 or x64.
Diffstat (limited to 'examples/scripts')
-rw-r--r--examples/scripts/upgrade_to_ps3.ps115
1 files changed, 13 insertions, 2 deletions
diff --git a/examples/scripts/upgrade_to_ps3.ps1 b/examples/scripts/upgrade_to_ps3.ps1
index 693088b75f..c9f55267e4 100644
--- a/examples/scripts/upgrade_to_ps3.ps1
+++ b/examples/scripts/upgrade_to_ps3.ps1
@@ -62,13 +62,24 @@ if ([Environment]::OSVersion.Version.Major -gt 6)
$osminor = [environment]::OSVersion.Version.Minor
+$architecture = $ENV:PROCESSOR_ARCHITECTURE
+
+if ($architecture -eq "AMD64")
+{
+ $architecture = "x64"
+}
+else
+{
+ $architecture = "x86"
+}
+
if ($osminor -eq 1)
{
- $DownloadUrl = "http://download.microsoft.com/download/E/7/6/E76850B8-DA6E-4FF5-8CCE-A24FC513FD16/Windows6.1-KB2506143-x64.msu"
+ $DownloadUrl = "http://download.microsoft.com/download/E/7/6/E76850B8-DA6E-4FF5-8CCE-A24FC513FD16/Windows6.1-KB2506143-" + $architecture + ".msu"
}
elseif ($osminor -eq 0)
{
- $DownloadUrl = "http://download.microsoft.com/download/E/7/6/E76850B8-DA6E-4FF5-8CCE-A24FC513FD16/Windows6.0-KB2506146-x64.msu"
+ $DownloadUrl = "http://download.microsoft.com/download/E/7/6/E76850B8-DA6E-4FF5-8CCE-A24FC513FD16/Windows6.0-KB2506146-" + $architecture + ".msu"
}
else
{