This PowerShell script uninstalls Outlook for Windows.
PS> ./uninstall-outlook.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script uninstalls the new Outlook for Windows application.
PS> ./uninstall-new-outlook.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script uninstalls unnecessary software and applications.
PS> ./uninstall-bloatware.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script uninstalls all applications from the local computer. Useful for de-bloating Windows to clean up a PC quickly for an industrial use case without any security risks.
PS> ./uninstall-all-appsAuthor: Markus Fleschutz | License: CC0
This PowerShell script turns the audio volume fully up to 100%.
PS> ./turn-volume-fully-upAuthor: Markus Fleschutz | License: CC0
This PowerShell script turns the audio volume down (-10% by default).
percent Specifies the percent number
PS> ./turn-volume-downAuthor: Markus Fleschutz | License: CC0
This PowerShell script toggles the Scroll Lock key state.
PS> ./toggle-scroll-lockAuthor: Markus Fleschutz | License: CC0
This PowerShell script toggles the Num Lock key state.
PS> ./toggle-num-lockAuthor: Markus Fleschutz | License: CC0
This PowerShell script toggles the Caps Lock key state.
PS> ./toggle-caps-lockAuthor: Markus Fleschutz | License: CC0
This PowerShell script synchronizes a local Git repository by pull and push (including submodules).
path Specifies the path to the Git repository (current working directory by default)
PS> ./sync-repo.ps1 C:\Repos\curl⏳ (1/4) Searching for Git executable... git version 2.42.0.windows.1⏳ (2/4) Checking local repository... C:\Repos\curl⏳ (3/4) Pulling remote updates... Already up to date.⏳ (4/4) Pushing local updates... Everything up-to-date✅ Synced the 📂curl repo in 5s.Author: Markus Fleschutz | License: CC0