mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
18 KiB
18 KiB
1 | SCRIPT | DESCRIPTION | |
---|---|---|---|
2 | add-firewall-rules.ps1 | Adds firewall rules for executables (needs admin rights) | |
3 | add-memo.ps1 | Adds a memo text | |
4 | build-repo.ps1 | Builds a Git repository | |
5 | build-repos.ps1 | Builds all Git repositories in a folder | |
6 | cd-autostart.ps1 | Set the working directory to the user's autostart folder | |
7 | cd-desktop.ps1 | Set the working directory to the user's desktop folder | |
8 | cd-docs.ps1 | Set the working directory to the user's documents folder | |
9 | cd-downloads.ps1 | Set the working directory to the user's downloads folder | |
10 | cd-dropbox.ps1 | Set the working directory to the user's Dropbox folder | |
11 | cd-home.ps1 | Set the working directory to the user's home folder | |
12 | cd-music.ps1 | Set the working directory to the user's music folder | |
13 | cd-onedrive.ps1 | Set the working directory to the user's OneDrive folder | |
14 | cd-pics.ps1 | Set the working directory to the user's pictures folder | |
15 | cd-recycle-bin.ps1 | Set the working directory to the user's recycle bin folder | |
16 | cd-repos.ps1 | Set the working directory to the user's Git repositories folder | |
17 | cd-root.ps1 | Set the working directory to the root directory (C: on Windows) | |
18 | cd-scripts.ps1 | Set the working directory to the PowerShell Scripts folder | |
19 | cd-ssh.ps1 | Set the working directory to the user's SSH folder | |
20 | cd-up.ps1 | Set the working directory to one directory level up | |
21 | cd-up2.ps1 | Set the working directory to two directory levels up | |
22 | cd-up3.ps1 | Set the working directory to three directory levels up | |
23 | cd-up4.ps1 | Set the working directory to four directory levels up | |
24 | cd-videos.ps1 | Set the working directory to the user's videos folder | |
25 | check-cpu-temp.ps1 | Checks the CPU temperature | |
26 | check-dns-resolution.ps1 | Checks the DNS resolution with frequently used domain names | |
27 | check-drive-space.ps1 | Checks a drive for free space left | |
28 | check-file-system.ps1 | Checks the file system of a drive (needs admin rights) | |
29 | check-health.ps1 | Checks the system health | |
30 | check-ipv4-address.ps1 | Checks the given IPv4 address for validity | |
31 | check-ipv6-address.ps1 | Checks the given IPv6 address for validity | |
32 | check-mac-address.ps1 | Checks the given MAC address for validity | |
33 | check-ping.ps1 | Checks the ping latency to the internet | |
34 | check-subnet-mask.ps1 | Checks the given subnet mask for validity | |
35 | check-swap-space.ps1 | Checks the swap space for free space left | |
36 | check-symlinks.ps1 | Checks every symlink in a directory tree | |
37 | check-weather.ps1 | Checks the current weather for critical values | |
38 | check-windows-system-files.ps1 | Checks the validity of the Windows system files | |
39 | check-xml-file.ps1 | Checks the given XML file for validity | |
40 | clean-repo.ps1 | Cleans the current/given Git repository from untracked files (including submodules) | |
41 | clean-repos.ps1 | Cleans all Git repositories under the current/given directory from untracked files (including submodules) | |
42 | clear-recycle-bin.ps1 | Removes the content of the recycle bin folder (can not be undo!) | |
43 | clone-repos.ps1 | Clones well-known Git repositories | |
44 | close-calculator.ps1 | Closes the calculator program gracefully | |
45 | close-cortana.ps1 | Closes Cortana gracefully | |
46 | close-file-explorer.ps1 | Closes Microsoft File Explorer gracefully | |
47 | close-google-chrome.ps1 | Closes the Google Chrome Web browser | |
48 | close-program.ps1 | Closes the given program gracefully | |
49 | close-microsoft-edge.ps1 | Closes the Microsoft Edge Web browser | |
50 | close-microsoft-store.ps1 | Closes the Microsoft Store app | |
51 | close-mozilla-firefox.ps1 | Closes the Mozilla Firefox Web browser | |
52 | close-netflix.ps1 | Closes the Netflix application gracefully | |
53 | close-onedrive.ps1 | Closes Microsoft OneDrive gracefully | |
54 | close-serenade.ps1 | Closes the Serenade.ai application gracefully | |
55 | close-snipping-tool.ps1 | Closes the Snipping Tool application gracefully | |
56 | close-spotify.ps1 | Closes Spotify | |
57 | close-system-settings.ps1 | Closes the System Settings gracefully | |
58 | close-thunderbird.ps1 | Closes Mozilla Thunderbird gracefully | |
59 | close-vlc.ps1 | Closes the VLC media player application | |
60 | close-windows-terminal.ps1 | Closes the Windows Terminal application | |
61 | copy-photos-sorted.ps1 | Copy image files sorted by year and month | |
62 | configure-git.ps1 | Sets up the Git user configuration | |
63 | convert-csv2txt.ps1 | Converts the given CSV file into a text list | |
64 | convert-mysql2csv.ps1 | Converts the MySQL database table to a CSV file | |
65 | convert-ps2bat.ps1 | Converts PowerShell script(s) to .bat files | |
66 | convert-ps2md.ps1 | Converts the comment-based help of a PowerShell script to Markdown | |
67 | convert-sql2csv.ps1 | Converts the SQL database table to a CSV file | |
68 | convert-txt2wav.ps1 | Converts text into a audio .WAV file | |
69 | daily-tasks.sh | Execute PowerShell scripts automatically as daily tasks (Linux only) | |
70 | decrypt-file.ps1 | Decrypts the given file | |
71 | display-time.ps1 | Displays the current time for 10 seconds by default | |
72 | download-dir.ps1 | Downloads a directory tree from the given URL | |
73 | download-file.ps1 | Downloads a file from the given URL | |
74 | edit.ps1 | Edits the given file with the built-in text editor | |
75 | enable-crash-dumps.ps1 | Enables the writing of crash dumps | |
76 | enable-god-mode.ps1 | Enables the god mode (adds a new icon to the desktop) | |
77 | encrypt-file.ps1 | Encrypts the given file | |
78 | export-to-manuals.ps1 | Converts all scripts as manuals | |
79 | export-to-serenade.ps1 | Converts all scripts to Serenade for voice control | |
80 | fetch-repo.ps1 | Fetches updates for the current/given Git repository (including submodules) | |
81 | fetch-repos.ps1 | Fetches updates for all Git repositories under the current/given directory (including submodules) | |
82 | get-md5.ps1 | Prints the MD5 checksum of the given file | |
83 | get-sha1.ps1 | Prints the SHA1 checksum of the given file | |
84 | get-sha256.ps1 | Prints the SHA256 checksum of the given file | |
85 | hibernate.ps1 | Enables hibernate mode for the local computer (needs admin rights) | |
86 | inspect-exe.ps1 | Prints basic information of the given executable file | |
87 | install-github-cli.ps1 | Installs GitHub CLI | |
88 | install-google-chrome.ps1 | Installs the Google Chrome browser | |
89 | install-knot-resolver.ps1 | Installs the Knot Resolver (needs admin rights) | |
90 | install-signal-cli.ps1 | Installs signal-cli from github.com/AsamK/signal-cli | |
91 | install-ssh-client.ps1 | Installs the SSH client (needs admin rights) | |
92 | install-ssh-server.ps1 | Installs the SSH server (needs admin rights) | |
93 | install-updates.ps1 | Installs updates (needs admin rights) | |
94 | install-vscode.ps1 | Installs Visual Studio Code | |
95 | install-wsl.ps1 | Installs Windows Subsystem for Linux (WSL), needs admin rights | |
96 | introduce-powershell.ps1 | Introduces PowerShell to new users | |
97 | list-aliases.ps1 | Lists all PowerShell aliases | |
98 | list-anagrams.ps1 | Lists all anagrams of the given word | |
99 | list-automatic-variables.ps1 | Lists the automatic variables of PowerShell | |
100 | list-branches.ps1 | Lists all branches in the current/given Git repository | |
101 | list-cheat-sheet.ps1 | Lists the PowerShell cheat sheet | |
102 | list-city-weather.ps1 | Lists the current weather of cities worldwide (east to west) | |
103 | list-commits.ps1 | Lists all commits in the current/given Git repository | |
104 | list-console-colors.ps1 | Lists all console colors | |
105 | list-countries.ps1 | Lists details of all countries | |
106 | list-cli-tools.ps1 | Lists available command-line interface (CLI) tools | |
107 | list-clipboard.ps1 | Lists the contents of the clipboard | |
108 | list-credits.ps1 | Shows the credits | |
109 | list-crypto-rates.ps1 | Lists the current crypto exchange rates | |
110 | list-dir-tree.ps1 | Lists the directory tree content | |
111 | list-drives.ps1 | Lists all drives | |
112 | list-environment-variables.ps1 | Lists all environment variables | |
113 | list-emojis.ps1 | Lists the emojis of Unicode 13.0 | |
114 | list-empty-dirs.ps1 | Lists empty subfolders within the given directory tree | |
115 | list-empty-files.ps1 | Lists empty files within the given directory tree | |
116 | list-files.ps1 | Lists all files in the given folder and also in every subfolder | |
117 | list-folder.ps1 | Lists the folder content | |
118 | list-fritzbox-calls.ps1 | Lists the FRITZ!Box calls | |
119 | list-fritzbox-devices.ps1 | Lists FRITZ!Box's known devices | |
120 | list-hidden-files.ps1 | Lists hidden files within the given directory tree | |
121 | list-installed-apps.ps1 | Lists the installed Windows Store apps | |
122 | list-installed-software.ps1 | Lists the installed software (except Windows Store apps) | |
123 | list-latest-tag.ps1 | Lists the latest tag on the current branch in a Git repository | |
124 | list-latest-tags.ps1 | Lists the latests tags in all Git repositories under the current/given directory | |
125 | list-memos.ps1 | Lists the memos at $HOME/Memos.csv | |
126 | list-unused-files.ps1 | Lists unused files in a directory tree | |
127 | list-cmdlets.ps1 | Lists the PowerShell cmdlets | |
128 | list-earthquakes.ps1 | Lists earthquakes with magnitude >= 6.0 for the last 30 days | |
129 | list-exchange-rates.ps1 | Lists the exchange rates for the given currency | |
130 | list-modules.ps1 | Lists the PowerShell modules | |
131 | list-mysql-tables.ps1 | Lists the MySQL server tables | |
132 | list-network-shares.ps1 | Lists the network shares of the local computer | |
133 | list-news.ps1 | Lists the latest news | |
134 | list-os-releases.ps1 | Lists operating system releases and download URL | |
135 | list-os-updates.ps1 | Lists operating system updates | |
136 | list-passwords.ps1 | Prints a list of random passwords | |
137 | list-pins.ps1 | Prints a list of random PIN's | |
138 | list-printers.ps1 | Lists all printer known to the computer | |
139 | list-print-jobs.ps1 | Lists all jobs of all printers | |
140 | list-processes.ps1 | Lists the local computer processes | |
141 | list-profiles.ps1 | Lists your PowerShell profiles | |
142 | list-recycle-bin.ps1 | Lists the content of the recycle bin folder | |
143 | list-scripts.ps1 | Lists all PowerShell scripts in this repository | |
144 | list-services.ps1 | Lists the services on the local computer | |
145 | list-sql-tables.ps1 | Lists the SQL server tables | |
146 | list-submodules.ps1 | Lists the submodules of the current/given Git repository | |
147 | list-system-info.ps1 | Lists system information on the local computer | |
148 | list-tags.ps1 | Lists all tags in the current/given Git repository | |
149 | list-tasks.ps1 | Lists all Windows scheduler tasks | |
150 | list-timezone.ps1 | Lists the current time zone details | |
151 | list-timezones.ps1 | Lists all time zones available | |
152 | list-tiobe-index.ps1 | Lists the TIOBE index of top programming languages | |
153 | list-user-groups.ps1 | Lists the user groups on the local computer | |
154 | list-voices.ps1 | Lists the installed text-to-speech (TTS) voices | |
155 | list-weather.ps1 | Lists the hourly weather | |
156 | list-workdir.ps1 | Lists the current working directory | |
157 | locate-city.ps1 | Prints the geographic location of the given city | |
158 | locate-ipaddress.ps1 | Prints the geographic location of the given IP address | |
159 | locate-zip-code.ps1 | Prints the geographic location of the given zip-code | |
160 | make-install.ps1 | Installs built executables and libs to the installation directory | |
161 | moon.ps1 | Prints the current moon phase | |
162 | mute-audio.ps1 | Mutes the audio device | |
163 | open-amazon.ps1 | Opens Amazon's website | |
164 | open-browser.ps1 | Starts the default Web browser | |
165 | open-calculator.ps1 | Starts the calculator program | |
166 | open-c-drive.ps1 | Opens the C: drive folder | |
167 | open-downloads-folder.ps1 | Opens the user's downloads folder | |
168 | open-dropbox-folder.ps1 | Opens the user's Dropbox folder | |
169 | open-email-client.ps1 | Starts the default email client | |
170 | open-facebook.ps1 | Opens Facebook's website | |
171 | open-file-explorer.ps1 | Opens the File Explorer | |
172 | open-fritz-box.ps1 | Opens FRITZ!Box's web interface | |
173 | open-github.ps1 | Opens GitHub's website | |
174 | open-google-contacts.ps1 | Opens Google Contacts | |
175 | open-google-earth.ps1 | Opens Google Earth | |
176 | open-google-maps.ps1 | Opens Google Maps | |
177 | open-google-mail.ps1 | Opens Google Mail | |
178 | open-google-news.ps1 | Opens Google News | |
179 | open-google-play.ps1 | Opens Google Play | |
180 | open-google-search.ps1 | Opens Google Search | |
181 | open-google-translate.ps1 | Opens Google Translate | |
182 | open-home-folder.ps1 | Opens the user's home folder | |
183 | open-music-folder.ps1 | Opens the user's music folder | |
184 | open-microsoft-edge.ps1 | Launches the Microsoft Edge Web browser | |
185 | open-microsoft-store.ps1 | Starts the Microsoft Store app | |
186 | open-netflix.ps1 | Starts the Netflix app | |
187 | open-notepad.ps1 | Starts the Notepad app | |
188 | open-onedrive-folder.ps1 | Opens the user's OneDrive folder | |
189 | open-recycle-bin.ps1 | Opens the user's recycle bin folder | |
190 | open-repos-folder.ps1 | Opens the user's Git repositories folder | |
191 | open-snipping-tools.ps1 | Opens the Snipping Tool | |
192 | open-speed-test.ps1 | Opens Cloudflare's speed test | |
193 | open-spotify.ps1 | Opens the Spotify app | |
194 | open-system-settings.ps1 | Launches the Windows system settings | |
195 | open-task-manager.ps1 | Launches the Task Manager | |
196 | open-toggl-track.ps1 | Opens Toggl Track | |
197 | open-videos-folder.ps1 | Opens the user's videos folder | |
198 | open-windows-terminal.ps1 | Launches Windows Terminal | |
199 | open-wikipedia.ps1 | Opens Wikipedia's website | |
200 | open-youtube.ps1 | Opens YouTube.com | |
201 | pick-commit.ps1 | Cherry-picks a Git commit into multiple branches | |
202 | play-beep-sound.ps1 | Plays a short beep sound | |
203 | play-files.ps1 | Plays the given audio files | |
204 | play-happy-birthday.ps1 | Plays the Happy Birthday song | |
205 | play-imperial-march.ps1 | Plays the Imperial March (Star Wars) | |
206 | play-jingle-bells.ps1 | Plays Jingle Bells | |
207 | play-mission-impossible.ps1 | Plays the Mission Impossible theme | |
208 | play-m3u.ps1 | Plays the given playlist (M3U file format) | |
209 | play-mp3.ps1 | Plays the given sound file (MP3 file format) | |
210 | play-super-mario.ps1 | Plays the Super Mario Intro | |
211 | play-tetris-melody.ps1 | Plays the Tetris melody | |
212 | poweroff.ps1 | Halts the local computer (needs admin rights) | |
213 | publish-to-ipfs.ps1 | Publishes the given files or directory to IPFS | |
214 | pull-repo.ps1 | Pulls updates for the current/given Git repository (including submodules) | |
215 | pull-repos.ps1 | Pulls updates for all Git repositories under the current/given directory (including submodules) | |
216 | query-smart-data.ps1 | Queries the S.M.A.R.T. data of your HDD/SSD's and saves it to the current/given directory | |
217 | new-branch.ps1 | Creates a new branch in the current/given Git repository | |
218 | new-email.ps1 | Starts the default email client to write a new email | |
219 | new-qrcode.ps1 | Generates a new QR code | |
220 | new-script.ps1 | Creates a new PowerShell script | |
221 | new-shortcut.ps1 | Creates a new shortcut file | |
222 | new-symlink.ps1 | Creates a new symbolic link file | |
223 | new-tag.ps1 | Creates a new tag in a Git repository | |
224 | new-zipfile.ps1 | Creates a new .zip file from a directory | |
225 | reboot.ps1 | Reboots the local computer (needs admin rights) | |
226 | reboot-fritzbox.ps1 | Reboots the FRITZ!box device | |
227 | remind-me.ps1 | Creates a scheduled task that will display a popup message | |
228 | remove-empty-dirs.ps1 | Removes empty subfolders within the given directory tree | |
229 | remove-print-jobs.ps1 | Removes all jobs from all printers | |
230 | remove-tag.ps1 | Removes a tag in a Git repository | |
231 | replace-in-files.ps1 | Search and replace a pattern in the given files by the replacement | |
232 | restart-network-adapters.ps1 | Restarts all local network adapters | |
233 | save-screenshot.ps1 | Saves a single screenshot | |
234 | say-date.ps1 | Say the current date by text-to-speech | |
235 | say-joke.ps1 | Say a random Chuck Norris joke by text-to-speech | |
236 | say-quote.ps1 | Say a random quote by text-to-speech | |
237 | say-time.ps1 | Say the current time by text-to-speech | |
238 | search-filename.ps1 | Searches the directory tree for filenames by given pattern | |
239 | search-files.ps1 | Searches the given pattern in the given files | |
240 | scan-ports.ps1 | Scans the network for open/closed ports | |
241 | send-email.ps1 | Sends an email message | |
242 | send-tcp.ps1 | Sends a TCP message to the given IP address and port | |
243 | send-udp.ps1 | Sends a UDP datagram message to the given IP address and port | |
244 | set-profile.ps1 | Updates your PowerShell user profile | |
245 | set-timer.ps1 | Sets a timer for a countdown | |
246 | set-wallpaper.ps1 | Sets the given image as wallpaper | |
247 | simulate-matrix.ps1 | Simulates the Matrix (fun) | |
248 | simulate-presence.ps1 | Simulates the human presence against burglars | |
249 | speak-checklist.ps1 | Speaks the given checklist by text-to-speech | |
250 | speak-countdown.ps1 | Starts a countdown by text-to-speech | |
251 | speak-english.ps1 | Speaks the given text with an English text-to-speech voice | |
252 | speak-epub.ps1 | Speaks the content of the given Epub file by text-to-speech | |
253 | speak-file.ps1 | Speaks the content of the given text file by text-to-speech | |
254 | speak-french.ps1 | Speaks the given text with a French text-to-speech voice | |
255 | speak-german.ps1 | Speaks the given text with a German text-to-speech voice | |
256 | speak-italian.ps1 | Speaks the given text with an Italian text-to-speech voice | |
257 | speak-spanish.ps1 | Speaks the given text with a Spanish text-to-speech voice | |
258 | speak-test.ps1 | Performs a speak test by text-to-speech | |
259 | speak-text.ps1 | Speaks the given text by text-to-speech | |
260 | start-calibre-server.ps1 | Starts a local Calibre server | |
261 | start-ipfs-server.ps1 | Starts a local IPFS server | |
262 | switch-branch.ps1 | Switches the branch in the current/given Git repository (including submodules) | |
263 | switch-shelly1.ps1 | Switches a Shelly1 device in the local network | |
264 | sync-repo.ps1 | Synchronizes a Git repository by push & pull (including submodules) | |
265 | translate-file.ps1 | Translates the given text file into another language | |
266 | translate-files.ps1 | Translates the given text files into any supported language | |
267 | translate-text.ps1 | Translates the given text into other languages | |
268 | turn-volume-up.ps1 | Turns the audio volume up (+10% by default) | |
269 | turn-volume-down.ps1 | Turns the audio volume down (-10% by default) | |
270 | unmute-audio.ps1 | Unmutes audio | |
271 | upgrade-ubuntu.ps1 | Upgrades Ubuntu Linux to the latest (LTS) release | |
272 | upload-file.ps1 | Uploads the local file to the given FTP server | |
273 | wakeup.ps1 | Sends a magic packet to the given computer, waking him up | |
274 | weather.ps1 | Prints the current weather forecast | |
275 | weather-report.ps1 | Prints the local weather report | |
276 | what-is.ps1 | Prints a description of the given abbreviation | |
277 | write-animated.ps1 | Writes animated text | |
278 | write-big.ps1 | Writes the given text in big letters | |
279 | write-blue.ps1 | Writes the given text in a blue foreground color | |
280 | write-braille.ps1 | Writes the given text in Braille | |
281 | write-calendar.ps1 | Writes the calendar (month or year) | |
282 | write-green.ps1 | Writes the given text in a green foreground color | |
283 | write-joke.ps1] | Writes a random Juck Norris joke | |
284 | write-lowercase.ps1 | Writes the given text in lowercase letters | |
285 | write-marquee.ps1 | Writes the given text as marquee | |
286 | write-morse-code.ps1 | Writes the given text in Morse code | |
287 | write-motd.ps1 | Writes the message of the day (MOTD) | |
288 | write-quote.ps1 | Writes a random quote | |
289 | write-red.ps1 | Writes the given text in a red foreground color | |
290 | write-rot13.ps1 | Encodes or decodes the given text with ROT13 | |
291 | write-typewriter.ps1 | Writes the given text with the typewriter effect | |
292 | write-uppercase.ps1 | Writes the given text in uppercase letters | |
293 | write-vertical.ps1 | Writes the given text in vertical direction |