<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Setup on JournalCTL</title><link>https://journalctl.io/tags/setup/</link><description>Recent content in Setup on JournalCTL</description><generator>Hugo -- gohugo.io</generator><language>en-AU</language><copyright>© 2026 Pralaya Panta</copyright><lastBuildDate>Thu, 05 Feb 2026 10:33:22 +1000</lastBuildDate><atom:link href="https://journalctl.io/tags/setup/index.xml" rel="self" type="application/rss+xml"/><item><title>PowerShell Basics #1: Setting Up Your Environment</title><link>https://journalctl.io/posts/get-started-with-powershell/</link><pubDate>Thu, 05 Feb 2026 10:33:22 +1000</pubDate><guid>https://journalctl.io/posts/get-started-with-powershell/</guid><description>&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PowerShell is a cross-platform, object-oriented shell &amp;amp; scripting language for Windows, Linux, and macOS.&lt;/li&gt;
&lt;li&gt;Install PowerShell 7+ Core via Winget alongside Windows Terminal for the optimal command-line experience.&lt;/li&gt;
&lt;li&gt;Understand the difference between legacy Windows PowerShell 5.1 and modern cross-platform PowerShell 7+.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;&lt;p&gt;PowerShell is a command-line shell and scripting language from Microsoft for Windows, Linux, and macOS. It helps automate administrative tasks and manage infrastructure cleanly.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Command-line shell:&lt;/strong&gt; Interactive prompt with tab completion &amp;amp; predictive IntelliSense&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Scripting language:&lt;/strong&gt; Write complete, reusable scripts (.ps1) to automate complex workflows&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Object-oriented:&lt;/strong&gt; Commands (cmdlets) pass rich .NET objects through the pipeline, not raw text strings&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cross-platform:&lt;/strong&gt; Runs on Windows, Linux, and macOS (PowerShell 7+)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 class="relative group"&gt;Windows PowerShell 5.1 vs. PowerShell 7+
 &lt;div id="windows-powershell-51-vs-powershell-7" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#windows-powershell-51-vs-powershell-7" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Feature&lt;/th&gt;
					&lt;th&gt;Windows PowerShell 5.1&lt;/th&gt;
					&lt;th&gt;PowerShell 7+ (Core)&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Underlying Engine&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;.NET Framework (Windows only)&lt;/td&gt;
					&lt;td&gt;.NET 8+ (Cross-platform)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Supported OS&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;Windows 7 / 10 / 11 / Server&lt;/td&gt;
					&lt;td&gt;Windows, Linux, macOS&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Performance&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;Standard&lt;/td&gt;
					&lt;td&gt;High performance &amp;amp; parallel pipeline (ForEach-Object -Parallel)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Executable Name&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;powershell.exe&lt;/td&gt;
					&lt;td&gt;pwsh.exe&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Windows PowerShell 5.1 comes built into Windows and will remain for backward compatibility. Modern automation should target &lt;strong&gt;PowerShell 7+ (pwsh.exe)&lt;/strong&gt;.&lt;/p&gt;</description></item></channel></rss>