This PowerShell script sets the current working directory to the fonts folder.
PS> ./cd-fonts.ps1๐C:\Windows\Fonts with 12 font files entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the /etc directory.
PS> ./cd-etc๐C:\Windows\System32\drivers\etc (has 5 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's Dropbox folder.
PS> ./cd-dropbox๐C:\Users\Markus\Dropbox (has 2 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's downloads folder.
PS> ./cd-downloads.ps1๐C:\Users\Markus\Downloads with 0 files and 0 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script sets the current working directory to the documents folder.
PS> ./cd-docs.ps1๐C:\Users\Markus\Documents with 3 files and 0 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's desktop folder.
PS> ./cd-desktop.ps1๐/home/Markus/Desktop (has 3 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the crash dumps directory (Windows only). Whenever a software crashes and crash dumps are enabled(!) a crash dump file is written. This file helps to identify the reason for the crash.
PS> ./cd-crashdumps๐C:\Users\Markus\AppData\Local\CrashDumps entered (has 3 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's autostart folder.
PS> ./cd-autostart.ps1๐C:\Users\Markus\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartupAuthor: Markus Fleschutz | License: CC0
This PowerShell script builds a Git repository by supporting the following build systems: autogen, cargo, cmake, configure, Gradle, Imakefile, Makefile, and Meson.
path Specifies the file path to the Git repository (default: current working directory)
PS> ./build-repo.ps1 C:\Repos\ninjaโณ Building ๐ninja by using CMake......โ
Build of ๐ninja succeeded in 47s, results in: ๐C:\Repos\ninja\_resultsAuthor: Markus Fleschutz | License: CC0
This PowerShell script adds firewall rules for the given executable. Administrator rights are required.
PathToExecutables Specifies the path to the executables.
Direction Specifies the direction for the firewall rule. Can be 'Inbound' or 'Outbound'. Default is 'Inbound'.
Profile Specifies the firewall profile. Can be 'Domain', 'Private', or 'Public'. Multiple values can be specified as an array.
PS> ./add-firewall-rules.ps1 -PathToExecutables C:\MyApp\bin -Direction Outbound -Profile PrivateAuthor: Markus Fleschutz | License: CC0