Files
mkdocs/docs/Windows/PowerShell/modules.md
2020-10-22 20:12:27 +02:00

42 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Modules
https://www.powershellgallery.com
https://github.com/janikvonrotz/awesome-powershell
Liste des modules installés:
```powershell
Get-InstalledModule
Version Name Repository Description
------- ---- ---------- -----------
1.4.7 PackageManagement PSGallery PackageManagement (a.k.a. OneGet) is a new way to discover and install software packages from around the web.
1.3.1 Configuration PSGallery A module for storing and reading configuration values, with full PS Data serialization, automatic configuration fo…
2.2.4.1 PowerShellGet PSGallery PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like
0.8.0 pure-pwsh PSGallery pure prompt for powershell
0.7.3 posh-git PSGallery Provides prompt with Git status summary information and tab completion for Git commands, parameters, remotes and b
1.0.0.0 PSColor PSGallery Provides basic color highlighting for files, services, select-string etc.
```
Installer un module:
```powershell
Install-Module -Name posh-git
```
Désinstaller un module:
```powershell
Uninstall-Module -Name posh-git
```