Skip to content

Commit 943ebb1

Browse files
authored
chore: Update repo urls (#159)
1 parent da7b86c commit 943ebb1

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

docs/blog/posts/powershell-or-ise.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ categories:
1010

1111
On an standard Windows operating system you typically have two choices for how to use PowerShell. More than that if you consider the x86 (32-bit) variants! When you're getting started, it's difficult to know which to use, and why. When you click the Start menu button or press your Windows key (++win++), and type "powershell", here's what you get...
1212

13-
![Start Menu screenshot showing PowerShell](https://github.com/MilestoneSystemsInc/PowerShellSamples/blob/main/Getting-Started/images/Start-Menu.png?raw=true)
13+
![Start Menu screenshot showing PowerShell](../../assets/images/vscode.png)
1414

1515
<!-- more -->
1616

1717
## Windows PowerShell
1818

1919
This is your go-to option for entering one command at a time to perform a simple, one-time task. It's not great for writing out longer, complex scripts since every time you press ++enter++ it will evaluate what you've typed and run it. I often use the Windows PowerShell terminal to run single commands like `ping`, and `Test-NetConnection`, or sometimes for one-off tasks that require multiple commands that I'm comfortable running in a terminal instead of an editer like ISE.
2020

21-
![Windows PowerShell screenshot](https://github.com/MilestoneSystemsInc/PowerShellSamples/blob/main/Getting-Started/images/Windows-PowerShell.png?raw=true)
21+
![Windows PowerShell screenshot](../../assets/images/windows-powershell.png)
2222

2323
## Windows PowerShell ISE
2424

@@ -28,7 +28,7 @@ This is your go-to option for entering one command at a time to perform a simple
2828

2929
There are better environments to write PowerShell code in than the ISE. For instance, Visual Studio Code is a *free* editor from Microsoft with extensions for PowerShell which make it a far more productive environment for larger PowerShell projects. However, the ISE is available on *every* Windows computer and offers the least intimidating starting point for your PowerShell learning path.
3030

31-
![PowerShell ISE screenshot](https://github.com/MilestoneSystemsInc/PowerShellSamples/blob/main/Getting-Started/images/PowerShell-ISE.png?raw=true)
31+
![PowerShell ISE screenshot](../../assets/images/powershell-ise.png)
3232

3333
## Windows PowerShell (x86) and Windows PowerShell ISE (x86)
3434

@@ -38,7 +38,7 @@ These are the 32-bit equivalents of the same two PowerShell environments already
3838

3939
Microsoft's VSCode is a fantastic environment for working on many different kinds of projects from PowerShell, to HTML/CSS/JavaScript, to Python and more. It's a text editor with extensions which make it a comfortable environment for working with multiple files of different types, and even running/executing code. It's an integral part of the maintenance of MilestonePSTools and other PowerShell projects we've worked on, and as you get more comfortable with PowerShell, I highly recommend trying it out. The script below will automate the installation of code, as well as my favorite extensions for working with PowerShell and GitHub.
4040

41-
![Visual Studio Code screenshot](https://github.com/MilestoneSystemsInc/PowerShellSamples/blob/main/Getting-Started/images/VSCode.png?raw=true)
41+
![Visual Studio Code screenshot](../../assets/images/vscode.png)
4242

4343
```powershell
4444
$InformationPreference = 'Continue'

mkdocs.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ site_dir: Output/site
44
site_description: "Configure. Automate. Report. You decide what is possible on the Open Platform."
55
docs_dir: docs
66
remote_branch: gh-pages
7-
repo_name: milestonesystemsinc/powershellsamples
8-
repo_url: https://github.com/MilestoneSystemsInc/PowerShellSamples
9-
edit_uri: ""
7+
repo_name: milestonesys/MilestonePSTools
8+
repo_url: https://github.com/milestonesys/MilestonePSTools
9+
edit_uri: "edit/main/docs/"
1010
copyright: <a href="#__consent" class="md-button">Change cookie settings</a><br/> Copyright &copy; 2019-2025 Milestone Systems A/S. All rights reserved.
1111

1212
theme:
@@ -16,6 +16,8 @@ theme:
1616
icon:
1717
logo: milestone/logo-white
1818
repo: fontawesome/brands/github
19+
edit: material/pencil
20+
view: material/eye
1921
font:
2022
text: Open Sans
2123
code: Cascadia Code
@@ -30,6 +32,7 @@ theme:
3032
name: Switch to light mode
3133
features:
3234
- announce.dismiss
35+
- content.action.edit
3336
- content.code.annotate
3437
- content.code.copy
3538
- content.footnote.tooltips

0 commit comments

Comments
 (0)