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