T
T
Today I learned
Search…
README
powershell
How to install PowerShell core on MacOS
How to select custom attributes on an object
How to run powershell in 32 bit mode within 64 bit
How to remove special chars in JSON file format
PowerShell basics
How to install BizTalk roles and features via PowerShell
Check if an AD account is locked
How to uninstall a BizTalk application
Set Powershell to skip SSL certificate checks
How to enable PS Remoting
How to check the system up time
How to use a Select-Object to create your custom object array for you
How to query the Internet behind a NTLM Proxy on a corporate network
Check .NET Framework versions installed
servicefabric
vscode
biztalk
sql
octopus
soapui
nuget
git
Jira
AzureDevOps
domains
azure
jenkins
iis
dotnet
Powered By
GitBook
How to install PowerShell core on MacOS
NOTE: Original instructions are
here
, I have just duplicated here for easy access.
How to install
Do the following from the macOS console:
Install
Homebrew
. If you dont already have it, run this:
1
/usr/bin/ruby -e
"
$(
curl
-fsSL https://raw.githubusercontent.com/Homebrew/install/master/install
)
"
Copied!
Install
Homebrew-Cask
so future installations of software via brew is much nicer.
1
brew tap caskroom/cask
Copied!
Now you can install PowerShell by running:
1
brew cask
install
powershell
Copied!
You can be sure it is working by running:
1
pwsh
Copied!
This should give you the powershell prompt and away you go!
How to upgrade
Run the following from the console:
1
brew update
2
brew cask upgrade powershell
Copied!
That should do it.
How to re-install
If for whatever reason you want to reinstall PowerShell use:
1
brew cask reinstall powershell
Copied!
How to remove
If you are nuts and want to remove PowerShell from macOS run:
1
brew cask uninstall powershell
Copied!
Previous
powershell
Next
How to select custom attributes on an object
Last modified
2yr ago
Copy link
Contents
How to install
How to upgrade
How to re-install
How to remove