Update descriptions

This commit is contained in:
Markus Fleschutz 2021-09-24 17:19:49 +02:00
parent 643aeb782e
commit 9a1bdd9ac5
201 changed files with 379 additions and 379 deletions

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's documents folder
.EXAMPLE
PS> .\cd-docs.ps1
PS> ./cd-docs
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's downloads folder
.EXAMPLE
PS> .\cd-downloads.ps1
PS> ./cd-downloads
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's Dropbox folder
.EXAMPLE
PS> .\cd-dropbox.ps1
PS> ./cd-dropbox
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's home directory
.EXAMPLE
PS> .\cd-home.ps1
PS> ./cd-home
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's music folder
.EXAMPLE
PS> .\cd-music.ps1
PS> ./cd-music
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's OneDrive folder
.EXAMPLE
PS> .\cd-onedrive.ps1
PS> ./cd-onedrive
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's pictures folder
.EXAMPLE
PS> .\cd-pics.ps1
PS> ./cd-pics
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's recycle bin folder
.EXAMPLE
PS> .\cd-recycle-bin.ps1
PS> ./cd-recycle-bin
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's Git repositories folder
.EXAMPLE
PS> .\cd-repos.ps1
PS> ./cd-repos
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
cd-root.ps1
.DESCRIPTION
Change the working directory to the root directory (C:\ on Windows).
Change the working directory to the root directory (C:\ on Windows)
.EXAMPLE
PS> .\cd-root.ps1
PS> ./cd-root
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
cd-scripts.ps1
.DESCRIPTION
Change the working directory to the PowerShell scripts folder.
Change the working directory to the PowerShell scripts folder
.EXAMPLE
PS> .\cd-scripts.ps1
PS> ./cd-scripts
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's SSH folder
.EXAMPLE
PS> .\cd-ssh.ps1
PS> ./cd-ssh
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to one level up
.EXAMPLE
PS> .\cd-up.ps1
PS> .\cd-up
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to two directory levels up
.EXAMPLE
PS> .\cd-up2.ps1
PS> ./cd-up2
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to three directory levels up
.EXAMPLE
PS> .\cd-up3.ps1
PS> ./cd-up3
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to four directory levels up
.EXAMPLE
PS> .\cd-up4.ps1
PS> ./cd-up4
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Change the working directory to the user's videos folder
.EXAMPLE
PS> .\cd-videos.ps1
PS> ./cd-videos
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-cpu-temp.ps1
.DESCRIPTION
Checks the CPU temperature.
Checks the CPU temperature
.EXAMPLE
PS> .\check-cpu-temp.ps1
PS> ./check-cpu-temp
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-dns-resolution.ps1
.DESCRIPTION
Checks the DNS resolution with frequently used domain names.
Checks the DNS resolution with frequently used domain names
.EXAMPLE
PS> .\check-dns-resolution.ps1
PS> ./check-dns-resolution
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Checks a drive for free space left (20 GB by default)
.EXAMPLE
PS> .\check-drive-space.ps1 C
PS> ./check-drive-space C
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Checks the file system of a drive (needs admin rights)
.EXAMPLE
PS> .\check-file-system.ps1 C
PS> ./check-file-system C
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Checks the health of the local computer
.EXAMPLE
PS> .\check-health.ps1
PS> ./check-health
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-ipv4-address.ps1 [<address>]
.DESCRIPTION
Checks the given IPv4 address for validity.
Checks the given IPv4 address for validity
.EXAMPLE
PS> .\check-ipv4-address.ps1 192.168.11.22
PS> ./check-ipv4-address 192.168.11.22
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-ipv6-address.ps1 [<address>]
.DESCRIPTION
Checks the given IPv6 address for validity.
Checks the given IPv6 address for validity
.EXAMPLE
PS> .\check-ipv6-address.ps1 fe80::200:5aee:feaa:20a2
PS> ./check-ipv6-address fe80::200:5aee:feaa:20a2
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.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).
.EXAMPLE
PS> .\check-mac-address.ps1 11:22:33:44:55:66
PS> ./check-mac-address 11:22:33:44:55:66
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,10 +2,10 @@
.SYNOPSIS
check-ping.ps1 [<hosts>]
.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)
.EXAMPLE
PS> .\check-ping.ps1
PS> ./check-ping
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-subnet-mask.ps1 [<address>]
.DESCRIPTION
Checks the given subnet mask for validity.
Checks the given subnet mask for validity
.EXAMPLE
PS> .\check-subnet-mask.ps1 255.255.255.0
PS> ./check-subnet-mask 255.255.255.0
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-swap-space.ps1 [<min-level>]
.DESCRIPTION
Checks the free swap space.
Checks the free swap space
.EXAMPLE
PS> .\check-swap-space.ps1
PS> ./check-swap-space
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Checks every symlink in a directory tree
.EXAMPLE
PS> .\check-symlinks.ps1 C:\MyApp
PS> ./check-symlinks C:\MyApp
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,16 +2,16 @@
.SYNOPSIS
check-weather.ps1 [<location>]
.DESCRIPTION
Checks the weather for critical values.
Checks the weather for critical values
.EXAMPLE
PS> .\check-weather.ps1
PS> ./check-weather
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
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)
if ($Value -lt $NormalMin) {
@ -24,7 +24,7 @@ function Check { param([int]$Value, [int]$NormalMin, [int]$NormalMax, [string]$
}
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
$Precip = $Weather.current_condition.precipMM

View File

@ -2,9 +2,9 @@
.SYNOPSIS
check-windows-system-files.ps1
.DESCRIPTION
Checks the validity of the Windows system files (requires admin rights).
Checks the validity of the Windows system files (requires admin rights)
.EXAMPLE
PS> .\check-windows-system-files.ps1
PS> ./check-windows-system-files
.LINK
https://github.com/fleschutz/PowerShell
.NOTES

View File

@ -2,21 +2,21 @@
.SYNOPSIS
check-xml-file [<file>]
.DESCRIPTION
Checks the given XML file for validity.
Checks the given XML file for validity
.EXAMPLE
PS> .\check-xml-file.ps1 myfile.xml
PS> ./check-xml-file myfile.xml
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$File = "")
param([string]$file = "")
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

View File

@ -2,10 +2,10 @@
.SYNOPSIS
cherry-picker.ps1 [<CommitID>] [<CommitMessage>] [<Branches>] [<RepoDir>]
.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!
.EXAMPLE
PS> .\cherry-picker.ps1 93849f889 "Fix typo" "v1 v2 v3"
PS> ./cherry-picker 93849f889 "Fix typo" "v1 v2 v3"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
clean-repo.ps1 [<repo-dir>]
clean-repo.ps1 [<RepoDir>]
.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
PS> .\clean-repo.ps1 C:\MyRepo
PS> ./clean-repo C:\MyRepo
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
clean-repos.ps1 [<parent-dir>]
clean-repos.ps1 [<ParentDir>]
.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
PS> .\clean-repos.ps1 C:\MyRepos
PS> ./clean-repos C:\MyRepos
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,10 +2,10 @@
.SYNOPSIS
clear-recycle-bin.ps1
.DESCRIPTION
Removes the content of the recycle bin folder.
Removes the content of the recycle bin folder
NOTE: can not be undo!
.EXAMPLE
PS> .\clear-recycle-bin.ps1
PS> ./clear-recycle-bin
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
clone-repos.ps1 [<parent-dir>]
clone-repos.ps1 [<ParentDir>]
.DESCRIPTION
Clones well-known Git repositories under the current/given directory.
Clones well-known Git repositories under the current/given directory
.EXAMPLE
PS> .\clone-repos.ps1 C:\MyRepos
PS> ./clone-repos C:\MyRepos
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-calculator.ps1
.DESCRIPTION
Closes the calculator program gracefully.
Closes the calculator program gracefully
.EXAMPLE
PS> .\close-calculator.ps1
PS> ./close-calculator
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-chrome.ps1
.DESCRIPTION
Closes the Web browser Google Chrome gracefully.
Closes the Web browser Google Chrome gracefully
.EXAMPLE
PS> .\close-chrome.ps1
PS> ./close-chrome
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
close-cortana.ps1
close-cortana.ps1
.DESCRIPTION
Closes Cortana gracefully.
Closes Cortana gracefully
.EXAMPLE
PS> .\close-cortana.ps1
PS> ./close-cortana
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-edge.ps1
.DESCRIPTION
Closes the Web browser Microsoft Edge gracefully.
Closes the Web browser Microsoft Edge gracefully
.EXAMPLE
PS> .\close-edge.ps1
PS> ./close-edge
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-file-explorer.ps1
.DESCRIPTION
Closes Microsoft File Explorer gracefully.
Closes Microsoft File Explorer gracefully
.EXAMPLE
PS> .\close-file-explorer.ps1
PS> ./close-file-explorer
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-firefox.ps1
.DESCRIPTION
Closes the Firefox Web browser gracefully.
Closes the Firefox Web browser gracefully
.EXAMPLE
PS> .\close-firefox.ps1
PS> ./close-firefox
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-netflix.ps1
.DESCRIPTION
Closes the Netflix program gracefully.
Closes the Netflix program gracefully
.EXAMPLE
PS> .\close-netflix.ps1
PS> ./close-netflix
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-onedrive.ps1
.DESCRIPTION
Closes Microsoft OneDrive gracefully.
Closes Microsoft OneDrive gracefully
.EXAMPLE
PS> .\close-onedrive.ps1
PS> ./close-onedrive
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
close-program.ps1 [<full-program-name>] [<program-name>] [<program-alias-name>]
close-program.ps1 [<FullProgramName>] [<ProgramName>] [<ProgramAliasName>]
.DESCRIPTION
Closes the processes of the given program gracefully.
Closes the processes of the given program gracefully
.EXAMPLE
PS> .\close-program.ps1 "Google Chrome" "chrome.exe"
PS> ./close-program "Google Chrome" "chrome.exe"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-system-settings.ps1
.DESCRIPTION
Closes the System Settings gracefully.
Closes the System Settings gracefully
.EXAMPLE
PS> .\close-system-settings.ps1
PS> ./close-system-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-thunderbird.ps1
.DESCRIPTION
Closes the mail client Mozilla Thunderbird gracefully.
Closes the mail client Mozilla Thunderbird gracefully
.EXAMPLE
PS> .\close-thunderbird.ps1
PS> ./close-thunderbird
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-vlc.ps1
.DESCRIPTION
Closes the VLC media player gracefully.
Closes the VLC media player gracefully
.EXAMPLE
PS> .\close-vlc.ps1
PS> ./close-vlc
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
close-windows-terminal.ps1
.DESCRIPTION
Closes Windows Terminal gracefully.
Closes Windows Terminal gracefully
.EXAMPLE
PS> .\close-windows-terminal.ps1
PS> ./close-windows-terminal
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Sets up the Git user configuration
.EXAMPLE
PS> .\configure-git.ps1
PS> ./configure-git
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
convert-csv2txt.ps1 [<csv-file>]
.DESCRIPTION
Converts a .CSV file into a text file.
Converts a .CSV file into a text file
.EXAMPLE
PS> .\convert-csv2txt.ps1 salaries.csv
PS> ./convert-csv2txt salaries.csv
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
convert-mysql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
.DESCRIPTION
Convert a MySQL database table to a .CSV file.
Convert a MySQL database table to a .CSV file
.EXAMPLE
PS> .\convert-mysql2csv.ps1
PS> ./convert-mysql2csv
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
convert-ps2bat.ps1 [<pattern>]
.DESCRIPTION
Converts a PowerShell script to .bat files.
Converts a PowerShell script to .bat files
.EXAMPLE
PS> .\convert-ps2bat.ps1 *.ps1
PS> ./convert-ps2bat *.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
convert-ps2md.ps1 [<filename>]
.DESCRIPTION
Converts the comment-based help of a PowerShell script to Markdown.
Converts the comment-based help of a PowerShell script to Markdown
.EXAMPLE
PS> .\convert-ps2md.ps1 myscript.ps1
PS> ./convert-ps2md myscript.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
convert-sql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
.DESCRIPTION
Converts a SQL database table to a .CSV file.
Converts a SQL database table to a .CSV file
.EXAMPLE
PS> .\convert-sql2csv.ps1
PS> ./convert-sql2csv
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
convert-txt2wav.ps1 [<text>] [<wav-file>]
.DESCRIPTION
Converts text to a .WAV audio file.
Converts text to a .WAV audio file
.EXAMPLE
PS> .\convert-txt2wav.ps1 "Hello World" spoken.wav
PS> ./convert-txt2wav "Hello World" spoken.wav
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
copy-photos-sorted.ps1 [<SourceDir>] [<TargetDir>]
.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
PS> .\copy-photos-sorted.ps1 D:\Mobile\DCIM C:\MyPhotoAlbum
PS> ./copy-photos-sorted D:\Mobile\DCIM C:\MyPhotoAlbum
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
decrypt-file.ps1 [<path>] [<password>]
.DESCRIPTION
Decrypts the given file.
Decrypts the given file
.EXAMPLE
PS> .\decrypt-file-rules.ps1 C:\MyFile.txt "123"
PS> ./decrypt-file-rules C:\MyFile.txt "123"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
display-time.ps1 [<seconds>]
.DESCRIPTION
Displays the current time (for 10 seconds by default).
Displays the current time (for 10 seconds by default)
.EXAMPLE
PS> .\display-time.ps1
PS> ./display-time
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
download-dir.ps1 [<URL>]
.DESCRIPTION
Downloads a directory tree from the given URL.
Downloads a directory tree from the given URL
.EXAMPLE
PS> .\download-dir.ps1 "https://www.cnn.com"
PS> ./download-dir "https://www.cnn.com"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
download-file.ps1 [<URL>]
.DESCRIPTION
Downloads a file from the given URL.
Downloads a file from the given URL
.EXAMPLE
PS> .\download-file.ps1 "https://www.cnn.com/index.html"
PS> ./download-file "https://www.cnn.com/index.html"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
edit.ps1 <filename>
.DESCRIPTION
Opens the built-in text editor to edit the given file.
Opens the built-in text editor to edit the given file
.EXAMPLE
PS> .\edit.ps1 C:\MyFile.txt
PS> ./edit C:\MyFile.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
enable-crash-dumps.ps1
.DESCRIPTION
Enables the writing of crash dumps.
Enables the writing of crash dumps
.EXAMPLE
PS> .\enable-crash-dumps.ps1
PS> ./enable-crash-dumps
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
enable-god-mode.ps1
.DESCRIPTION
Enables the god mode (adds a new icon to the desktop).
Enables the god mode (adds a new icon to the desktop)
.EXAMPLE
PS> .\enable-god-mode.ps1
PS> ./enable-god-mode
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
encrypt-file.ps1 [<path>] [<password>]
.DESCRIPTION
Encrypts the given file.
Encrypts the given file
.EXAMPLE
PS> .\encrypt-file.ps1 C:\MyFile.txt "123"
PS> ./encrypt-file C:\MyFile.txt "123"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
enter-chat.ps1
.DESCRIPTION
Enters a chat using a common network shared file.
Enters a chat using a common network shared file
.EXAMPLE
PS> .\enter-chat.ps1
PS> ./enter-chat
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
fetch-repo.ps1 [<repo-dir>]
.DESCRIPTION
Fetches updates for a local Git repository (including submodules).
Fetches updates for a local Git repository (including submodules)
.EXAMPLE
PS> .\fetch-repo.ps1
PS> ./fetch-repo
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
fetch-repos.ps1 [<parent-dir>]
fetch-repos.ps1 [<ParentDir>]
.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
PS> .\fetch-repos.ps1 C:\MyRepos
PS> ./fetch-repos C:\MyRepos
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Prints the MD5 checksum of the given file
.EXAMPLE
PS> .\MD5.ps1 C:\MyFile.txt
PS> ./get-md5 C:\MyFile.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Prints the SHA1 checksum of the given file
.EXAMPLE
PS> .\get-sha1.ps1 C:\MyFile.txt
PS> ./get-sha1 C:\MyFile.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Prints the SHA256 checksum of the given file
.EXAMPLE
PS> .\get-sha256.ps1 C:\MyFile.txt
PS> ./get-sha256 C:\MyFile.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
hibernate.ps1
.DESCRIPTION
Enables hibernate mode for the local computer (needs admin rights).
Enables hibernate mode for the local computer (needs admin rights)
.EXAMPLE
PS> .\hibernate.ps1
PS> ./hibernate
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
inspect-exe.ps1 [<path-to-exe-file>]
.DESCRIPTION
Prints basic information of the given executable file.
Prints basic information of the given executable file
.EXAMPLE
PS> .\inspect-exe.ps1 C:\MyApp.exe
PS> ./inspect-exe C:\MyApp.exe
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-github-cli.ps1
.DESCRIPTION
Installs GitHub CLI.
Installs GitHub CLI
.EXAMPLE
PS> .\install-github-cli.ps1
PS> ./install-github-cli
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-google-chrome.ps1
.DESCRIPTION
Installs the latest Google Chrome browser.
Installs the latest Google Chrome browser
.EXAMPLE
PS> .\install-google-chrome.ps1
PS> ./install-google-chrome
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-knot-resolver.ps1
.DESCRIPTION
Installs the Knot Resolver (a DNS resolver daemon, needs admin rights).
Installs the Knot Resolver (a DNS resolver daemon, needs admin rights)
.EXAMPLE
PS> .\install-knot-resolver.ps1
PS> ./install-knot-resolver
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-signal-cli.ps1 [<version>]
.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
PS> .\install-signal-cli.ps1 0.11.12
PS> ./install-signal-cli 0.11.12
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-ssh-client.ps1
.DESCRIPTION
Installs the SSH client (needs admin rights).
Installs the SSH client (needs admin rights)
.EXAMPLE
PS> .\install-ssh-client.ps1
PS> ./install-ssh-client
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-ssh-server.ps1
.DESCRIPTION
Installs the SSH server (needs admin rights).
Installs the SSH server (needs admin rights)
.EXAMPLE
PS> .\install-ssh-server.ps1
PS> ./install-ssh-server
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Installs updates (needs admin rights)
.EXAMPLE
PS> .\install-updates.ps1
PS> ./install-updates
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
install-wsl.ps1
.DESCRIPTION
Installs Windows Subsystem for Linux (WSL) - needs admin rights.
Installs Windows Subsystem for Linux (WSL) - needs admin rights
.EXAMPLE
PS> .\install-wsl.ps1
PS> ./install-wsl
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
introduce-powershell.ps1
.DESCRIPTION
Introduces PowerShell to new users.
Introduces PowerShell to new users
.EXAMPLE
PS> .\introduce-powershell.ps1
PS> ./introduce-powershell
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-aliases.ps1
.DESCRIPTION
Lists all PowerShell aliases.
Lists all PowerShell aliases
.EXAMPLE
PS> .\list-aliases.ps1
PS> ./list-aliases
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-anagrams.ps1 [<word>] [<columns>]
.DESCRIPTION
Lists all anagrams of the given word.
Lists all anagrams of the given word
.EXAMPLE
PS> .\list-anagrams.ps1 Markus
PS> ./list-anagrams Baby
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-automatic-variables.ps1
.DESCRIPTION
Lists all automatic variables of PowerShell.
Lists all automatic variables of PowerShell
.EXAMPLE
PS> .\list-automatic-variables.ps1
PS> ./list-automatic-variables
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-branches.ps1 [<repo-dir>] [<pattern>]
.DESCRIPTION
Lists all branches in the current/given Git repository.
Lists all branches in the current/given Git repository
.EXAMPLE
PS> .\list-branches.ps1
PS> ./list-branches
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-cheat-sheet.ps1
.DESCRIPTION
Lists the PowerShell cheat sheet.
Lists the PowerShell cheat sheet
.EXAMPLE
PS> .\list-cheat-sheet.ps1
PS> ./list-cheat-sheet
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-city-weather.ps1
.DESCRIPTION
List the current weather of cities world-wide (west to east).
List the current weather of cities world-wide (west to east)
.EXAMPLE
PS> .\list-city-weather.ps1
PS> ./list-city-weather
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-cli-tools.ps1
.DESCRIPTION
Lists available command-line interface (CLI) tools.
Lists available command-line interface (CLI) tools
.EXAMPLE
PS> .\list-cli-tools.ps1
PS> ./list-cli-tools
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-clipboard.ps1
.DESCRIPTION
Lists the contents of the clipboard.
Lists the contents of the clipboard
.EXAMPLE
PS> .\list-clipboard.ps1
PS> ./list-clipboard
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-cmdlets.ps1
.DESCRIPTION
Lists all PowerShell cmdlets.
Lists all PowerShell cmdlets
.EXAMPLE
PS> .\list-cmdlets.ps1
PS> ./list-cmdlets
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-commits.ps1 [<RepoDir>] [<Format>]
.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
PS> .\list-commits.ps1
PS> ./list-commits
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-console-colors.ps1
.DESCRIPTION
Lists all console colors.
Lists all console colors
.EXAMPLE
PS> .\list-console-colors.ps1
PS> ./list-console-colors
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-countries.ps1
.DESCRIPTION
Lists details of all countries.
Lists details of all countries
.EXAMPLE
PS> .\list-countries.ps1
PS> ./list-countries
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-credits.ps1
.DESCRIPTION
Shows the credits for the PowerShell Scripts.
Shows the credits for the PowerShell Scripts
.EXAMPLE
PS> .\list-credits.ps1
PS> ./list-credits
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-crypto-rates.ps1
.DESCRIPTION
Lists the current crypto exchange rates.
Lists the current crypto exchange rates
.EXAMPLE
PS> .\list-crypto-rates.ps1
PS> ./list-crypto-rates
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-dir-tree.ps1 [<dir-tree>]
.DESCRIPTION
Lists the full directory tree.
Lists the full directory tree
.EXAMPLE
PS> .\list-dir-tree.ps1 C:\
PS> ./list-dir-tree C:\
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-dir.ps1 [<pattern>]
.DESCRIPTION
Lists the directory content formatted in columns.
Lists the directory content formatted in columns
.EXAMPLE
PS> .\list-dir.ps1 C:\
PS> ./list-dir C:\
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -2,9 +2,9 @@
.SYNOPSIS
list-drives.ps1
.DESCRIPTION
Lists all drives connected to the computer.
Lists all drives connected to the computer
.EXAMPLE
PS> .\list-drives.ps1
PS> ./list-drives
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

Some files were not shown because too many files have changed in this diff Show More