Update scripts.csv

This commit is contained in:
Markus Fleschutz 2023-09-28 13:58:21 +02:00 committed by GitHub
parent 84b3e0db22
commit 293d9ea489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,18 +32,18 @@ check-drive-space.ps1,filesystem,Checks a drive for free space left,
check-file-system.ps1,filesystem,Checks the file system of a drive (needs admin rights),
check-health.ps1,misc,Checks the system health,
check-ipv4-address.ps1,misc,Checks the given IPv4 address for validity,
check-ipv6-address.ps1, ,Checks the given IPv6 address for validity,
check-mac-address.ps1, ,Checks the given MAC address for validity,
check-ping.ps1, ,Checks the ping latency to the internet,
check-subnet-mask.ps1, ,Checks the given subnet mask for validity,
check-swap-space.ps1, ,Checks the swap space for free space left,
check-symlinks.ps1, ,Checks every symlink in a directory tree,
check-weather.ps1, ,Checks the current weather for critical values,
check-windows-system-files.ps1, ,Checks the validity of the Windows system files,
check-xml-file.ps1, ,Checks the given XML file for validity,
check-ipv6-address.ps1,misc,Checks the given IPv6 address for validity,
check-mac-address.ps1,misc,Checks the given MAC address for validity,
check-ping.ps1,misc,Checks the ping latency to the internet,
check-subnet-mask.ps1,misc,Checks the given subnet mask for validity,
check-swap-space.ps1,misc,Checks the swap space for free space left,
check-symlinks.ps1,filesystem,Checks every symlink in a directory tree,
check-weather.ps1,misc,Checks the current weather for critical values,
check-windows-system-files.ps1,filesystem,Checks the validity of the Windows system files,
check-xml-file.ps1,filesystem,Checks the given XML file for validity,
clean-repo.ps1,git,Cleans the current/given Git repository from untracked files (including submodules),
clean-repos.ps1,git,Cleans all Git repositories under the current/given directory from untracked files (including submodules),
clear-recycle-bin.ps1, ,Removes the content of the recycle bin folder (can not be undo!),
clear-recycle-bin.ps1,desktop,Removes the content of the recycle bin folder (can not be undo!),
clone-repos.ps1,git,Clones well-known Git repositories,
close-calculator.ps1,desktop,Closes the calculator program gracefully,
close-chrome.ps1,desktop,Closes the Google Chrome Web browser,
@ -57,29 +57,29 @@ close-netflix.ps1,desktop,Closes the Netflix application gracefully,
close-onedrive.ps1,desktop,Closes Microsoft OneDrive gracefully,
close-serenade.ps1,desktop,Closes the Serenade.ai application gracefully,
close-snipping-tool.ps1,desktop,Closes the Snipping Tool application gracefully,
close-spotify.ps1, ,Closes Spotify,
close-system-settings.ps1, ,Closes the System Settings gracefully,
close-thunderbird.ps1, ,Closes Mozilla Thunderbird gracefully,
close-vlc.ps1, ,Closes the VLC media player application,
close-windows-terminal.ps1, ,Closes the Windows Terminal application,
copy-photos-sorted.ps1, ,Copy image files sorted by year and month,
configure-git.ps1, ,Sets up the Git user configuration,
convert-csv2txt.ps1, ,Converts the given CSV file into a text list,
convert-mysql2csv.ps1, ,Converts the MySQL database table to a CSV file,
convert-ps2bat.ps1, ,Converts PowerShell script(s) to .bat files,
convert-ps2md.ps1, ,Converts the comment-based help of a PowerShell script to Markdown,
convert-sql2csv.ps1, ,Converts the SQL database table to a CSV file,
convert-txt2wav.ps1, ,Converts text into a audio .WAV file,
close-spotify.ps1,desktop,Closes Spotify,
close-system-settings.ps1,desktop,Closes the System Settings gracefully,
close-thunderbird.ps1,desktop,Closes Mozilla Thunderbird gracefully,
close-vlc.ps1,desktop,Closes the VLC media player application,
close-windows-terminal.ps1,desktop,Closes the Windows Terminal application,
copy-photos-sorted.ps1,desktop,Copy image files sorted by year and month,
configure-git.ps1,git,Sets up the Git user configuration,
convert-csv2txt.ps1,filesystem,Converts the given CSV file into a text list,
convert-mysql2csv.ps1,filesystem,Converts the MySQL database table to a CSV file,
convert-ps2bat.ps1,filesystem,Converts PowerShell script(s) to .bat files,
convert-ps2md.ps1,filesystem,Converts the comment-based help of a PowerShell script to Markdown,
convert-sql2csv.ps1,filesystem,Converts the SQL database table to a CSV file,
convert-txt2wav.ps1,filesystem,Converts text into a audio .WAV file,
decrypt-file.ps1,filesystem,Decrypts a file,
disable-ipv6.ps1,misc,Disables IPv6 (requires admin rights),
disconnect-vpn.ps1,misc,Disconnects the VPN,
download-dir.ps1,filesystem,Downloads a folder (including subfolders) from an URL,
download-file.ps1,filesystem,Downloads a file from an URL,
edit.ps1, ,Edits the given file with the built-in text editor,
enable-crash-dumps.ps1, ,Enables the writing of crash dumps,
enable-god-mode.ps1, ,Enables the god mode (adds a new icon to the desktop),
encrypt-file.ps1, ,Encrypts the given file,
export-to-manuals.ps1, ,Converts all scripts as manuals,
edit.ps1,desktop,Edits the given file with the built-in text editor,
enable-crash-dumps.ps1,filesystem,Enables the writing of crash dumps,
enable-god-mode.ps1,desktop,Enables the god mode (adds a new icon to the desktop),
encrypt-file.ps1,filesystem,Encrypts the given file,
export-to-manuals.ps1,filesystem,Converts all scripts as manuals,
export-to-serenade.ps1, ,Converts all scripts to Serenade for voice control,
fetch-repo.ps1, ,Fetches updates for the current/given Git repository (including submodules),
fetch-repos.ps1, ,Fetches updates for all Git repositories under the current/given directory (including submodules),

1 SCRIPT CATEGORY DESCRIPTION
32 check-file-system.ps1 filesystem Checks the file system of a drive (needs admin rights)
33 check-health.ps1 misc Checks the system health
34 check-ipv4-address.ps1 misc Checks the given IPv4 address for validity
35 check-ipv6-address.ps1 misc Checks the given IPv6 address for validity
36 check-mac-address.ps1 misc Checks the given MAC address for validity
37 check-ping.ps1 misc Checks the ping latency to the internet
38 check-subnet-mask.ps1 misc Checks the given subnet mask for validity
39 check-swap-space.ps1 misc Checks the swap space for free space left
40 check-symlinks.ps1 filesystem Checks every symlink in a directory tree
41 check-weather.ps1 misc Checks the current weather for critical values
42 check-windows-system-files.ps1 filesystem Checks the validity of the Windows system files
43 check-xml-file.ps1 filesystem Checks the given XML file for validity
44 clean-repo.ps1 git Cleans the current/given Git repository from untracked files (including submodules)
45 clean-repos.ps1 git Cleans all Git repositories under the current/given directory from untracked files (including submodules)
46 clear-recycle-bin.ps1 desktop Removes the content of the recycle bin folder (can not be undo!)
47 clone-repos.ps1 git Clones well-known Git repositories
48 close-calculator.ps1 desktop Closes the calculator program gracefully
49 close-chrome.ps1 desktop Closes the Google Chrome Web browser
57 close-onedrive.ps1 desktop Closes Microsoft OneDrive gracefully
58 close-serenade.ps1 desktop Closes the Serenade.ai application gracefully
59 close-snipping-tool.ps1 desktop Closes the Snipping Tool application gracefully
60 close-spotify.ps1 desktop Closes Spotify
61 close-system-settings.ps1 desktop Closes the System Settings gracefully
62 close-thunderbird.ps1 desktop Closes Mozilla Thunderbird gracefully
63 close-vlc.ps1 desktop Closes the VLC media player application
64 close-windows-terminal.ps1 desktop Closes the Windows Terminal application
65 copy-photos-sorted.ps1 desktop Copy image files sorted by year and month
66 configure-git.ps1 git Sets up the Git user configuration
67 convert-csv2txt.ps1 filesystem Converts the given CSV file into a text list
68 convert-mysql2csv.ps1 filesystem Converts the MySQL database table to a CSV file
69 convert-ps2bat.ps1 filesystem Converts PowerShell script(s) to .bat files
70 convert-ps2md.ps1 filesystem Converts the comment-based help of a PowerShell script to Markdown
71 convert-sql2csv.ps1 filesystem Converts the SQL database table to a CSV file
72 convert-txt2wav.ps1 filesystem Converts text into a audio .WAV file
73 decrypt-file.ps1 filesystem Decrypts a file
74 disable-ipv6.ps1 misc Disables IPv6 (requires admin rights)
75 disconnect-vpn.ps1 misc Disconnects the VPN
76 download-dir.ps1 filesystem Downloads a folder (including subfolders) from an URL
77 download-file.ps1 filesystem Downloads a file from an URL
78 edit.ps1 desktop Edits the given file with the built-in text editor
79 enable-crash-dumps.ps1 filesystem Enables the writing of crash dumps
80 enable-god-mode.ps1 desktop Enables the god mode (adds a new icon to the desktop)
81 encrypt-file.ps1 filesystem Encrypts the given file
82 export-to-manuals.ps1 filesystem Converts all scripts as manuals
83 export-to-serenade.ps1 Converts all scripts to Serenade for voice control
84 fetch-repo.ps1 Fetches updates for the current/given Git repository (including submodules)
85 fetch-repos.ps1 Fetches updates for all Git repositories under the current/given directory (including submodules)