Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
cd3edf1e
Commit
cd3edf1e
authored
Jun 19, 2014
by
Craig Ackerman
Committed by
Matt Martz
Jun 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added FW commands to allow access to HTTPS listener
parent
f42905a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
docsite/rst/intro_windows.rst
+1
-1
examples/scripts/upgrade_to_ps3.ps1
+3
-2
No files found.
docsite/rst/intro_windows.rst
View file @
cd3edf1e
...
...
@@ -102,7 +102,7 @@ Alternatively, a self-signed SSL certificate can be generated in powershell usin
# Delete the http listener
$ WinRM delete winrm/config/listener?Address=*+Transport=HTTP
Again, if your Windows firewall is enabled,
you must also run the following command to allow firewall access to the public firewall profile
:
Again, if your Windows firewall is enabled,
the following command to allow firewall access to the HTTPS listener
:
.. code-block:: bash
...
...
examples/scripts/upgrade_to_ps3.ps1
View file @
cd3edf1e
...
...
@@ -32,7 +32,6 @@ function download-file
$client
=
new-object
system.net.WebClient
$client
.Headers.Add
(
"user-agent"
,
"PowerShell"
)
$client
.downloadfile
(
$path
,
$local
)
write-host
"file downloaded successfully"
}
if
(!(
test-path
$powershellpath
))
...
...
@@ -56,6 +55,7 @@ if (!(test-path $powershellpath))
# If the Operating System is above 6.2, then you already have PowerShell Version > 3
if
([
Environment]::OSVersion.Version.Major -gt 6
)
{
write-host
"OS is new; upgrade not needed."
Exit
}
...
...
@@ -78,5 +78,6 @@ else
$FileName
=
$DownLoadUrl
.Split
(
'/'
)[
-1]
download-file
$downloadurl
"
$powershellpath
\
$filename
"
write-host
"Download successful"
exit
.
"
$powershellpath
\
$filename
"
/quiet /log
"C:\powershell\install.log"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment