diff --git a/powershell-install/.gitignore b/powershell-install/.gitignore deleted file mode 100644 index f66fce3..0000000 --- a/powershell-install/.gitignore +++ /dev/null @@ -1 +0,0 @@ -install.sh diff --git a/powershell-install/Learn Windows PowerShell 3 in a Month of Lunches.pdf b/powershell-install/Learn Windows PowerShell 3 in a Month of Lunches.pdf deleted file mode 100644 index 6ebfd2b..0000000 Binary files a/powershell-install/Learn Windows PowerShell 3 in a Month of Lunches.pdf and /dev/null differ diff --git a/powershell-install/README.md b/powershell-install/README.md deleted file mode 100644 index 238ec8f..0000000 --- a/powershell-install/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# PowerShell Installation Scripts - -I have included scripts from the official Microsoft documentation on installing PowerShell Core on macOS and Ubuntu Distributions. - -Along with those scripts, I have also included the Third Revision of "Learn Windows PowerShell 3 in a Month Of Lunches". - -Enjoy this, and make things friends! \ No newline at end of file diff --git a/powershell-install/macos-pwsh-install.sh b/powershell-install/macos-pwsh-install.sh deleted file mode 100755 index 957e2fa..0000000 --- a/powershell-install/macos-pwsh-install.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -##################################################### -# Powershell Installation Script. macOS and Linux # -##################################################### - -echo "Installing Homebrew" -# Install Homebrew -ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" - -echo "Install Cask" -# Install Cask -brew install caskroom/cask/brew-cask - -echo "Using Cask to install Powershell" -# Install Powershell Using Cask -brew cask install powershell - -read -p "The installation has completed. Use pwsh to user PowerShell" \ No newline at end of file diff --git a/powershell-install/ubuntu-pwsh-install.sh b/powershell-install/ubuntu-pwsh-install.sh deleted file mode 100755 index a048090..0000000 --- a/powershell-install/ubuntu-pwsh-install.sh +++ /dev/null @@ -1,27 +0,0 @@ -######################################### -# Ubuntu PowerShell Installation Script # -# Created by Blake Ridgway # -# libicu52 Package location # -# https://debian.pkgs.org/8/debian-main-amd64/libicu52_52.1-8+deb8u7_amd64.deb.html -######################################### - - -# Download the Microsoft repository GPG keys -wget -q https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb - -# Register the Microsoft repository GPG keys -sudo dpkg -i packages-microsoft-prod.deb - -# Update the list of products -sudo apt update; sudo apt upgrade - -# Downloads the libicu52 dependecy -wget -q http://ftp.br.debian.org/debian/pool/main/i/icu/libicu52_52.1-8+deb8u7_amd64.deb - -# Installs the libicu52 dependecy -sudo dpkg -i libicu52_52.1-8+deb8u7_amd64.deb - -# Install PowerShell -sudo apt-get install -y powershell - -echo "The installation has completed. Use pwsh to user PowerShell"