2017-03-22 06:20:11 +08:00
# ![logo][] PowerShell
2015-07-02 06:06:29 +08:00
2016-08-18 23:55:00 +08:00
Welcome to the PowerShell GitHub Community!
2022-11-22 12:02:09 +08:00
[PowerShell ](https://learn.microsoft.com/powershell/scripting/overview ) is a cross-platform (Windows, Linux, and macOS) automation and configuration tool/framework that works well with your existing tools and is optimized
2017-07-09 06:20:09 +08:00
for dealing with structured data (e.g. JSON, CSV, XML, etc.), REST APIs, and object models.
2023-10-19 11:15:55 +08:00
It includes a command-line shell, an associated scripting language, and a framework for processing cmdlets.
2016-07-28 05:47:03 +08:00
2018-02-03 10:35:59 +08:00
[logo]: https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/ps_black_64.svg?sanitize=true
2016-03-31 06:13:29 +08:00
2019-03-12 06:20:36 +08:00
## Windows PowerShell vs. PowerShell Core
2017-07-09 06:20:09 +08:00
2023-10-19 11:15:55 +08:00
Although this repository started as a fork of the Windows PowerShell codebase, changes made in this repository are not automatically ported back to Windows PowerShell 5.1.
2019-11-19 12:22:12 +08:00
This also means that [issues tracked here][issues] are only for PowerShell Core 6 and higher.
2023-10-19 11:15:55 +08:00
Windows PowerShell specific issues should be reported with the [Feedback Hub app][feedback-hub], by choosing "Apps > PowerShell" in the category.
2017-07-09 06:20:09 +08:00
2019-11-19 12:22:12 +08:00
[issues]: https://github.com/PowerShell/PowerShell/issues
2021-06-15 01:16:51 +08:00
[feedback-hub]: https://support.microsoft.com/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332
2017-07-09 06:20:09 +08:00
2017-03-22 06:20:11 +08:00
## New to PowerShell?
2016-03-31 06:13:29 +08:00
2023-10-19 11:15:55 +08:00
If you are new to PowerShell and want to learn more, we recommend reviewing the [getting started][] documentation.
2016-01-23 03:36:23 +08:00
2023-07-12 07:33:07 +08:00
[getting started]: https://learn.microsoft.com/powershell/scripting/learn/more-powershell-learning
2016-03-31 03:06:57 +08:00
2017-03-22 06:20:11 +08:00
## Get PowerShell
2016-03-31 06:13:29 +08:00
2016-07-28 05:47:03 +08:00
You can download and install a PowerShell package for any of the following platforms.
2020-03-05 01:32:21 +08:00
| Supported Platform | Download (LTS) | Downloads (stable) | Downloads (preview) | How to Install |
| -------------------------------------------| ------------------------| ------------------------| ----------------------| ------------------------------|
2020-11-13 06:19:39 +08:00
| [Windows (x64)][corefx-win] | [.msi][lts-windows-64] | [.msi][rl-windows-64] | [.msi][pv-windows-64] | [Instructions][in-windows] |
| [Windows (x86)][corefx-win] | [.msi][lts-windows-86] | [.msi][rl-windows-86] | [.msi][pv-windows-86] | [Instructions][in-windows] |
2023-03-04 05:41:26 +08:00
| [Ubuntu 22.04][corefx-linux] | [.deb][lts-deb] | [.deb][rl-ubuntu22] | [.deb][pv-deb] | [Instructions][in-ubuntu22] |
2021-11-09 02:39:29 +08:00
| [Ubuntu 20.04][corefx-linux] | [.deb][lts-deb] | [.deb][rl-ubuntu20] | [.deb][pv-deb] | [Instructions][in-ubuntu20] |
| [Ubuntu 18.04][corefx-linux] | [.deb][lts-deb] | [.deb][rl-ubuntu18] | [.deb][pv-deb] | [Instructions][in-ubuntu18] |
2023-03-04 05:41:26 +08:00
| [Ubuntu 16.04][corefx-linux] | [.deb][lts-deb] | N/A | N/A | [Instructions][in-ubuntu16] |
2023-07-12 07:33:07 +08:00
| [Debian 10][corefx-linux] | [.deb][lts-deb] | [.deb][rl-debian10] | [.deb][pv-deb] | [Instructions][in-deb10] |
2021-11-09 02:39:29 +08:00
| [Debian 11][corefx-linux] | [.deb][lts-deb] | [.deb][rl-debian11] | [.deb][pv-deb] | |
| [CentOS 7][corefx-linux] | [.rpm][lts-rh] | [.rpm][rl-centos] | [.rpm][pv-rpm] | [Instructions][in-centos] |
| [CentOS 8][corefx-linux] | [.rpm][lts-rh] | [.rpm][rl-centos8] | [.rpm][pv-rpm] | |
| [Red Hat Enterprise Linux 7][corefx-linux] | [.rpm][lts-rh] | [.rpm][rl-centos] | [.rpm][pv-rpm] | [Instructions][in-rhel7] |
| [openSUSE 42.3][corefx-linux] | [.rpm][lts-rh] | [.rpm][rl-centos] | [.rpm][pv-rpm] | [Instructions][in-opensuse] |
2022-07-26 05:15:58 +08:00
| [Fedora 35][corefx-linux] | [.rpm][lts-rh] | [.rpm][rl-centos] | [.rpm][pv-rpm] | [Instructions][in-fedora] |
2021-07-23 08:02:01 +08:00
| [macOS 10.13+ (x64)][corefx-macos] | [.pkg][lts-macos] | [.pkg][rl-macos] | [.pkg][pv-macos] | [Instructions][in-macos] |
2023-03-04 05:41:26 +08:00
| [macOS 11+ (arm64)][corefx-macos] | [.pkg][lts-macos-arm64] | [.pkg][rl-macos-arm64] | [.pkg][pv-macos-arm64]| [Instructions][in-macos] |
2020-03-05 01:32:21 +08:00
| Docker | | | | [Instructions][in-docker] |
2017-12-15 05:15:19 +08:00
You can download and install a PowerShell package for any of the following platforms, **which are supported by the community.**
2018-03-24 07:48:24 +08:00
| Platform | Downloads (stable) | Downloads (preview) | How to Install |
| -------------------------| ------------------------| ----------------------------- | ------------------------------|
| Arch Linux | | | [Instructions][in-archlinux] |
2023-03-04 05:41:26 +08:00
| Kali Linux | [.deb][rl-deb] | [.deb][pv-deb] | [Instructions][in-kali] |
2018-07-20 06:15:44 +08:00
| Many Linux distributions | [Snapcraft][rl-snap] | [Snapcraft][pv-snap] | |
2017-10-25 02:13:17 +08:00
2023-10-19 11:15:55 +08:00
You can also download the PowerShell binary archives for Windows, macOS, and Linux.
2017-10-25 02:13:17 +08:00
2020-05-20 02:10:43 +08:00
| Platform | Downloads (stable) | Downloads (preview) | How to Install |
| ---------------| --------------------------------------------------- | ------------------------------------------------| -----------------------------------------------|
| Windows | [32-bit][rl-winx86-zip]/[64-bit][rl-winx64-zip] | [32-bit][pv-winx86-zip]/[64-bit][pv-winx64-zip] | [Instructions][in-windows-zip] |
2021-08-24 06:08:41 +08:00
| macOS (x64) | [64-bit][rl-macos-tar] | [64-bit][pv-macos-tar] | [Instructions][in-tar-macos] |
2021-11-09 02:39:29 +08:00
| macOS (arm64) | [64-bit][rl-macos-tar-arm64] | [64-bit][pv-macos-tar-arm64] | [Instructions][in-tar-macos] |
2020-05-20 02:10:43 +08:00
| Linux | [64-bit][rl-linux-tar] | [64-bit][pv-linux-tar] | [Instructions][in-tar-linux] |
2023-03-04 05:41:26 +08:00
| Windows (ARM) | [64-bit][rl-winarm64] (preview) | [64-bit][pv-winarm64] | [Instructions][in-arm] |
| Raspbian (ARM) | [32-bit][rl-arm32]/[64-bit][rl-arm64] | [32-bit][pv-arm32]/[64-bit][pv-arm64] | [Instructions][in-raspbian] |
2020-03-05 01:32:21 +08:00
2023-12-06 03:40:18 +08:00
[lts-windows-86]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-x86.msi
[lts-windows-64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-x64.msi
[lts-deb]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[lts-rh]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-1.rh.x86_64.rpm
[lts-macos]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-osx-x64.pkg
[lts-macos-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-osx-arm64.pkg
2023-11-17 02:04:58 +08:00
[rl-windows-64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-x64.msi
[rl-windows-86]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-x86.msi
[rl-deb]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[rl-ubuntu22]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[rl-ubuntu20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[rl-ubuntu18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[rl-debian10]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[rl-debian11]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell_7.4.0-1.deb_amd64.deb
[rl-centos]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-1.rh.x86_64.rpm
[rl-centos8]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-1.rh.x86_64.rpm
[rl-macos]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-osx-x64.pkg
[rl-macos-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-osx-arm64.pkg
[rl-winarm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-arm64.zip
[rl-winx86-zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-x86.zip
[rl-winx64-zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/PowerShell-7.4.0-win-x64.zip
[rl-macos-tar]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-osx-x64.tar.gz
[rl-macos-tar-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-osx-arm64.tar.gz
[rl-linux-tar]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-linux-x64.tar.gz
[rl-arm32]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-linux-arm32.tar.gz
[rl-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0/powershell-7.4.0-linux-arm64.tar.gz
2018-07-20 06:15:44 +08:00
[rl-snap]: https://snapcraft.io/powershell
2023-10-25 08:18:26 +08:00
[pv-windows-64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/PowerShell-7.4.0-rc.1-win-x64.msi
[pv-windows-86]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/PowerShell-7.4.0-rc.1-win-x86.msi
[pv-deb]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-preview_7.4.0-rc.1-1.deb_amd64.deb
[pv-rpm]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-preview-7.4.0_rc.1-1.rh.x86_64.rpm
[pv-macos]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-osx-x64.pkg
[pv-macos-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-osx-arm64.pkg
[pv-winarm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/PowerShell-7.4.0-rc.1-win-arm64.zip
[pv-winx86-zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/PowerShell-7.4.0-rc.1-win-x86.zip
[pv-winx64-zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/PowerShell-7.4.0-rc.1-win-x64.zip
[pv-macos-tar]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-osx-x64.tar.gz
[pv-macos-tar-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-osx-arm64.tar.gz
[pv-linux-tar]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-linux-x64.tar.gz
[pv-arm32]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-linux-arm32.tar.gz
[pv-arm64]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-rc.1/powershell-7.4.0-rc.1-linux-arm64.tar.gz
2018-07-20 06:15:44 +08:00
[pv-snap]: https://snapcraft.io/powershell-preview
2018-03-24 07:48:24 +08:00
2023-07-18 06:54:17 +08:00
[in-windows]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-windows
[in-ubuntu16]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#ubuntu-1604
[in-ubuntu18]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#ubuntu-1804
[in-ubuntu20]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#ubuntu-2004
2023-03-04 05:41:26 +08:00
[in-ubuntu22]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-on-linux?view=powershell-7.3#ubuntu
2023-07-18 06:54:17 +08:00
[in-deb10]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#debian-10
[in-centos]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#centos-7
[in-rhel7]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#red-hat-enterprise-linux-rhel-7
[in-opensuse]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#opensuse
[in-fedora]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#fedora
[in-archlinux]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#arch-linux
[in-macos]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-macos
2018-07-25 15:28:37 +08:00
[in-docker]: https://github.com/PowerShell/PowerShell-Docker
2023-07-18 06:54:17 +08:00
[in-kali]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#kali
[in-windows-zip]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-windows#zip
[in-tar-linux]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#binary-archives
[in-tar-macos]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-macos#binary-archives
[in-raspbian]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell-core-on-linux#raspbian
[in-arm]: https://learn.microsoft.com/powershell/scripting/install/powershell-core-on-arm
2023-03-04 05:41:26 +08:00
[corefx-win]:https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md#windows
[corefx-linux]:https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md#linux
[corefx-macos]:https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md#macos
2016-06-25 02:18:01 +08:00
2016-08-06 05:10:42 +08:00
To install a specific version, visit [releases ](https://github.com/PowerShell/PowerShell/releases ).
2016-07-14 06:59:08 +08:00
2017-03-22 06:20:11 +08:00
## Community Dashboard
2017-03-07 09:28:42 +08:00
2023-05-10 07:16:06 +08:00
[Dashboard ](https://aka.ms/PSPublicDashboard ) with visualizations for community contributions and project status using PowerShell, Azure, and PowerBI.
2017-03-07 09:28:42 +08:00
2020-04-24 14:01:47 +08:00
For more information on how and why we built this dashboard, check out this [blog post ](https://devblogs.microsoft.com/powershell/powershell-open-source-community-dashboard/ ).
2017-03-07 09:28:42 +08:00
2021-01-14 08:13:35 +08:00
## Discussions
2023-10-25 07:37:28 +08:00
[GitHub Discussions ](https://docs.github.com/discussions/quickstart ) is a feature to enable free and open discussions within the community
2021-01-14 08:13:35 +08:00
for topics that are not related to code, unlike issues.
2023-10-25 07:37:28 +08:00
This is an experiment we are trying in our repositories, to see if it helps move discussions out of issues so that issues remain actionable by the team or members of the community.
There should be no expectation that PowerShell team members are regular participants in these discussions.
2021-01-14 08:13:35 +08:00
Individual PowerShell team members may choose to participate in discussions, but the expectation is that community members help drive discussions so that team members
can focus on issues.
Create or join a [discussion ](https://github.com/PowerShell/PowerShell/discussions ).
2020-05-27 00:53:49 +08:00
## Chat
2016-08-18 23:44:07 +08:00
Want to chat with other members of the PowerShell community?
2023-10-19 11:15:55 +08:00
There are dozens of topic-specific channels on our community-driven PowerShell Virtual User Group, which you can join on:
2020-06-03 03:28:32 +08:00
2021-06-06 01:08:23 +08:00
* [Gitter ](https://gitter.im/PowerShell/PowerShell )
* [Discord ](https://discord.gg/PowerShell )
* [IRC ](https://web.libera.chat/#powershell ) on Libera.Chat
2020-05-27 00:53:49 +08:00
* [Slack ](https://aka.ms/psslack )
2017-03-22 06:20:11 +08:00
2017-06-08 07:25:32 +08:00
## Add-ons and libraries
2018-11-02 04:04:48 +08:00
[Awesome PowerShell ](https://github.com/janikvonrotz/awesome-powershell ) has a great curated list of add-ons and resources.
2017-06-08 07:25:32 +08:00
2017-03-22 06:20:11 +08:00
## Building the Repository
2016-07-28 05:47:03 +08:00
2016-08-27 03:08:50 +08:00
| Linux | Windows | macOS |
2016-07-28 05:47:03 +08:00
|--------------------------|----------------------------|------------------------|
2016-08-27 03:08:50 +08:00
| [Instructions][bd-linux] | [Instructions][bd-windows] | [Instructions][bd-macOS] |
2016-07-28 05:47:03 +08:00
2022-11-22 12:02:09 +08:00
If you have any problems building, consult the developer [FAQ][].
2016-07-29 03:45:31 +08:00
2016-10-13 04:34:24 +08:00
### Build status of nightly builds
2023-03-03 05:23:26 +08:00
| Azure CI (Windows) | Azure CI (Linux) | Azure CI (macOS) | CodeFactor Grade |
|:-----------------------------------------|:-----------------------------------------------|:-----------------------------------------------|:-------------------------|
| [![windows-nightly-image][]][windows-nightly-site] | [![linux-nightly-image][]][linux-nightly-site] | [![macOS-nightly-image][]][macos-nightly-site] | [![cf-image][]][cf-site] |
2016-10-13 04:34:24 +08:00
2017-11-07 02:29:49 +08:00
[bd-linux]: https://github.com/PowerShell/PowerShell/tree/master/docs/building/linux.md
[bd-windows]: https://github.com/PowerShell/PowerShell/tree/master/docs/building/windows-core.md
[bd-macOS]: https://github.com/PowerShell/PowerShell/tree/master/docs/building/macos.md
2016-01-22 04:25:48 +08:00
2017-11-07 02:29:49 +08:00
[FAQ]: https://github.com/PowerShell/PowerShell/tree/master/docs/FAQ.md
2016-07-29 03:45:31 +08:00
2020-06-05 00:45:35 +08:00
[windows-nightly-site]: https://powershell.visualstudio.com/PowerShell/_build?definitionId=32
2018-09-18 05:26:27 +08:00
[linux-nightly-site]: https://powershell.visualstudio.com/PowerShell/_build?definitionId=23
[macos-nightly-site]: https://powershell.visualstudio.com/PowerShell/_build?definitionId=24
2018-12-04 02:14:11 +08:00
[windows-nightly-image]: https://powershell.visualstudio.com/PowerShell/_apis/build/status/PowerShell-CI-Windows-daily
2018-09-18 05:26:27 +08:00
[linux-nightly-image]: https://powershell.visualstudio.com/PowerShell/_apis/build/status/PowerShell-CI-linux-daily?branchName=master
[macOS-nightly-image]: https://powershell.visualstudio.com/PowerShell/_apis/build/status/PowerShell-CI-macos-daily?branchName=master
2018-06-05 19:32:06 +08:00
[cf-site]: https://www.codefactor.io/repository/github/powershell/powershell
[cf-image]: https://www.codefactor.io/repository/github/powershell/powershell/badge
2016-07-29 03:45:31 +08:00
2017-03-22 06:20:11 +08:00
## Downloading the Source Code
2016-07-28 05:47:03 +08:00
2023-10-19 11:15:55 +08:00
You can clone the repository:
2016-07-28 05:47:03 +08:00
2016-07-21 08:23:06 +08:00
```sh
2018-11-06 02:39:29 +08:00
git clone https://github.com/PowerShell/PowerShell.git
2016-07-21 08:23:06 +08:00
```
2016-07-28 05:47:03 +08:00
2023-10-19 11:15:55 +08:00
For more information, see [working with the PowerShell repository ](https://github.com/PowerShell/PowerShell/tree/master/docs/git ).
2016-07-28 05:47:03 +08:00
2017-03-22 06:20:11 +08:00
## Developing and Contributing
2016-07-21 02:18:28 +08:00
2023-10-25 07:37:28 +08:00
Please look into the [Contribution Guide][] to know how to develop and contribute.
2022-11-22 12:02:09 +08:00
If you are developing .NET Core C# applications targeting PowerShell Core, [check out our FAQ][] to learn more about the PowerShell SDK NuGet package.
2016-06-23 23:21:07 +08:00
2019-03-12 06:20:36 +08:00
Also, make sure to check out our [PowerShell-RFC repository ](https://github.com/powershell/powershell-rfc ) for request-for-comments (RFC) documents to submit and give comments on proposed and future designs.
2016-10-07 02:26:13 +08:00
2019-01-18 22:49:21 +08:00
[Contribution Guide]: https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md
2017-11-07 02:29:49 +08:00
[check out our FAQ]: https://github.com/PowerShell/PowerShell/tree/master/docs/FAQ.md#where-do-i-get-the-powershell-core-sdk-package
2019-01-18 04:25:07 +08:00
2019-02-20 03:07:46 +08:00
## Support
2019-01-18 04:25:07 +08:00
2022-11-22 12:02:09 +08:00
For support, see the [Support Section][].
2019-01-18 22:49:21 +08:00
2019-01-18 04:25:07 +08:00
[Support Section]: https://github.com/PowerShell/PowerShell/tree/master/.github/SUPPORT.md
2016-06-25 01:47:46 +08:00
2017-03-22 06:20:11 +08:00
## Legal and Licensing
2016-07-30 05:10:26 +08:00
PowerShell is licensed under the [MIT license][].
2017-11-07 02:29:49 +08:00
[MIT license]: https://github.com/PowerShell/PowerShell/tree/master/LICENSE.txt
2016-07-30 05:10:26 +08:00
2017-04-01 03:34:01 +08:00
### Windows Docker Files and Images
2019-01-12 08:47:11 +08:00
License: By requesting and using the Container OS Image for Windows containers, you acknowledge, understand, and consent to the Supplemental License Terms available on Docker Hub:
2017-04-01 03:34:01 +08:00
2019-01-15 15:29:47 +08:00
- [Windows Server Core ](https://hub.docker.com/r/microsoft/windowsservercore/ )
2017-04-01 03:34:01 +08:00
- [Nano Server ](https://hub.docker.com/r/microsoft/nanoserver/ )
2017-05-03 09:27:42 +08:00
### Telemetry
2023-07-18 06:54:17 +08:00
Please visit our [about_Telemetry ](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_telemetry )
2021-11-10 09:30:56 +08:00
topic to read details about telemetry gathered by PowerShell.
2017-05-03 09:27:42 +08:00
2017-03-22 06:20:11 +08:00
## Governance
2016-08-13 04:27:04 +08:00
2020-07-30 01:23:09 +08:00
The governance policy for the PowerShell project is described [here][].
2016-08-13 04:27:04 +08:00
[here]: https://github.com/PowerShell/PowerShell/blob/master/docs/community/governance.md
2017-06-29 01:34:09 +08:00
## [Code of Conduct][conduct-md]
2016-06-25 01:47:46 +08:00
2016-07-21 08:09:41 +08:00
This project has adopted the [Microsoft Open Source Code of Conduct][conduct-code].
2023-10-19 11:15:55 +08:00
For more information, see the [Code of Conduct FAQ][conduct-FAQ] or contact [opencode@microsoft.com][conduct-email] with any additional questions or comments.
2016-06-25 01:47:46 +08:00
2019-01-18 04:25:07 +08:00
[conduct-code]: https://opensource.microsoft.com/codeofconduct/
[conduct-FAQ]: https://opensource.microsoft.com/codeofconduct/faq/
2016-07-28 05:47:03 +08:00
[conduct-email]: mailto:opencode@microsoft.com
2019-01-12 08:47:11 +08:00
[conduct-md]: https://github.com/PowerShell/PowerShell/tree/master/CODE_OF_CONDUCT.md