danijeljw
PowerShell module to get the uninstall string of any installed application. Use of the wildcard "*" character is not necessary when searching for items, and will be applied automatically to the search index. Example 1 - Find an application by common name: Get-UninstallString -Application Firefox Example 2 - Find application by common name and ... More info Tags |
Return the redirect (or final redirect) of any provided URL. Helpful when provided with shortlinks or links that redirect a few times and you cannot use to access the file you want as they go through a few redirects. Example: Get-RedirectedURL -URL 'https://download.mozilla.org/?product=firefox-msi-latest-ssl&os=win64&lang=en-US' returns: "ht... More info Tags |
PowerShell Module that will return the HTTP Status Code of any provided URL without the need for a Try/Catch statement. Example 1 - Return HTTP Status Code of given url: Get-URLStatusCode -Url https://www.google.com/ Example 2 - Switch statement using HTTP Status Code: Switch (Get-URLStatusCode -Url https://www.google.com/) { 200 { ... More info Tags |