- RunDll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,0
- RunDll32.exe msrating.dll,RatingSetupUI
| ################################################################################################################# | |
| # | |
| # Password-Expiration-Notifications v20220823 | |
| # Highly Modified fork. https://gist.github.com/meoso/3488ef8e9c77d2beccfd921f991faa64 | |
| # | |
| # Originally from v1.4 @ https://gallery.technet.microsoft.com/Password-Expiry-Email-177c3e27 | |
| # https://windowspoweressentials.com/2017/02/21/powershell-password-reminder-script-updated/ | |
| # https://github.com/titlerequired/public | |
| # Robert Pearman (WSSMB MVP) | |
| # TitleRequired.com |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
| function Read-HtmlPage { | |
| param( | |
| [Parameter(Mandatory, ValueFromPipeline)] | |
| [String] $Uri | |
| ) | |
| # Invoke-WebRequest and Invoke-RestMethod can't work properly with UTF-8 Response so we need to do things this way. | |
| [System.Net.HttpWebRequest]$WebRequest = [System.Net.WebRequest]::Create($Uri) | |
| [System.Net.HttpWebResponse]$WebResponse = $WebRequest.GetResponse() | |
| #$Reader = New-Object -TypeName IO.StreamReader -ArgumentList ($WebResponse.GetResponseStream()) | |
| $Reader = [System.IO.StreamReader]::new($WebResponse.GetResponseStream()) |
| cd() { | |
| # Check if no arguments to make just typing cd<Enter> work | |
| # Also check if the first argument starts with a - and let cd handle it | |
| if [ $# -eq 0 ] || [[ $1 == -* ]] | |
| then | |
| builtin cd $@ | |
| return | |
| fi | |
| # If path exists, just cd into it | |
| # (also, using $* and not $@ makes it so you don't have to escape spaces any more) |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.