mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-22 01:48:20 +02:00
Update the comment based help
This commit is contained in:
parent
053b26c578
commit
c296024b8f
@ -1,6 +1,6 @@
|
|||||||
## list-aliases.ps1 - Lists all PowerShell aliases
|
## list-aliases.ps1 - Lists all PowerShell aliases
|
||||||
|
|
||||||
list-aliases.ps1
|
This scripts lists all PowerShell aliases.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## list-anagrams.ps1 - Lists all anagrams of the given word
|
## list-anagrams.ps1 - Lists all anagrams of the given word
|
||||||
|
|
||||||
list-anagrams.ps1 [<word>] [<columns>]
|
This script lists all anagrams of the given word.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
list-anagrams.ps1 [[-Word] <String>] [[-Columns] <Int32>] [<CommonParameters>]
|
list-anagrams.ps1 [[-Word] <String>] [[-Columns] <Int32>] [<CommonParameters>]
|
||||||
|
|
||||||
-Word <String>
|
-Word <String>
|
||||||
|
Specifies the word to use
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
@ -15,6 +16,7 @@ list-anagrams.ps1 [[-Word] <String>] [[-Columns] <Int32>] [<CommonParameters>]
|
|||||||
Accept wildcard characters? false
|
Accept wildcard characters? false
|
||||||
|
|
||||||
-Columns <Int32>
|
-Columns <Int32>
|
||||||
|
Specifies the number of columns
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 2
|
Position? 2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-branches.ps1 - Lists all branches in a Git repository
|
## list-branches.ps1 - Lists all branches in a Git repository
|
||||||
|
|
||||||
list-branches.ps1 [<RepoDir>] [<SearchPattern>]
|
This script lists all branches in a Git repository.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-cheat-sheet.ps1 - Lists the PowerShell cheat sheet
|
## list-cheat-sheet.ps1 - Lists the PowerShell cheat sheet
|
||||||
|
|
||||||
list-cheat-sheet.ps1
|
This script lists the PowerShell cheat sheet.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
## list-city-weather.ps1 - List the current weather of cities world-wide
|
## list-city-weather.ps1 - Lists current weather of cities world-wide
|
||||||
|
|
||||||
List the current weather of cities world-wide (west to east)
|
This script lists the current weather of cities world-wide (west to east).
|
||||||
list-city-weather.ps1
|
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-clipboard.ps1 - Lists the contents of the clipboard
|
## list-clipboard.ps1 - Lists the contents of the clipboard
|
||||||
|
|
||||||
list-clipboard.ps1
|
This script lists the contents of the clipboard.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-cmdlets.ps1 - Lists all PowerShell cmdlets
|
## list-cmdlets.ps1 - Lists all PowerShell cmdlets
|
||||||
|
|
||||||
list-cmdlets.ps1
|
This script lists all PowerShell cmdlets.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-commits.ps1 - Lists all commits in a Git repository
|
## list-commits.ps1 - Lists all commits in a Git repository
|
||||||
|
|
||||||
list-commits.ps1 [<RepoDir>] [<Format>]
|
This script lists all commits in a Git repository. Supported output formats are: list, compact, normal or JSON.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-console-colors.ps1 - Lists all console colors
|
## list-console-colors.ps1 - Lists all console colors
|
||||||
|
|
||||||
list-console-colors.ps1
|
This script lists all available console colors.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
@ -14,6 +14,12 @@ list-console-colors.ps1 [<CommonParameters>]
|
|||||||
## Example
|
## Example
|
||||||
```powershell
|
```powershell
|
||||||
PS>./list-console-colors
|
PS>./list-console-colors
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Name Foreground Background
|
||||||
|
---- ---------- ----------
|
||||||
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-credits.ps1 - Shows the credits for the PowerShell Scripts
|
## list-credits.ps1 - Shows the credits for the PowerShell Scripts
|
||||||
|
|
||||||
list-credits.ps1
|
This script shows the credits for the PowerShell Scripts.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
## list-dir-tree.ps1 - Lists the full directory tree
|
## list-dir-tree.ps1 - Lists the full directory tree
|
||||||
|
|
||||||
list-dir-tree.ps1 [<DirTree>]
|
This script lists the full directory tree.
|
||||||
<DirTree> is the path to the directory tree
|
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
list-dir-tree.ps1 [[-DirTree] <String>] [<CommonParameters>]
|
list-dir-tree.ps1 [[-DirTree] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-DirTree <String>
|
-DirTree <String>
|
||||||
|
Specifies the path to the directory tree
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-earthquakes.ps1 - Lists major earthquakes for the last 30 days
|
## list-earthquakes.ps1 - Lists major earthquakes since 30 days
|
||||||
|
|
||||||
Lists earthquakes with magnitude >= 6.0 for the last 30 days
|
This script lists earthquakes with magnitude >= 6.0 for the last 30 days.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-emojis.ps1 - Lists the Emojis of Unicode 13.0
|
## list-emojis.ps1 - Lists the Emojis of Unicode 13.0
|
||||||
|
|
||||||
list-emojis.ps1
|
This script lists the emojis of Unicode 13.0 sorted by category.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
## list-installed-software.ps1 - Lists the installed software
|
## list-installed-software.ps1 - Lists the installed software
|
||||||
|
|
||||||
Lists the installed software (except Windows Store apps)
|
This script lists the installed software (except Windows Store apps).
|
||||||
list-installed-software.ps1
|
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
## list-latest-tag.ps1 - Lists the latest tag on the current branch in a Git repository
|
## list-latest-tag.ps1 - Lists the latest tag on the current branch in a Git repository
|
||||||
|
|
||||||
list-latest-tag.ps1 [<RepoDir>]
|
This script lists the latest tag on the current branch in a Git repository.
|
||||||
<RepoDir> is the path to the repository
|
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
list-latest-tag.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
list-latest-tag.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-RepoDir <String>
|
-RepoDir <String>
|
||||||
|
Specifies the path to the repository
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-recycle-bin.ps1 - Lists the content of the recycle bin folder
|
## list-recycle-bin.ps1 - Lists the content of the recycle bin folder
|
||||||
|
|
||||||
list-recycle-bin.ps1
|
This script lists the content of the recycle bin folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-system-info.ps1 - Lists system information of the local computer
|
## list-system-info.ps1 - Lists system information of the local computer
|
||||||
|
|
||||||
list-system-info.ps1
|
This script lists system information of the local computer.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-timezone.ps1 - Lists the details of the current time zone
|
## list-timezone.ps1 - Lists the details of the current time zone
|
||||||
|
|
||||||
list-timezone.ps1
|
This script lists the details of the current time zone.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-timezones.ps1 - Lists all available time zones
|
## list-timezones.ps1 - Lists all available time zones
|
||||||
|
|
||||||
list-timezones.ps1
|
This script lists all available time zones.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,15 +1,13 @@
|
|||||||
## list-unused-files.ps1 - Lists unused files in a folder (including subfolders)
|
## list-unused-files.ps1 - Lists unused files in a folder (including subfolders)
|
||||||
|
|
||||||
Lists files in a folder with last access time older than <Days>
|
This script scans and lists files in a folder with last access time older than number of days.
|
||||||
list-unused-files.ps1 <DirTree> <Days>
|
|
||||||
<DirTree> is the path to the directory tree
|
|
||||||
<Days> is the number of days
|
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
list-unused-files.ps1 [[-DirTree] <String>] [[-Days] <Int32>] [<CommonParameters>]
|
list-unused-files.ps1 [[-DirTree] <String>] [[-Days] <Int32>] [<CommonParameters>]
|
||||||
|
|
||||||
-DirTree <String>
|
-DirTree <String>
|
||||||
|
Specifies the path to the directory tree
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
@ -18,6 +16,7 @@ list-unused-files.ps1 [[-DirTree] <String>] [[-Days] <Int32>] [<CommonParameters
|
|||||||
Accept wildcard characters? false
|
Accept wildcard characters? false
|
||||||
|
|
||||||
-Days <Int32>
|
-Days <Int32>
|
||||||
|
Specifies the number of days
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 2
|
Position? 2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-user-groups.ps1 - Lists the user groups on the local computer
|
## list-user-groups.ps1 - Lists the user groups on the local computer
|
||||||
|
|
||||||
list-user-groups.ps1
|
This script lists the user groups on the local computer.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## list-weather.ps1 - Lists the hourly weather report
|
## list-weather.ps1 - Lists the hourly weather report
|
||||||
|
|
||||||
list-weather.ps1 [<Location>]
|
This script lists the hourly weather report.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
list-weather.ps1 [[-Location] <String>] [<CommonParameters>]
|
list-weather.ps1 [[-Location] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-Location <String>
|
-Location <String>
|
||||||
|
Specifies the location to use (determined automatically per default)
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## list-workdir.ps1 - Lists the current working directory
|
## list-workdir.ps1 - Lists the current working directory
|
||||||
|
|
||||||
list-workdir.ps1
|
This script lists the current working directory (but not the content itself!)
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## speak-countdown.ps1 - Speaks a countdown by text-to-speech (TTS)
|
## speak-countdown.ps1 - Speaks a countdown by text-to-speech
|
||||||
|
|
||||||
speak-countdown.ps1 [StartNumber]
|
This scripts speaks a countdown by text-to-speech (TTS).
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
speak-countdown.ps1 [[-StartNumber] <Int32>] [<CommonParameters>]
|
speak-countdown.ps1 [[-StartNumber] <Int32>] [<CommonParameters>]
|
||||||
|
|
||||||
-StartNumber <Int32>
|
-StartNumber <Int32>
|
||||||
|
Specifies the number to start from
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## speak-english.ps1 - Speaks the given text with an English text-to-speech (TTS) voice
|
## speak-english.ps1 - Speaks text with an English text-to-speech voice
|
||||||
|
|
||||||
speak-english.ps1 [<text>]
|
This scripts speaks the given text with an English text-to-speech (TTS) voice.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
speak-english.ps1 [[-text] <String>] [<CommonParameters>]
|
speak-english.ps1 [[-text] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-text <String>
|
-text <String>
|
||||||
|
Specifies the text to speak
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## speak-french.ps1 - Speaks the given text with a French text-to-speech (TTS) voice
|
## speak-french.ps1 - Speaks text with a French text-to-speech voice
|
||||||
|
|
||||||
speak-french.ps1 [<text>]
|
This script speaks the given text with a French text-to-speech (TTS) voice
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
speak-french.ps1 [[-text] <String>] [<CommonParameters>]
|
speak-french.ps1 [[-text] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-text <String>
|
-text <String>
|
||||||
|
Specifies the text to speak
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## speak-german.ps1 - Speaks the given text with a German text-to-speech (TTS) voice
|
## speak-german.ps1 - Speaks text with a German text-to-speech voice
|
||||||
|
|
||||||
speak-german.ps1 [<text>]
|
This script speaks the given text with a German text-to-speech (TTS) voice.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
speak-german.ps1 [[-text] <String>] [<CommonParameters>]
|
speak-german.ps1 [[-text] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-text <String>
|
-text <String>
|
||||||
|
Specifies the text to speak
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## speak-italian.ps1 - Speaks the given text with an Italian text-to-speech (TTS) voice
|
## speak-italian.ps1 - Speaks text with an Italian text-to-speech voice
|
||||||
|
|
||||||
speak-italian.ps1 [<text>]
|
This script speaks the given text with an Italian text-to-speech (TTS) voice.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
speak-italian.ps1 [[-text] <String>] [<CommonParameters>]
|
speak-italian.ps1 [[-text] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-text <String>
|
-text <String>
|
||||||
|
Specifies the text to speak
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
## speak-spanish.ps1 - Speaks the given text with a Spanish text-to-speech (TTS) voice
|
## speak-spanish.ps1 - Speaks text with a Spanish text-to-speech voice
|
||||||
|
|
||||||
speak-spanish.ps1 [<text>]
|
This script speaks the given text with a Spanish text-to-speech (TTS) voice.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
speak-spanish.ps1 [[-text] <String>] [<CommonParameters>]
|
speak-spanish.ps1 [[-text] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-text <String>
|
-text <String>
|
||||||
|
Specifies the text to speak
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -7,6 +7,7 @@ speak-text.ps1 [<text>]
|
|||||||
speak-text.ps1 [[-text] <String>] [<CommonParameters>]
|
speak-text.ps1 [[-text] <String>] [<CommonParameters>]
|
||||||
|
|
||||||
-text <String>
|
-text <String>
|
||||||
|
Specifies the text to speak
|
||||||
|
|
||||||
Required? false
|
Required? false
|
||||||
Position? 1
|
Position? 1
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all PowerShell aliases
|
Lists all PowerShell aliases
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-aliases.ps1
|
This scripts lists all PowerShell aliases.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-aliases
|
PS> ./list-aliases
|
||||||
|
|
||||||
|
@ -2,7 +2,11 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all anagrams of the given word
|
Lists all anagrams of the given word
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-anagrams.ps1 [<word>] [<columns>]
|
This script lists all anagrams of the given word.
|
||||||
|
.PARAMETER Word
|
||||||
|
Specifies the word to use
|
||||||
|
.PARAMETER Columns
|
||||||
|
Specifies the number of columns
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-anagrams Baby
|
PS> ./list-anagrams Baby
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all automatic variables of PowerShell
|
Lists all automatic variables of PowerShell
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-automatic-variables.ps1
|
This script lists all automatic variables of PowerShell.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-automatic-variables
|
PS> ./list-automatic-variables
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all branches in a Git repository
|
Lists all branches in a Git repository
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-branches.ps1 [<RepoDir>] [<SearchPattern>]
|
This script lists all branches in a Git repository.
|
||||||
.PARAMETER RepoDir
|
.PARAMETER RepoDir
|
||||||
Specifies the path to the Git repository (current working directory by default)
|
Specifies the path to the Git repository (current working directory by default)
|
||||||
.PARAMETER SearchPattern
|
.PARAMETER SearchPattern
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the PowerShell cheat sheet
|
Lists the PowerShell cheat sheet
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-cheat-sheet.ps1
|
This script lists the PowerShell cheat sheet.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-cheat-sheet
|
PS> ./list-cheat-sheet
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
List the current weather of cities world-wide
|
Lists current weather of cities world-wide
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
List the current weather of cities world-wide (west to east)
|
This script lists the current weather of cities world-wide (west to east).
|
||||||
list-city-weather.ps1
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-city-weather
|
PS> ./list-city-weather
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists available command-line interface (CLI) tools
|
Lists available command-line interface (CLI) tools
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-cli-tools.ps1
|
This script lists available command-line interface (CLI) tools.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-cli-tools
|
PS> ./list-cli-tools
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the contents of the clipboard
|
Lists the contents of the clipboard
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-clipboard.ps1
|
This script lists the contents of the clipboard.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-clipboard
|
PS> ./list-clipboard
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all PowerShell cmdlets
|
Lists all PowerShell cmdlets
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-cmdlets.ps1
|
This script lists all PowerShell cmdlets.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-cmdlets
|
PS> ./list-cmdlets
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all commits in a Git repository
|
Lists all commits in a Git repository
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-commits.ps1 [<RepoDir>] [<Format>]
|
This script lists all commits in a Git repository. Supported output formats are: list, compact, normal or JSON.
|
||||||
.PARAMETER RepoDir
|
.PARAMETER RepoDir
|
||||||
Specifies the path to the Git repository.
|
Specifies the path to the Git repository.
|
||||||
.PARAMETER Format
|
.PARAMETER Format
|
||||||
|
@ -2,9 +2,13 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all console colors
|
Lists all console colors
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-console-colors.ps1
|
This script lists all available console colors.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-console-colors
|
PS> ./list-console-colors
|
||||||
|
|
||||||
|
Name Foreground Background
|
||||||
|
---- ---------- ----------
|
||||||
|
...
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists details of all countries
|
Lists details of all countries
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-countries.ps1
|
This script lists details of all countries.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-countries
|
PS> ./list-countries
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Shows the credits for the PowerShell Scripts
|
Shows the credits for the PowerShell Scripts
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-credits.ps1
|
This script shows the credits for the PowerShell Scripts.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-credits
|
PS> ./list-credits
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the current crypto exchange rates
|
Lists the current crypto exchange rates
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-crypto-rates.ps1
|
This script lists the current crypto exchange rates.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-crypto-rates
|
PS> ./list-crypto-rates
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,8 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the full directory tree
|
Lists the full directory tree
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-dir-tree.ps1 [<DirTree>]
|
This script lists the full directory tree.
|
||||||
<DirTree> is the path to the directory tree
|
.PARAMETER DirTree
|
||||||
|
Specifies the path to the directory tree
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-dir-tree C:\
|
PS> ./list-dir-tree C:\
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists major earthquakes for the last 30 days
|
Lists major earthquakes since 30 days
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists earthquakes with magnitude >= 6.0 for the last 30 days
|
This script lists earthquakes with magnitude >= 6.0 for the last 30 days.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-earthquakes
|
PS> ./list-earthquakes
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the Emojis of Unicode 13.0
|
Lists the Emojis of Unicode 13.0
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-emojis.ps1
|
This script lists the emojis of Unicode 13.0 sorted by category.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-emojis
|
PS> ./list-emojis
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,8 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the installed software
|
Lists the installed software
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists the installed software (except Windows Store apps)
|
This script lists the installed software (except Windows Store apps).
|
||||||
list-installed-software.ps1
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-installed-software
|
PS> ./list-installed-software
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,8 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the latest tag on the current branch in a Git repository
|
Lists the latest tag on the current branch in a Git repository
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-latest-tag.ps1 [<RepoDir>]
|
This script lists the latest tag on the current branch in a Git repository.
|
||||||
<RepoDir> is the path to the repository
|
.PARAMETER RepoDir
|
||||||
|
Specifies the path to the repository
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-latest-tag C:\MyRepo
|
PS> ./list-latest-tag C:\MyRepo
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the content of the recycle bin folder
|
Lists the content of the recycle bin folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-recycle-bin.ps1
|
This script lists the content of the recycle bin folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-recycle-bin
|
PS> ./list-recycle-bin
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists system information of the local computer
|
Lists system information of the local computer
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-system-info.ps1
|
This script lists system information of the local computer.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-system-info
|
PS> ./list-system-info
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the details of the current time zone
|
Lists the details of the current time zone
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-timezone.ps1
|
This script lists the details of the current time zone.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-timezone
|
PS> ./list-timezone
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists all available time zones
|
Lists all available time zones
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-timezones.ps1
|
This script lists all available time zones.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-timezones
|
PS> ./list-timezones
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the TIOBE index of top programming languages
|
Lists the TIOBE index of top programming languages
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-tiobe-index.ps1
|
This script lists the TIOBE index of top programming languages.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-tiobe-index
|
PS> ./list-tiobe-index
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,10 +2,11 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists unused files in a folder (including subfolders)
|
Lists unused files in a folder (including subfolders)
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists files in a folder with last access time older than <Days>
|
This script scans and lists files in a folder with last access time older than number of days.
|
||||||
list-unused-files.ps1 <DirTree> <Days>
|
.PARAMETER DirTree
|
||||||
<DirTree> is the path to the directory tree
|
Specifies the path to the directory tree
|
||||||
<Days> is the number of days
|
.PARAMETER Days
|
||||||
|
Specifies the number of days
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-unused-files C:\ 100
|
PS> ./list-unused-files C:\ 100
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the user groups on the local computer
|
Lists the user groups on the local computer
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-user-groups.ps1
|
This script lists the user groups on the local computer.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-user-groups
|
PS> ./list-user-groups
|
||||||
|
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the hourly weather report
|
Lists the hourly weather report
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-weather.ps1 [<Location>]
|
This script lists the hourly weather report.
|
||||||
|
.PARAMETER Location
|
||||||
|
Specifies the location to use (determined automatically per default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-weather
|
PS> ./list-weather
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists the current working directory
|
Lists the current working directory
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
list-workdir.ps1
|
This script lists the current working directory (but not the content itself!)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-workdir
|
PS> ./list-workdir
|
||||||
.NOTES
|
.NOTES
|
||||||
|
Loading…
Reference in New Issue
Block a user