- RunDll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,0
- RunDll32.exe msrating.dll,RatingSetupUI
| [Options] | |
| ThemeIndex=1 | |
| Language=en-US | |
| Font1=Segoe UI | |
| Font2=Consolas | |
| Size1=11 | |
| Size2=10 | |
| Scroll=1 | |
| Interface=2 | |
| Reset=0 |
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace Resolution | |
| { | |
| [StructLayout(LayoutKind.Sequential)] | |
| public struct DEVMODE1 | |
| { | |
| [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] | |
| public string dmDeviceName; |
| ################################################################################################################# | |
| # | |
| # 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
| # Example | |
| # Get-SPOSiteODOpen -UserEmail test@example.com -SiteURL 'https://example.sharepoint.com/sites/SPOSITE' | |
| function Get-SPOSiteODOpen { | |
| [CmdletBinding()] | |
| param( | |
| [Parameter(Mandatory)] | |
| [mailaddress]$UserEmail, | |
| [Parameter(Mandatory)] | |
| [string]$SiteURL |
| 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) |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.BingWeather_8wekyb3d8bbwe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.GetHelp_8wekyb3d8bbwe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.Getstarted_8wekyb3d8bbwe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.Microsoft3DViewer_8wekyb3d8bbwe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.