Skip to content

Commit ea79c97

Browse files
Add cross-platform installation to walkthrough (#4233)
1 parent cb9a847 commit ea79c97

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

package.json

+21-2
Original file line numberDiff line numberDiff line change
@@ -931,12 +931,31 @@
931931
"description": "Set up your environment and see what the PowerShell Extension in Visual Studio Code can help you achieve!",
932932
"steps": [
933933
{
934-
"id": "version",
934+
"id": "install-windows",
935935
"title": "Choose a version of PowerShell",
936936
"media": {
937937
"markdown": "media/walkthrough.md"
938938
},
939-
"description": "There are multiple versions of PowerShell that you can use with the extension! Choose the version that best fits your needs here.\nFor the newest version of PowerShell, install PowerShell 7 or run ``iex \"& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI\"``\n[Install PowerShell 7](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.2)\n⭐️ Latest version ― if you want the latest and greatest capabilities.\n💻 Can be used to manage multiple operating systems.\n👥 [Open Source](https://github.com/powershell/powershell) and community-focused!"
939+
"description": "There are multiple versions of PowerShell that you can use with the extension! Choose the version that best fits your needs here.\nFor the newest version of PowerShell, install PowerShell 7 or run ``iex \"& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI\"``\n[Install PowerShell 7](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows)\n⭐️ Latest version ― if you want the latest and greatest capabilities.\n💻 Can be used to manage multiple operating systems.\n👥 [Open source](https://github.com/powershell/powershell) and community-focused!",
940+
"when": "isWindows"
941+
},
942+
{
943+
"id": "install-mac",
944+
"title": "Install PowerShell",
945+
"media": {
946+
"markdown": "media/walkthrough.md"
947+
},
948+
"description": "💻 PowerShell 7 is cross-platform! See the instructions to [install on macOS](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-macos).\n⭐️ If you already have [Homebrew](https://brew.sh) installed, you can run ``brew install --cask powershell`` to install ``pwsh``.\n👥 PowerShell is [open source](https://github.com/powershell/powershell) and community-focused!",
949+
"when": "isMac"
950+
},
951+
{
952+
"id": "install-linux",
953+
"title": "Install PowerShell",
954+
"media": {
955+
"markdown": "media/walkthrough.md"
956+
},
957+
"description": "💻 PowerShell 7 is cross-platform!\n⭐️ See the instructions to [install on Linux](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-linux).\n👥 PowerShell is [open source](https://github.com/powershell/powershell) and community-focused!",
958+
"when": "isLinux"
940959
},
941960
{
942961
"id": "file",

0 commit comments

Comments
 (0)