This PowerShell script uploads a local file to Dropbox.
Path Specifies the path to the local file
PS> .\upload-to-dropbox.ps1 my.txtAuthor: Markus Fleschutz | License: CC0
This PowerShell script uploads a local file to a FTP server.
File Specifies the path to the local file
URL Specifies the FTP server URL
Username Specifies the user name
Password Specifies the password
PS> .\upload-file.ps1Author: Markus Fleschutz | License: CC0
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