Skip to content

Commit e1ebff7

Browse files
committed
(doc) Powershell -> PowerShell
1 parent 4c09be3 commit e1ebff7

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

BuildScripts/releaseNotes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<releaseNotes>
22
- Revert vendored Chocolatey to stable 0.10.5
33
- Add a ShowRibbon for Windows Explorer
4-
- Use System.IO.Compression.FileSystem for boxstarter module expansion on modern Powershell versions
4+
- Use System.IO.Compression.FileSystem for boxstarter module expansion on modern PowerShell versions
55
- Add file64 param to fix 64 bit binary installs
66
</releaseNotes>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Repeatable, reboot resilient windows environment installations made easy using C
1111
* Integrates with Hyper-V and Windows Azure VMs supporting checkpoint restore and creation
1212
* Installation packages build on top of [Chocolatey](https://chocolatey.org) package management
1313
* Easily install with just a [Gist and the Boxstarter Web Launcher](https://boxstarter.org/WebLauncher) or [create a private repository on a thumb drive or network share](https://boxstarter.org/InstallingPackages#InstallFromShare)
14-
* Works on Window 7/2008 R2 and up with Powershell 2.0 and higher
14+
* Works on Window 7/2008 R2 and up with PowerShell 2.0 and higher
1515
* Lots of Windows configuration utilities including installing critical updates, changing windows explorer options, and more.
1616

1717
## Quickly install your favorite applications and settings, on any machine, with a gist! No pre-installed software needed.
@@ -46,7 +46,7 @@ Install-BoxstarterPackage -ComputerName win7 `
4646

4747
![Remote Install](Web/Images/result.png)
4848

49-
**NOTE:** PowerShell Remoting must be enabled on the remote machine. Launch a Powershell Console as administrator:
49+
**NOTE:** PowerShell Remoting must be enabled on the remote machine. Launch a PowerShell Console as administrator:
5050

5151
```powershell
5252
Enable-PSRemoting -Force

Web/InstallingPackages.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ $result = (new-Object -TypeName BoxstarterConnectionConfig -ArgumentList machine
149149
</pre>
150150
<h3>Troubleshooting Remote Installations</h3>
151151
<h4>Establishing remote connections with servers not on the local subnet</h4>
152-
<p>By default, server versions of Windows have a firewall rule restricting traffic that is not on the local subnet. There may be circumstances where you might want to connect over the public Internet to another machine. This can be done by manually enabling the "WINRM-HTTP-In-TCP-PUBLIC" firewall rule using the Powershell 3.0 <code>Set-NetFirewallRule</code> or the command line <code>netsh advfirewall</code> command.</p>
152+
<p>By default, server versions of Windows have a firewall rule restricting traffic that is not on the local subnet. There may be circumstances where you might want to connect over the public Internet to another machine. This can be done by manually enabling the "WINRM-HTTP-In-TCP-PUBLIC" firewall rule using the PowerShell 3.0 <code>Set-NetFirewallRule</code> or the command line <code>netsh advfirewall</code> command.</p>
153153
<p>Client versions of Windows will only allow PSRemoting on Private and Domain networks. Clients on PowerShell 3.0 and higher can provide the <code>-SkipNetorkProfileCheck</code> to Enable-PSRemoting to allow connections to public computers on the local subnet. Boxstarter uses this parameter when enabling Remoting on clients. Like with Server versions, you can enable a firewall rule to work around the local subnet restriction. </p>
154154
<p>Windows 7 OSs running PowerShell 2.0 can not enable PSRemoting when on a public network connection. You will need to change your connection type to a private or Domain based connection.</p>
155155

Web/Learn/RemotePackageWithArtifacts.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<h3>Step 3</h3>
2424
<h4><span class="text-primary">Invoke the Boxstarter shell</span></h4>
2525
<img src="~/Images/shortcut.png">
26-
<p>The Boxstarter install creates a shortcut to a shell that provides the easiest way to access Boxstarter commands especially if you are not familiar with Powershell. See <a href="~/UsingBoxstarter">Using Boxstarter Commands</a> for information about running Boxstarter in your own shell.</p>
26+
<p>The Boxstarter install creates a shortcut to a shell that provides the easiest way to access Boxstarter commands especially if you are not familiar with PowerShell. See <a href="~/UsingBoxstarter">Using Boxstarter Commands</a> for information about running Boxstarter in your own shell.</p>
2727

2828
<h3>Step 4</h3>
2929
<h4><span class="text-primary">Create the Package</span></h4>
@@ -80,7 +80,7 @@ try {
8080
<pre>Invoke-BoxstarterBuild -Name NugetServer</pre>
8181

8282
<h3>Step 7</h3>
83-
<h4><span class="text-primary">Ensure Powershell Remoting is enabled on the target machine</span></h4>
83+
<h4><span class="text-primary">Ensure PowerShell Remoting is enabled on the target machine</span></h4>
8484
<p>In many cases this step is unnecessary. If you are using either the builtin administrator account or a domain account with admin privileges on a server operating system, remoting is on by default. Otherwise, run the following command on the machine with a user who has admin privileges:</p>
8585
<pre>Enable-PSRemoting -Force</pre>
8686

Web/Learn/SimplePackage.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<h3>Step 2</h3>
1919
<h4><span class="text-primary">Create your installer script</span></h4>
20-
<p>Open your favorite text editor and compose your installer. Although this can contain any valid Powershell, you really do not need to know any Powershell to create your script. This could just be a collection of Boxstarter commands. Here is an example:</p>
20+
<p>Open your favorite text editor and compose your installer. Although this can contain any valid PowerShell, you really do not need to know any PowerShell to create your script. This could just be a collection of Boxstarter commands. Here is an example:</p>
2121
<pre>
2222
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
2323
Enable-RemoteDesktop
@@ -35,7 +35,7 @@ Install-WindowsUpdate -AcceptEula
3535
<h3>Step 3</h3>
3636
<h4><span class="text-primary">Invoke the Boxstarter shell</span></h4>
3737
<img src="~/Images/shortcut.png">
38-
<p>The Boxstarter install creates a shortcut to a shell that provides the easiest way to access Boxstarter commands especially if you are not familiar with Powershell. See <a href="~/UsingBoxstarter">Using Boxstarter Commands</a> for information about running Boxstarter in your own shell.</p>
38+
<p>The Boxstarter install creates a shortcut to a shell that provides the easiest way to access Boxstarter commands especially if you are not familiar with PowerShell. See <a href="~/UsingBoxstarter">Using Boxstarter Commands</a> for information about running Boxstarter in your own shell.</p>
3939

4040
<h3>Step 4</h3>
4141
<h4><span class="text-primary">Convert your Script to a Package</span></h4>

deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Now Build the artifacts from the root of the repository:
2020
./build quick-deploy
2121
```
2222

23-
If this is the first time you are running this command, it may take extra time to run as it ensures all prerequisites are installed (VS build tools, Azure Powershell module, etc.).
23+
If this is the first time you are running this command, it may take extra time to run as it ensures all prerequisites are installed (VS build tools, Azure PowerShell module, etc.).
2424

2525
This will compile the Boxstarter website and ClickOnce application and also sign the ClickOnce app. It will bump the version where the build version will be the number of commits since the minor version was tagged. It will update the Boxstarter homepage HTML to reflect this version and create new Chocolatey packages for all Boxstarter packages.
2626

0 commit comments

Comments
 (0)