@@ -16,7 +16,7 @@ As of January 14, 2020, Windows Server 2008 is [no longer supported](https://www
16
16
```
17
17
$serviceKey = "HKLM:\SYSTEM\CurrentControlSet\Services\AmazonSSMAgent"
18
18
$keyInfo = (Get-Item -Path $serviceKey).GetValue("Environment")
19
- $proxyVariables = @("http_proxy=hostname:port", "no_proxy=169.254.169.254")
19
+ $proxyVariables = @("http_proxy=hostname:port", "https_proxy=hostname:port", " no_proxy=169.254.169.254")
20
20
21
21
If($keyInfo -eq $null)
22
22
{
@@ -34,7 +34,7 @@ After running the preceding command, you can review the SSM Agent logs to confir
34
34
2020-02-24 15:31:54 INFO Getting WinHTTP proxy default configuration: The operation completed successfully.
35
35
2020-02-24 15:31:54 INFO Proxy environment variables:
36
36
2020-02-24 15:31:54 INFO http_proxy: hostname:port
37
- 2020-02-24 15:31:54 INFO https_proxy:
37
+ 2020-02-24 15:31:54 INFO https_proxy: hostname:port
38
38
2020-02-24 15:31:54 INFO no_proxy: 169.254.169.254
39
39
2020-02-24 15:31:54 INFO Starting Agent: amazon-ssm-agent - v2.3.871.0
40
40
2020-02-24 15:31:54 INFO OS: windows, Arch: amd64
@@ -93,4 +93,4 @@ netsh winhttp show proxy
93
93
netsh winhttp set proxy proxy-server="hostname:port" bypass-list="169.254.169.254"
94
94
```
95
95
96
- For more information about using Run Command, see [ Running commands using Systems Manager Run Command] ( run-command.md ) \.
96
+ For more information about using Run Command, see [ Running commands using Systems Manager Run Command] ( run-command.md ) \.
0 commit comments