Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Fix Powershell installation on Kali #1363

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions setup/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ function install_powershell() {
# Install prerequisites
apt-get update
apt-get install -y curl gnupg apt-transport-https
# Download and install libcui from Debian apt repo. (powershell dependency not in kali repo)
wget http://ftp.us.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u2_amd64.deb
dpkg -i libicu57_57.1-6+deb9u2_amd64.deb
# Import the public repository GPG keys
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
# Register the Microsoft Product feed
Expand Down