1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-04-04 06:20:42 +02:00

Replace tabs by spaces in meta header

This commit is contained in:
Markus Fleschutz 2021-03-22 20:10:18 +01:00
parent 5d372fc184
commit 6efc805a7d
156 changed files with 635 additions and 635 deletions
Scripts
MD5.ps1SHA1.ps1SHA256.ps1add-firewall-rules.ps1alert.ps1check-cpu-temp.ps1check-dns-resolution.ps1check-drive-space.ps1check-health.ps1check-ipv4-address.ps1check-ipv6-address.ps1check-mac-address.ps1check-swap-space.ps1check-symlinks.ps1check-windows-system-files.ps1check-xml-file.ps1clean-branch.ps1clone-repos.ps1close-calculator.ps1close-chrome.ps1close-cortana.ps1close-edge.ps1close-file-explorer.ps1close-program.ps1close-system-settings.ps1close-thunderbird.ps1close-vlc.ps1close-windows-terminal.ps1configure-git.ps1create-shortcut.ps1create-symlink.ps1csv-to-text.ps1decrypt-file.ps1display-time.ps1enable-crash-dumps.ps1encrypt-file.ps1fetch-repo.ps1fetch-repos.ps1generate-qrcode.ps1go-downloads.ps1go-home.ps1go-music.ps1go-root.ps1go-scripts.ps1hibernate.ps1inspect-exe.ps1list-aliases.ps1list-anagrams.ps1list-automatic-variables.ps1list-branches.ps1list-clipboard.ps1list-cmdlets.ps1list-commits.ps1list-current-timezone.ps1list-drives.ps1list-earthquakes.ps1list-empty-dirs.ps1list-empty-files.ps1list-environment-variables.ps1list-files.ps1list-formatted.ps1list-fritzbox-calls.ps1list-fritzbox-devices.ps1list-hidden-files.ps1list-installed-apps.ps1list-installed-software.ps1list-logbook.ps1list-modules.ps1list-network-shares.ps1list-news.ps1list-os-releases.ps1list-printers.ps1list-processes.ps1list-profiles.ps1list-random-passwords.ps1list-random-pins.ps1list-scripts.ps1list-tags.ps1list-timezones.ps1list-unused-files.ps1list-user-groups.ps1locate-city.ps1locate-ipaddress.ps1locate-zip-code.ps1make-install.ps1moon.ps1mute-audio.ps1new-email.ps1next-joke.ps1open-browser.ps1open-calculator.ps1open-email-client.ps1play-beep.ps1play-m3u.ps1play-mission-impossible.ps1play-mp3.ps1play-super-mario.ps1play-the-imperial-march.ps1poweroff.ps1pull-repo.ps1

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./MD5.ps1 [<file>]
.DESCRIPTION prints the MD5 checksum of the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./MD5.ps1 [<file>]
.DESCRIPTION prints the MD5 checksum of the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($File = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./SHA1.ps1 [<file>]
.DESCRIPTION prints the SHA1 checksum of the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./SHA1.ps1 [<file>]
.DESCRIPTION prints the SHA1 checksum of the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($File = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./SHA256.ps1 [<file>]
.DESCRIPTION prints the SHA256 checksum of the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./SHA256.ps1 [<file>]
.DESCRIPTION prints the SHA256 checksum of the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($File = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./add-firewall-rules.ps1 [<path-to-executables>]
.DESCRIPTION adds firewall rules for the given executables, administrator rights are required
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./add-firewall-rules.ps1 [<path-to-executables>]
.DESCRIPTION adds firewall rules for the given executables, administrator rights are required
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
#Requires -RunAsAdministrator

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./alert.ps1 [<message>]
.DESCRIPTION handle and escalate the given alert message
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./alert.ps1 [<message>]
.DESCRIPTION handle and escalate the given alert message
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Message = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-cpu-temp.ps1
.DESCRIPTION checks the CPU temperature
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-cpu-temp.ps1
.DESCRIPTION checks the CPU temperature
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-dns-resolution.ps1
.DESCRIPTION checks the DNS resolution with frequently used domain names
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-dns-resolution.ps1
.DESCRIPTION checks the DNS resolution with frequently used domain names
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
Set-StrictMode -Version Latest

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-drive-space.ps1 [<drive>] [<min-level>]
.DESCRIPTION checks the given drive for free space left
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-drive-space.ps1 [<drive>] [<min-level>]
.DESCRIPTION checks the given drive for free space left
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Drive = "", [int]$MinLevel = 50) # minimum level in GB

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-health.ps1
.DESCRIPTION checks the system health
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-health.ps1
.DESCRIPTION checks the system health
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
$Hostname = $(hostname)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-ipv4-address.ps1 [<address>]
.DESCRIPTION checks the given IPv4 address for validity
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-ipv4-address.ps1 [<address>]
.DESCRIPTION checks the given IPv4 address for validity
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Address = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-ipv6-address.ps1 [<address>]
.DESCRIPTION checks the given IPv6 address for validity
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-ipv6-address.ps1 [<address>]
.DESCRIPTION checks the given IPv6 address for validity
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Address = "")

View File

@ -1,10 +1,10 @@
#!/bin/powershell
<#
.SYNTAX ./check-mac-address.ps1 [<MAC>]
.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
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-mac-address.ps1 [<MAC>]
.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
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($MAC = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-swap-space.ps1 [<min-level>]
.DESCRIPTION checks the free swap space
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-swap-space.ps1 [<min-level>]
.DESCRIPTION checks the free swap space
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([int]$MinLevel = 50) # minimum level in GB

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-symlinks.ps1 [<dir-tree>]
.DESCRIPTION checks every symlink in the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-symlinks.ps1 [<dir-tree>]
.DESCRIPTION checks every symlink in the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($DirTree = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-windows-system-files.ps1
.DESCRIPTION checks the validity of the Windows system files (requires admin rights)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-windows-system-files.ps1
.DESCRIPTION checks the validity of the Windows system files (requires admin rights)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
#Requires -RunAsAdministrator

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./check-xml-file [<file>]
.DESCRIPTION checks the given XML file for validity
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./check-xml-file [<file>]
.DESCRIPTION checks the given XML file for validity
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($File = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./clean-branch.ps1 [<repo-dir>]
.DESCRIPTION cleans the current/given Git repository from generated files (including submodules, e.g. for a fresh build)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./clean-branch.ps1 [<repo-dir>]
.DESCRIPTION cleans the current/given Git repository from generated files (including submodules, e.g. for a fresh build)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RepoDir = "$PWD")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./clone-repos.ps1 [<target-dir>]
.DESCRIPTION clones well-known Git repositories into the current/given directory.
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./clone-repos.ps1 [<target-dir>]
.DESCRIPTION clones well-known Git repositories into the current/given directory.
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($TargetDir = "$PWD")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-calculator.ps1
.DESCRIPTION closes the calculator program gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-calculator.ps1
.DESCRIPTION closes the calculator program gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "Calculator" "Calculator" "calc"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-chrome.ps1
.DESCRIPTION closes Google Chrome gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-chrome.ps1
.DESCRIPTION closes Google Chrome gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "Google Chrome" "chrome"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-cortana.ps1
.DESCRIPTION closes Cortana gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-cortana.ps1
.DESCRIPTION closes Cortana gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "Cortana" "Cortana"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-edge.ps1
.DESCRIPTION closes Microsoft Edge gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-edge.ps1
.DESCRIPTION closes Microsoft Edge gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "Microsoft Edge" "msedge"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-file-explorer.ps1
.DESCRIPTION closes Microsoft File Explorer gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-file-explorer.ps1
.DESCRIPTION closes Microsoft File Explorer gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "File Explorer" "explorer"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-program.ps1 [<full-program-name>][<program-name>] [<program-alias-name>]
.DESCRIPTION closes the processes of the given program gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-program.ps1 [<full-program-name>][<program-name>] [<program-alias-name>]
.DESCRIPTION closes the processes of the given program gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($FullProgramName = "", $ProgramName = "", $ProgramAliasName = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-system-settings.ps1
.DESCRIPTION closes the System Settings gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-system-settings.ps1
.DESCRIPTION closes the System Settings gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "System Settings" "SystemSettings"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-thunderbird.ps1
.DESCRIPTION closes Mozilla Thunderbird gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-thunderbird.ps1
.DESCRIPTION closes Mozilla Thunderbird gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "Mozilla Thunderbird" "thunderbird"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-vlc.ps1
.DESCRIPTION closes the VLC media player gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-vlc.ps1
.DESCRIPTION closes the VLC media player gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "VLC media player" "vlc"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./close-windows-terminal.ps1
.DESCRIPTION closes Windows Terminal gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./close-windows-terminal.ps1
.DESCRIPTION closes Windows Terminal gracefully
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
./close-program "Windows Terminal" "WindowsTerminal"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./configure-git.ps1 [<full-name>] [<email-address>] [<favorite-editor>]
.DESCRIPTION sets up the Git user configuration
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./configure-git.ps1 [<full-name>] [<email-address>] [<favorite-editor>]
.DESCRIPTION sets up the Git user configuration
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($FullName = "", $EmailAddress = "", $FavoriteEditor = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./create-shortcut.ps1 [<shortcut>] [<target>] [<description>]
.DESCRIPTION creates a new shortcut
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./create-shortcut.ps1 [<shortcut>] [<target>] [<description>]
.DESCRIPTION creates a new shortcut
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Shortcut = "", $Target = "", $Description)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./create-symlink.ps1 [<symlink>] [<target>]
.DESCRIPTION creates a symbolic link
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./create-symlink.ps1 [<symlink>] [<target>]
.DESCRIPTION creates a symbolic link
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Symlink = "", $Target = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./csv-to-text.ps1 [<csv-file>]
.DESCRIPTION converts the given CSV file into a text list
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./csv-to-text.ps1 [<csv-file>]
.DESCRIPTION converts the given CSV file into a text list
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([String]$Path)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./decrypt-file.ps1 [<path>] [<password>]
.DESCRIPTION decrypts the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./decrypt-file.ps1 [<path>] [<password>]
.DESCRIPTION decrypts the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([string]$Path = "", [string]$Password = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./display-time.ps1 [<seconds>]
.DESCRIPTION displays the current time for 10 seconds by default
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./display-time.ps1 [<seconds>]
.DESCRIPTION displays the current time for 10 seconds by default
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([int]$Seconds = 10)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./enable-crash-dumps.ps1
.DESCRIPTION enables the writing of crash dumps
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./enable-crash-dumps.ps1
.DESCRIPTION enables the writing of crash dumps
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
##################################################################

View File

@ -1,12 +1,12 @@
#!/bin/powershell
<#
.SYNTAX ./encrypt-file.ps1 [<path>] [<password>]
.DESCRIPTION encrypts the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./encrypt-file.ps1 [<path>] [<password>]
.DESCRIPTION encrypts the given file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([string]$Path = "", [string]$Password = "")
param($Path = "", $Password = "")
function EncryptFile {
<#

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./fetch-repo.ps1 [<repo-dir>]
.DESCRIPTION fetches updates for the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./fetch-repo.ps1 [<repo-dir>]
.DESCRIPTION fetches updates for the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RepoDir = "$PWD")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./fetch-repos.ps1 [<parent-dir>]
.DESCRIPTION fetches updates for all Git repositories under the current/given directory (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./fetch-repos.ps1 [<parent-dir>]
.DESCRIPTION fetches updates for all Git repositories under the current/given directory (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($ParentDir = "$PWD")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./generate-qrcode.ps1 [<text>] [<image-size>]
.DESCRIPTION generates a QR code
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./generate-qrcode.ps1 [<text>] [<image-size>]
.DESCRIPTION generates a QR code
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Text = "", $ImageSize = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./go-downloads.ps1
.DESCRIPTION go to the user's downloads folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./go-downloads.ps1
.DESCRIPTION go to the user's downloads folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./go-home.ps1
.DESCRIPTION go to the user's home folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./go-home.ps1
.DESCRIPTION go to the user's home folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./go-music.ps1
.DESCRIPTION go to the user's music folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./go-music.ps1
.DESCRIPTION go to the user's music folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./go-root.ps1
.DESCRIPTION go to the root directory (C: on Windows)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./go-root.ps1
.DESCRIPTION go to the root directory (C: on Windows)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./go-scripts.ps1
.DESCRIPTION go to the PowerShell Scripts folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./go-scripts.ps1
.DESCRIPTION go to the PowerShell Scripts folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./hibernate.ps1
.DESCRIPTION enables hibernate mode for the local computer (requires admin rights)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./hibernate.ps1
.DESCRIPTION enables hibernate mode for the local computer (requires admin rights)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
#Requires -RunAsAdministrator

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./inspect-exe.ps1 [<path-to-exe-file>]
.DESCRIPTION prints basic information of the given executable file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./inspect-exe.ps1 [<path-to-exe-file>]
.DESCRIPTION prints basic information of the given executable file
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($PathToExe = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-aliases.ps1
.DESCRIPTION lists all PowerShell aliases
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-aliases.ps1
.DESCRIPTION lists all PowerShell aliases
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-anagrams.ps1 [<word>] [<columns>]
.DESCRIPTION lists all anagrams of the given word
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-anagrams.ps1 [<word>] [<columns>]
.DESCRIPTION lists all anagrams of the given word
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Word = "", [int]$Columns = 8)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-automatic-variables.ps1
.DESCRIPTION lists the automatic variables of PowerShell
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-automatic-variables.ps1
.DESCRIPTION lists the automatic variables of PowerShell
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
function AddItem { param([string]$Variable, [string]$Content)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
.DESCRIPTION lists all branches in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
.DESCRIPTION lists all branches in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RepoDir = "$PWD", $Pattern = "*")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-clipboard.ps1
.DESCRIPTION lists the contents of the clipboard
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-clipboard.ps1
.DESCRIPTION lists the contents of the clipboard
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-cmdlets.ps1
.DESCRIPTION lists all PowerShell cmdlets
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-cmdlets.ps1
.DESCRIPTION lists all PowerShell cmdlets
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-commits.ps1 [<repo-dir>] [<format>]
.DESCRIPTION lists all commits in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-commits.ps1 [<repo-dir>] [<format>]
.DESCRIPTION lists all commits in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RepoDir = "$PWD", $Format = "compact")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-current-timezone.ps1
.DESCRIPTION lists the current time zone details
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-current-timezone.ps1
.DESCRIPTION lists the details of the current time zone
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-drives.ps1
.DESCRIPTION lists all drives
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-drives.ps1
.DESCRIPTION lists all drives connected to the computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-earthquakes.ps1
.DESCRIPTION lists earthquakes with magnitude >= 6.0 for the last 30 days
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-earthquakes.ps1
.DESCRIPTION lists earthquakes with magnitude >= 6.0 for the last 30 days
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
$Format="csv" # csv, geojson, kml, text, xml

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-empty-dirs.ps1 [<dir-tree>]
.DESCRIPTION lists empty subfolders within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-empty-dirs.ps1 [<dir-tree>]
.DESCRIPTION lists empty subfolders within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($DirTree = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-empty-files.ps1 [<dir-tree>]
.DESCRIPTION lists empty files within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-empty-files.ps1 [<dir-tree>]
.DESCRIPTION lists empty files within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($DirTree = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-environment-variables.ps1
.DESCRIPTION lists all environment variables
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-environment-variables.ps1
.DESCRIPTION lists all environment variables
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-files.ps1 [<folder>]
.DESCRIPTION lists all files in the given folder and also in every subfolder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-files.ps1 [<folder>]
.DESCRIPTION lists all files in the given folder and also in every subfolder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Folder = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-formatted.ps1 [<directory>]
.DESCRIPTION lists the current working directory formatted in columns
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-formatted.ps1 [<directory>]
.DESCRIPTION lists the current working directory formatted in columns
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Dir = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-fritzbox-calls.ps1 [<username>] [<password>]
.DESCRIPTION lists the phone calls of the FRITZ!Box device
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-fritzbox-calls.ps1 [<username>] [<password>]
.DESCRIPTION lists the phone calls of the FRITZ!Box device
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
#Requires -Version 3

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-fritzbox-calls.ps1 [<username>] [<password>]
.DESCRIPTION lists FRITZ!Box's known devices
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-fritzbox-calls.ps1 [<username>] [<password>]
.DESCRIPTION lists FRITZ!Box's known devices
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
#Requires -Version 3

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-hidden-files.ps1 [<dir-tree>]
.DESCRIPTION lists hidden files within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-hidden-files.ps1 [<dir-tree>]
.DESCRIPTION lists hidden files within the given directory tree
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($DirTree = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-installed-apps.ps1
.DESCRIPTION lists the installed Windows Store apps
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-installed-apps.ps1
.DESCRIPTION lists the installed Windows Store apps
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-installed-software.ps1
.DESCRIPTION lists the installed software (except Windows Store apps)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-installed-software.ps1
.DESCRIPTION lists the installed software (except Windows Store apps)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-logbook.ps1
.DESCRIPTION lists the content of the logbook (in ../Data/logbook.csv)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-logbook.ps1
.DESCRIPTION lists the content of the logbook (in ../Data/logbook.csv)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
$PathToRepo = "$PSScriptRoot/.."

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-modules.ps1
.DESCRIPTION lists all PowerShell modules
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-modules.ps1
.DESCRIPTION lists all PowerShell modules
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-network-shares.ps1
.DESCRIPTION lists the network shares of the local computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-network-shares.ps1
.DESCRIPTION lists the network shares of the local computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-news.ps1 [<RSS-URL>]
.DESCRIPTION lists the latest news
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-news.ps1 [<RSS-URL>]
.DESCRIPTION lists the latest news
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RSS_URL = "https://yahoo.com/news/rss/world")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-os-releases.ps1
.DESCRIPTION lists OS releases and download URL
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-os-releases.ps1
.DESCRIPTION lists OS releases and download URL
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-printers.ps1
.DESCRIPTION lists all printer known to the computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-printers.ps1
.DESCRIPTION lists all printer known to the computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-processes.ps1
.DESCRIPTION lists the local computer processes
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-processes.ps1
.DESCRIPTION lists the local computer processes
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-profiles.ps1
.DESCRIPTION lists your PowerShell profiles
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-profiles.ps1
.DESCRIPTION lists your PowerShell profiles
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
function ShowProfile { param([int]$Level, [string]$Name, [string]$Filename)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-random-passwords.ps1
.DESCRIPTION prints a list of random passwords
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-random-passwords.ps1
.DESCRIPTION prints a list of random passwords
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
$PasswordLength = 15

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-random-pins.ps1 [<pin-length>] [<columns>] [<rows>]
.DESCRIPTION prints a list of random PIN's
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-random-pins.ps1 [<pin-length>] [<columns>] [<rows>]
.DESCRIPTION prints a list of random PIN's
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 24)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-scripts.ps1
.DESCRIPTION lists all PowerShell scripts in this repository (sorted alphabetically)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-scripts.ps1
.DESCRIPTION lists all PowerShell scripts in this repository (sorted alphabetically)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
function ListScripts { param([string]$FilePath)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-tags.ps1 [<repo-dir>] [<pattern>]
.DESCRIPTION lists all tags in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-tags.ps1 [<repo-dir>] [<pattern>]
.DESCRIPTION lists all tags in the current/given Git repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RepoDir = "$PWD", $Pattern="*")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-timezones.ps1
.DESCRIPTION lists all time zones available
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-timezones.ps1
.DESCRIPTION lists all time zones available
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-unused-files.ps1 <dirtree> <days>
.DESCRIPTION lists files in the <directory tree> with last access time older than <days>
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-unused-files.ps1 <dirtree> <days>
.DESCRIPTION lists files in the <directory tree> with last access time older than <days>
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($DirTree = "", [int]$NumberOfDaysUnused = 99)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./list-user-groups.ps1
.DESCRIPTION lists the user groups on the local computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./list-user-groups.ps1
.DESCRIPTION lists the user groups on the local computer
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./locate-city.ps1 [<city>]
.DESCRIPTION prints the geographic location of the given city
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./locate-city.ps1 [<city>]
.DESCRIPTION prints the geographic location of the given city
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($City = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./locate-ipaddress.ps1 [<IPaddress>]
.DESCRIPTION prints the geographic location of the given IP address
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./locate-ipaddress.ps1 [<IPaddress>]
.DESCRIPTION prints the geographic location of the given IP address
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($IPaddr = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./locate-zip-code.ps1 [<country-code>] [<zip-code>]
.DESCRIPTION prints the geographic location of the given zip-code
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./locate-zip-code.ps1 [<country-code>] [<zip-code>]
.DESCRIPTION prints the geographic location of the given zip-code
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($CountryCode = "", $ZipCode = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX make-install.ps1 <build-dir>
.DESCRIPTION Copies newer EXE's + DLL's from the build directory to the installation directory.
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX make-install.ps1 <build-dir>
.DESCRIPTION Copies newer EXE's + DLL's from the build directory to the installation directory.
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
set SRC_DIR=%1

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./moon.ps1
.DESCRIPTION prints the current moon phase
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./moon.ps1
.DESCRIPTION prints the current moon phase
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./mute-audio.ps1
.DESCRIPTION mutes the audio
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./mute-audio.ps1
.DESCRIPTION mutes the audio
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./new-email.ps1 [<address>]
.DESCRIPTION starts the default email client to write a new email
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./new-email.ps1 [<address>]
.DESCRIPTION starts the default email client to write a new email
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($EmailAddress = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./next-joke.ps1
.DESCRIPTION gets the next random Juck Norris joke
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./next-joke.ps1
.DESCRIPTION gets the next random Juck Norris joke
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./open-browser.ps1 [<URL>]
.DESCRIPTION starts the default Web browser, optional with given URL
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./open-browser.ps1 [<URL>]
.DESCRIPTION starts the default Web browser, optional with given URL
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($URL = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./open-calculator.ps1
.DESCRIPTION starts the calculator program
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./open-calculator.ps1
.DESCRIPTION starts the calculator program
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {

View File

@ -1,13 +1,13 @@
#!/bin/powershell
<#
.SYNTAX ./open-email-client.ps1
.DESCRIPTION starts the default email client
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./open-email-client.ps1
.DESCRIPTION starts the default email client
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
Start-Process "mailto:markus@fleschutz.de"
start-process "mailto:markus@fleschutz.de"
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./play-beep.ps1
.DESCRIPTION plays a beep sound
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./play-beep.ps1
.DESCRIPTION plays a beep sound
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
[console]::beep(500,300)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./play-m3u.ps1 [<playlist-file>]
.DESCRIPTION plays the given playlist (M3U file format)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./play-m3u.ps1 [<playlist-file>]
.DESCRIPTION plays the given playlist (M3U file format)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Filename = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./play-mission-impossible.ps1
.DESCRIPTION plays the Mission Impossible theme
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./play-mission-impossible.ps1
.DESCRIPTION plays the Mission Impossible theme
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
[console]::beep(784,150)

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./play-mp3.ps1 [<MP3-file>]
.DESCRIPTION plays the given sound file (MP3 file format)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./play-mp3.ps1 [<MP3-file>]
.DESCRIPTION plays the given sound file (MP3 file format)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Filename = "")

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./play-super-mario.ps1
.DESCRIPTION plays the Super Mario Intro
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./play-super-mario.ps1
.DESCRIPTION plays the Super Mario Intro
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
[console]::beep(659,250) ##E

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./play-the-imperial-march.ps1
.DESCRIPTION plays the Imperial March (Star Wars)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./play-the-imperial-march.ps1
.DESCRIPTION plays the Imperial March (Star Wars)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
[console]::beep(440, 500)

View File

@ -1,15 +1,15 @@
#!/bin/powershell
<#
.SYNTAX ./poweroff.ps1
.DESCRIPTION halts the local computer, administrator rights are required
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./poweroff.ps1
.DESCRIPTION halts the local computer, administrator rights are required
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
#Requires -RunAsAdministrator
try {
Stop-Computer
stop-computer
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -1,9 +1,9 @@
#!/bin/powershell
<#
.SYNTAX ./pull-repo.ps1 [<repo-dir>]
.DESCRIPTION pulls updates for the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
.SYNTAX ./pull-repo.ps1 [<repo-dir>]
.DESCRIPTION pulls updates for the current/given Git repository (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($RepoDir = "$PWD")

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