- Weekly wipedown
- Collect loose items and get into physical inbox
- Inbox Zero
- Physical inbox
- Personal Gmail
- Work email - Outlook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Add-WslUser { | |
| <# | |
| .SYNOPSIS | |
| Adds a user to a WSL distro | |
| #> | |
| [CmdletBinding()] | |
| param( | |
| # The distro to add the user to | |
| [Parameter(Mandatory)] | |
| $Distribution, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| WDigest credential caching [Memory] | |
| Author: @r00t-3xp10it | |
| Credits: @wh0nsq [BypassCredGuard.exe] | |
| Credits: @BenjaminDelpy [mi`mi`katz.exe] | |
| Tested Under: Windows 10 (19044) x64 bits | |
| Required Dependencies: Administrator privileges | |
| Optional Dependencies: WDigest, BypassCredGuard.exe |
If you like the design and the speed of the new context menu, but you find it useless, I have good news for you: you can customize it and make the new Win11 context more personalized.
To remove unused items, you must remove items from the registry. You'll find some items in these folders, but you can also search for specific items you see in the context menu.
HKEY_CLASSES_ROOT\Folder\shell\ (Do NOT remove opennewwindow - it is required for file explorer to work on your windows tray.)
HKEY_CLASSES_ROOT\exefile\shellex\ContextMenuHandlers\
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Invoke-ScriptBlockWithRetries { | |
| [CmdletBinding(DefaultParameterSetName = 'RetryNonTerminatingErrors')] | |
| param ( | |
| [Parameter(Mandatory = $true, HelpMessage = "The script block to execute.")] | |
| [ValidateNotNull()] | |
| [scriptblock] $ScriptBlock, | |
| [Parameter(Mandatory = $false, HelpMessage = "The maximum number of times to attempt the script block when it returns an error.")] | |
| [ValidateRange(1, [int]::MaxValue)] | |
| [int] $MaxNumberOfAttempts = 5, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Manage Windows Password Vault Items | |
| Author: @r00t-3xp10it | |
| Tested Under: Windows 10 (19044) x64 bits | |
| Required Dependencies: VaultSvc, VaultCmd | |
| Optional Dependencies: none | |
| PS cmdlet Dev version: v1.3.8 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Search for Strings\Regex inside files | |
| Author: @r00t-3xp10it (ssa redteam) | |
| Tested Under: Windows 10 (19044) x64 bits | |
| Required Dependencies: none | |
| Optional Dependencies: VaultSvc, VaultCmd | |
| PS cmdlet Dev version: v1.1.21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| if ($host.Name -eq 'ConsoleHost') | |
| { | |
| Import-Module PSReadLine | |
| } | |
| Import-Module -Name Terminal-Icons |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library("future") | |
| library("httr") | |
| library("magrittr") | |
| library("plumber") | |
| library("shiny") | |
| library("uuid") | |
| library("websocket") | |
| library("R6") | |
| shiny_port <- 5174 |