mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-25 03:18:16 +02:00
Update descriptions
This commit is contained in:
parent
643aeb782e
commit
9a1bdd9ac5
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's documents folder
|
Change the working directory to the user's documents folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-docs.ps1
|
PS> ./cd-docs
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's downloads folder
|
Change the working directory to the user's downloads folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-downloads.ps1
|
PS> ./cd-downloads
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's Dropbox folder
|
Change the working directory to the user's Dropbox folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-dropbox.ps1
|
PS> ./cd-dropbox
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's home directory
|
Change the working directory to the user's home directory
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-home.ps1
|
PS> ./cd-home
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's music folder
|
Change the working directory to the user's music folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-music.ps1
|
PS> ./cd-music
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's OneDrive folder
|
Change the working directory to the user's OneDrive folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-onedrive.ps1
|
PS> ./cd-onedrive
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's pictures folder
|
Change the working directory to the user's pictures folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-pics.ps1
|
PS> ./cd-pics
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's recycle bin folder
|
Change the working directory to the user's recycle bin folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-recycle-bin.ps1
|
PS> ./cd-recycle-bin
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's Git repositories folder
|
Change the working directory to the user's Git repositories folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-repos.ps1
|
PS> ./cd-repos
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
cd-root.ps1
|
cd-root.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the root directory (C:\ on Windows).
|
Change the working directory to the root directory (C:\ on Windows)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-root.ps1
|
PS> ./cd-root
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
cd-scripts.ps1
|
cd-scripts.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the PowerShell scripts folder.
|
Change the working directory to the PowerShell scripts folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-scripts.ps1
|
PS> ./cd-scripts
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's SSH folder
|
Change the working directory to the user's SSH folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-ssh.ps1
|
PS> ./cd-ssh
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to one level up
|
Change the working directory to one level up
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-up.ps1
|
PS> .\cd-up
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to two directory levels up
|
Change the working directory to two directory levels up
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-up2.ps1
|
PS> ./cd-up2
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to three directory levels up
|
Change the working directory to three directory levels up
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-up3.ps1
|
PS> ./cd-up3
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to four directory levels up
|
Change the working directory to four directory levels up
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-up4.ps1
|
PS> ./cd-up4
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Change the working directory to the user's videos folder
|
Change the working directory to the user's videos folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cd-videos.ps1
|
PS> ./cd-videos
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-cpu-temp.ps1
|
check-cpu-temp.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the CPU temperature.
|
Checks the CPU temperature
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-cpu-temp.ps1
|
PS> ./check-cpu-temp
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-dns-resolution.ps1
|
check-dns-resolution.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the DNS resolution with frequently used domain names.
|
Checks the DNS resolution with frequently used domain names
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-dns-resolution.ps1
|
PS> ./check-dns-resolution
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks a drive for free space left (20 GB by default)
|
Checks a drive for free space left (20 GB by default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-drive-space.ps1 C
|
PS> ./check-drive-space C
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the file system of a drive (needs admin rights)
|
Checks the file system of a drive (needs admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-file-system.ps1 C
|
PS> ./check-file-system C
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the health of the local computer
|
Checks the health of the local computer
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-health.ps1
|
PS> ./check-health
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-ipv4-address.ps1 [<address>]
|
check-ipv4-address.ps1 [<address>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the given IPv4 address for validity.
|
Checks the given IPv4 address for validity
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-ipv4-address.ps1 192.168.11.22
|
PS> ./check-ipv4-address 192.168.11.22
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-ipv6-address.ps1 [<address>]
|
check-ipv6-address.ps1 [<address>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the given IPv6 address for validity.
|
Checks the given IPv6 address for validity
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-ipv6-address.ps1 fe80::200:5aee:feaa:20a2
|
PS> ./check-ipv6-address fe80::200:5aee:feaa:20a2
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the given MAC address for validity (MAC address like 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000000000000).
|
Checks the given MAC address for validity (MAC address like 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000000000000).
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-mac-address.ps1 11:22:33:44:55:66
|
PS> ./check-mac-address 11:22:33:44:55:66
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-ping.ps1 [<hosts>]
|
check-ping.ps1 [<hosts>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the ping latency from the local computer to Internet hosts.
|
Checks the ping latency from the local computer to selected Internet hosts
|
||||||
(default is: 'amazon.com,apple.com,bing.com,cnn.com,dropbox.com,facebook.com,google.com,live.com,twitter.com,youtube.com)
|
(default is: 'amazon.com,apple.com,bing.com,cnn.com,dropbox.com,facebook.com,google.com,live.com,twitter.com,youtube.com)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-ping.ps1
|
PS> ./check-ping
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-subnet-mask.ps1 [<address>]
|
check-subnet-mask.ps1 [<address>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the given subnet mask for validity.
|
Checks the given subnet mask for validity
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-subnet-mask.ps1 255.255.255.0
|
PS> ./check-subnet-mask 255.255.255.0
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-swap-space.ps1 [<min-level>]
|
check-swap-space.ps1 [<min-level>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the free swap space.
|
Checks the free swap space
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-swap-space.ps1
|
PS> ./check-swap-space
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks every symlink in a directory tree
|
Checks every symlink in a directory tree
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-symlinks.ps1 C:\MyApp
|
PS> ./check-symlinks C:\MyApp
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-weather.ps1 [<location>]
|
check-weather.ps1 [<location>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the weather for critical values.
|
Checks the weather for critical values
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-weather.ps1
|
PS> ./check-weather
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$Location = "") # empty means determine automatically
|
param([string]$location = "") # empty means determine automatically
|
||||||
|
|
||||||
function Check { param([int]$Value, [int]$NormalMin, [int]$NormalMax, [string]$Unit)
|
function Check { param([int]$Value, [int]$NormalMin, [int]$NormalMax, [string]$Unit)
|
||||||
if ($Value -lt $NormalMin) {
|
if ($Value -lt $NormalMin) {
|
||||||
@ -24,7 +24,7 @@ function Check { param([int]$Value, [int]$NormalMin, [int]$NormalMax, [string]$
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$Weather = (Invoke-WebRequest http://wttr.in/${Location}?format=j1 -UserAgent "curl" ).Content | ConvertFrom-Json
|
$Weather = (Invoke-WebRequest http://wttr.in/${location}?format=j1 -UserAgent "curl" ).Content | ConvertFrom-Json
|
||||||
|
|
||||||
$Temp = $Weather.current_condition.temp_C
|
$Temp = $Weather.current_condition.temp_C
|
||||||
$Precip = $Weather.current_condition.precipMM
|
$Precip = $Weather.current_condition.precipMM
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-windows-system-files.ps1
|
check-windows-system-files.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the validity of the Windows system files (requires admin rights).
|
Checks the validity of the Windows system files (requires admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-windows-system-files.ps1
|
PS> ./check-windows-system-files
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,21 +2,21 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-xml-file [<file>]
|
check-xml-file [<file>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the given XML file for validity.
|
Checks the given XML file for validity
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-xml-file.ps1 myfile.xml
|
PS> ./check-xml-file myfile.xml
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$File = "")
|
param([string]$file = "")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($File -eq "" ) { $File = read-host "Enter path to XML file" }
|
if ($file -eq "" ) { $file = read-host "Enter path to XML file" }
|
||||||
|
|
||||||
$XmlFile = Get-Item $File
|
$XmlFile = Get-Item $file
|
||||||
|
|
||||||
$script:ErrorCount = 0
|
$script:ErrorCount = 0
|
||||||
|
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
cherry-picker.ps1 [<CommitID>] [<CommitMessage>] [<Branches>] [<RepoDir>]
|
cherry-picker.ps1 [<CommitID>] [<CommitMessage>] [<Branches>] [<RepoDir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Cherry-picks a Git commit into one or more branches (branch names need to be separated by spaces).
|
Cherry-picks a Git commit into one or more branches (branch names need to be separated by spaces)
|
||||||
NOTE: in case of merge conflicts the script stops immediately!
|
NOTE: in case of merge conflicts the script stops immediately!
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\cherry-picker.ps1 93849f889 "Fix typo" "v1 v2 v3"
|
PS> ./cherry-picker 93849f889 "Fix typo" "v1 v2 v3"
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
clean-repo.ps1 [<repo-dir>]
|
clean-repo.ps1 [<RepoDir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Cleans a Git repository from untracked files (including submodules, e.g. for a fresh build).
|
Cleans a Git repository from untracked files (including submodules, e.g. for a fresh build)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\clean-repo.ps1 C:\MyRepo
|
PS> ./clean-repo C:\MyRepo
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
clean-repos.ps1 [<parent-dir>]
|
clean-repos.ps1 [<ParentDir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Cleans all Git repositories under the current/given directory from untracked files (including submodules).
|
Cleans all Git repositories under the current/given directory from untracked files (including submodules)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\clean-repos.ps1 C:\MyRepos
|
PS> ./clean-repos C:\MyRepos
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
clear-recycle-bin.ps1
|
clear-recycle-bin.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Removes the content of the recycle bin folder.
|
Removes the content of the recycle bin folder
|
||||||
NOTE: can not be undo!
|
NOTE: can not be undo!
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\clear-recycle-bin.ps1
|
PS> ./clear-recycle-bin
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
clone-repos.ps1 [<parent-dir>]
|
clone-repos.ps1 [<ParentDir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Clones well-known Git repositories under the current/given directory.
|
Clones well-known Git repositories under the current/given directory
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\clone-repos.ps1 C:\MyRepos
|
PS> ./clone-repos C:\MyRepos
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-calculator.ps1
|
close-calculator.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the calculator program gracefully.
|
Closes the calculator program gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-calculator.ps1
|
PS> ./close-calculator
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-chrome.ps1
|
close-chrome.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the Web browser Google Chrome gracefully.
|
Closes the Web browser Google Chrome gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-chrome.ps1
|
PS> ./close-chrome
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-cortana.ps1
|
close-cortana.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes Cortana gracefully.
|
Closes Cortana gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-cortana.ps1
|
PS> ./close-cortana
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-edge.ps1
|
close-edge.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the Web browser Microsoft Edge gracefully.
|
Closes the Web browser Microsoft Edge gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-edge.ps1
|
PS> ./close-edge
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-file-explorer.ps1
|
close-file-explorer.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes Microsoft File Explorer gracefully.
|
Closes Microsoft File Explorer gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-file-explorer.ps1
|
PS> ./close-file-explorer
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-firefox.ps1
|
close-firefox.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the Firefox Web browser gracefully.
|
Closes the Firefox Web browser gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-firefox.ps1
|
PS> ./close-firefox
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-netflix.ps1
|
close-netflix.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the Netflix program gracefully.
|
Closes the Netflix program gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-netflix.ps1
|
PS> ./close-netflix
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-onedrive.ps1
|
close-onedrive.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes Microsoft OneDrive gracefully.
|
Closes Microsoft OneDrive gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-onedrive.ps1
|
PS> ./close-onedrive
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-program.ps1 [<full-program-name>] [<program-name>] [<program-alias-name>]
|
close-program.ps1 [<FullProgramName>] [<ProgramName>] [<ProgramAliasName>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the processes of the given program gracefully.
|
Closes the processes of the given program gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-program.ps1 "Google Chrome" "chrome.exe"
|
PS> ./close-program "Google Chrome" "chrome.exe"
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-system-settings.ps1
|
close-system-settings.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the System Settings gracefully.
|
Closes the System Settings gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-system-settings.ps1
|
PS> ./close-system-settings
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-thunderbird.ps1
|
close-thunderbird.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the mail client Mozilla Thunderbird gracefully.
|
Closes the mail client Mozilla Thunderbird gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-thunderbird.ps1
|
PS> ./close-thunderbird
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-vlc.ps1
|
close-vlc.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes the VLC media player gracefully.
|
Closes the VLC media player gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-vlc.ps1
|
PS> ./close-vlc
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
close-windows-terminal.ps1
|
close-windows-terminal.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Closes Windows Terminal gracefully.
|
Closes Windows Terminal gracefully
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\close-windows-terminal.ps1
|
PS> ./close-windows-terminal
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Sets up the Git user configuration
|
Sets up the Git user configuration
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\configure-git.ps1
|
PS> ./configure-git
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
convert-csv2txt.ps1 [<csv-file>]
|
convert-csv2txt.ps1 [<csv-file>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Converts a .CSV file into a text file.
|
Converts a .CSV file into a text file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\convert-csv2txt.ps1 salaries.csv
|
PS> ./convert-csv2txt salaries.csv
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
convert-mysql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
|
convert-mysql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Convert a MySQL database table to a .CSV file.
|
Convert a MySQL database table to a .CSV file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\convert-mysql2csv.ps1
|
PS> ./convert-mysql2csv
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
convert-ps2bat.ps1 [<pattern>]
|
convert-ps2bat.ps1 [<pattern>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Converts a PowerShell script to .bat files.
|
Converts a PowerShell script to .bat files
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\convert-ps2bat.ps1 *.ps1
|
PS> ./convert-ps2bat *.ps1
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
convert-ps2md.ps1 [<filename>]
|
convert-ps2md.ps1 [<filename>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Converts the comment-based help of a PowerShell script to Markdown.
|
Converts the comment-based help of a PowerShell script to Markdown
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\convert-ps2md.ps1 myscript.ps1
|
PS> ./convert-ps2md myscript.ps1
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
convert-sql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
|
convert-sql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Converts a SQL database table to a .CSV file.
|
Converts a SQL database table to a .CSV file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\convert-sql2csv.ps1
|
PS> ./convert-sql2csv
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
convert-txt2wav.ps1 [<text>] [<wav-file>]
|
convert-txt2wav.ps1 [<text>] [<wav-file>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Converts text to a .WAV audio file.
|
Converts text to a .WAV audio file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\convert-txt2wav.ps1 "Hello World" spoken.wav
|
PS> ./convert-txt2wav "Hello World" spoken.wav
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
copy-photos-sorted.ps1 [<SourceDir>] [<TargetDir>]
|
copy-photos-sorted.ps1 [<SourceDir>] [<TargetDir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Copy image files from SourceDir to TargetDir sorted by year and month.
|
Copy image files from SourceDir to TargetDir sorted by year and month
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\copy-photos-sorted.ps1 D:\Mobile\DCIM C:\MyPhotoAlbum
|
PS> ./copy-photos-sorted D:\Mobile\DCIM C:\MyPhotoAlbum
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
decrypt-file.ps1 [<path>] [<password>]
|
decrypt-file.ps1 [<path>] [<password>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Decrypts the given file.
|
Decrypts the given file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\decrypt-file-rules.ps1 C:\MyFile.txt "123"
|
PS> ./decrypt-file-rules C:\MyFile.txt "123"
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
display-time.ps1 [<seconds>]
|
display-time.ps1 [<seconds>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Displays the current time (for 10 seconds by default).
|
Displays the current time (for 10 seconds by default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\display-time.ps1
|
PS> ./display-time
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
download-dir.ps1 [<URL>]
|
download-dir.ps1 [<URL>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Downloads a directory tree from the given URL.
|
Downloads a directory tree from the given URL
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\download-dir.ps1 "https://www.cnn.com"
|
PS> ./download-dir "https://www.cnn.com"
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
download-file.ps1 [<URL>]
|
download-file.ps1 [<URL>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Downloads a file from the given URL.
|
Downloads a file from the given URL
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\download-file.ps1 "https://www.cnn.com/index.html"
|
PS> ./download-file "https://www.cnn.com/index.html"
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
edit.ps1 <filename>
|
edit.ps1 <filename>
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Opens the built-in text editor to edit the given file.
|
Opens the built-in text editor to edit the given file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\edit.ps1 C:\MyFile.txt
|
PS> ./edit C:\MyFile.txt
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
enable-crash-dumps.ps1
|
enable-crash-dumps.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Enables the writing of crash dumps.
|
Enables the writing of crash dumps
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\enable-crash-dumps.ps1
|
PS> ./enable-crash-dumps
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
enable-god-mode.ps1
|
enable-god-mode.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Enables the god mode (adds a new icon to the desktop).
|
Enables the god mode (adds a new icon to the desktop)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\enable-god-mode.ps1
|
PS> ./enable-god-mode
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
encrypt-file.ps1 [<path>] [<password>]
|
encrypt-file.ps1 [<path>] [<password>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Encrypts the given file.
|
Encrypts the given file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\encrypt-file.ps1 C:\MyFile.txt "123"
|
PS> ./encrypt-file C:\MyFile.txt "123"
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
enter-chat.ps1
|
enter-chat.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Enters a chat using a common network shared file.
|
Enters a chat using a common network shared file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\enter-chat.ps1
|
PS> ./enter-chat
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
fetch-repo.ps1 [<repo-dir>]
|
fetch-repo.ps1 [<repo-dir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Fetches updates for a local Git repository (including submodules).
|
Fetches updates for a local Git repository (including submodules)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\fetch-repo.ps1
|
PS> ./fetch-repo
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
fetch-repos.ps1 [<parent-dir>]
|
fetch-repos.ps1 [<ParentDir>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Fetches updates for all Git repositories under the current/given directory (including submodules).
|
Fetches updates for all Git repositories under the current/given directory (including submodules)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\fetch-repos.ps1 C:\MyRepos
|
PS> ./fetch-repos C:\MyRepos
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Prints the MD5 checksum of the given file
|
Prints the MD5 checksum of the given file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\MD5.ps1 C:\MyFile.txt
|
PS> ./get-md5 C:\MyFile.txt
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Prints the SHA1 checksum of the given file
|
Prints the SHA1 checksum of the given file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\get-sha1.ps1 C:\MyFile.txt
|
PS> ./get-sha1 C:\MyFile.txt
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Prints the SHA256 checksum of the given file
|
Prints the SHA256 checksum of the given file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\get-sha256.ps1 C:\MyFile.txt
|
PS> ./get-sha256 C:\MyFile.txt
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
hibernate.ps1
|
hibernate.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Enables hibernate mode for the local computer (needs admin rights).
|
Enables hibernate mode for the local computer (needs admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\hibernate.ps1
|
PS> ./hibernate
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
inspect-exe.ps1 [<path-to-exe-file>]
|
inspect-exe.ps1 [<path-to-exe-file>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Prints basic information of the given executable file.
|
Prints basic information of the given executable file
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\inspect-exe.ps1 C:\MyApp.exe
|
PS> ./inspect-exe C:\MyApp.exe
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-github-cli.ps1
|
install-github-cli.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs GitHub CLI.
|
Installs GitHub CLI
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-github-cli.ps1
|
PS> ./install-github-cli
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-google-chrome.ps1
|
install-google-chrome.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs the latest Google Chrome browser.
|
Installs the latest Google Chrome browser
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-google-chrome.ps1
|
PS> ./install-google-chrome
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-knot-resolver.ps1
|
install-knot-resolver.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs the Knot Resolver (a DNS resolver daemon, needs admin rights).
|
Installs the Knot Resolver (a DNS resolver daemon, needs admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-knot-resolver.ps1
|
PS> ./install-knot-resolver
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-signal-cli.ps1 [<version>]
|
install-signal-cli.ps1 [<version>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs signal-cli from github.com/AsamK/signal-cli. See the Web page for the correct version number.
|
Installs signal-cli from github.com/AsamK/signal-cli. See the Web page for the correct version number
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-signal-cli.ps1 0.11.12
|
PS> ./install-signal-cli 0.11.12
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-ssh-client.ps1
|
install-ssh-client.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs the SSH client (needs admin rights).
|
Installs the SSH client (needs admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-ssh-client.ps1
|
PS> ./install-ssh-client
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-ssh-server.ps1
|
install-ssh-server.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs the SSH server (needs admin rights).
|
Installs the SSH server (needs admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-ssh-server.ps1
|
PS> ./install-ssh-server
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs updates (needs admin rights)
|
Installs updates (needs admin rights)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-updates.ps1
|
PS> ./install-updates
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
install-wsl.ps1
|
install-wsl.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Installs Windows Subsystem for Linux (WSL) - needs admin rights.
|
Installs Windows Subsystem for Linux (WSL) - needs admin rights
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\install-wsl.ps1
|
PS> ./install-wsl
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
introduce-powershell.ps1
|
introduce-powershell.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Introduces PowerShell to new users.
|
Introduces PowerShell to new users
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\introduce-powershell.ps1
|
PS> ./introduce-powershell
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-aliases.ps1
|
list-aliases.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all PowerShell aliases.
|
Lists all PowerShell aliases
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-aliases.ps1
|
PS> ./list-aliases
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-anagrams.ps1 [<word>] [<columns>]
|
list-anagrams.ps1 [<word>] [<columns>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all anagrams of the given word.
|
Lists all anagrams of the given word
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-anagrams.ps1 Markus
|
PS> ./list-anagrams Baby
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-automatic-variables.ps1
|
list-automatic-variables.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all automatic variables of PowerShell.
|
Lists all automatic variables of PowerShell
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-automatic-variables.ps1
|
PS> ./list-automatic-variables
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-branches.ps1 [<repo-dir>] [<pattern>]
|
list-branches.ps1 [<repo-dir>] [<pattern>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all branches in the current/given Git repository.
|
Lists all branches in the current/given Git repository
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-branches.ps1
|
PS> ./list-branches
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-cheat-sheet.ps1
|
list-cheat-sheet.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists the PowerShell cheat sheet.
|
Lists the PowerShell cheat sheet
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-cheat-sheet.ps1
|
PS> ./list-cheat-sheet
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-city-weather.ps1
|
list-city-weather.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
List the current weather of cities world-wide (west to east).
|
List the current weather of cities world-wide (west to east)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-city-weather.ps1
|
PS> ./list-city-weather
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-cli-tools.ps1
|
list-cli-tools.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists available command-line interface (CLI) tools.
|
Lists available command-line interface (CLI) tools
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-cli-tools.ps1
|
PS> ./list-cli-tools
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-clipboard.ps1
|
list-clipboard.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists the contents of the clipboard.
|
Lists the contents of the clipboard
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-clipboard.ps1
|
PS> ./list-clipboard
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-cmdlets.ps1
|
list-cmdlets.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all PowerShell cmdlets.
|
Lists all PowerShell cmdlets
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-cmdlets.ps1
|
PS> ./list-cmdlets
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-commits.ps1 [<RepoDir>] [<Format>]
|
list-commits.ps1 [<RepoDir>] [<Format>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all commits in a Git repository (format is: list|compact|normal|JSON).
|
Lists all commits in a Git repository (format is: list|compact|normal|JSON)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-commits.ps1
|
PS> ./list-commits
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-console-colors.ps1
|
list-console-colors.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all console colors.
|
Lists all console colors
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-console-colors.ps1
|
PS> ./list-console-colors
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-countries.ps1
|
list-countries.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists details of all countries.
|
Lists details of all countries
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-countries.ps1
|
PS> ./list-countries
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-credits.ps1
|
list-credits.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Shows the credits for the PowerShell Scripts.
|
Shows the credits for the PowerShell Scripts
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-credits.ps1
|
PS> ./list-credits
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-crypto-rates.ps1
|
list-crypto-rates.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists the current crypto exchange rates.
|
Lists the current crypto exchange rates
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-crypto-rates.ps1
|
PS> ./list-crypto-rates
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-dir-tree.ps1 [<dir-tree>]
|
list-dir-tree.ps1 [<dir-tree>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists the full directory tree.
|
Lists the full directory tree
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-dir-tree.ps1 C:\
|
PS> ./list-dir-tree C:\
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-dir.ps1 [<pattern>]
|
list-dir.ps1 [<pattern>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists the directory content formatted in columns.
|
Lists the directory content formatted in columns
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-dir.ps1 C:\
|
PS> ./list-dir C:\
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
list-drives.ps1
|
list-drives.ps1
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Lists all drives connected to the computer.
|
Lists all drives connected to the computer
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\list-drives.ps1
|
PS> ./list-drives
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user