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
| #https://serverfault.com/questions/1018220/how-do-i-install-an-app-from-windows-store-using-powershell | |
| #Usage: | |
| # Download-AppxPackage "https://apps.microsoft.com/detail/9NKSQGP7F2NH" "$ENV:USERPROFILE\Desktop" | |
| # download WhatsApp | |
| function Download-AppxPackage { | |
| [CmdletBinding()] | |
| param ( |
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
| # author: eterna1_0blivion & soredake | |
| # Get a link to the Registration Entries file | |
| $link = "https://gist.github.com/eterna1-0blivion/70c1e5b14c7cfa8c6b6d574eb38fd27e/raw/context_pwsh_fix.reg" | |
| # Install them into Registry using PowerShell | |
| Invoke-WebRequest -Uri "$link" -OutFile "$env:TEMP/context_pwsh_fix.reg" | |
| reg import "$env:TEMP/context_pwsh_fix.reg" | |
| # Notify the user before exiting the program |
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
| // ==UserScript== | |
| // @name Absolute Enable Right Click & Copy | |
| // @namespace Absolute Right Click | |
| // @description Force Enable Right Click & Copy & Highlight | |
| // @shortcutKeys [Ctrl + `] Activate Absolute Right Click Mode To Force Remove Any Type Of Protection | |
| // @author Absolute | |
| // @version 1.8.9 | |
| // @icon https://i.imgur.com/AC7SyUr.png | |
| // @compatible Chrome Google Chrome + Tampermonkey | |
| // @match https://ecall.vn/* |
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
| # Create a file named "winget.txt" in the same directory as this script. | |
| # Write exact names for packages on each line. | |
| # Ex: filename: winget.txt | |
| # Microsoft.Edge | |
| # Google.Chrome | |
| Write-Host "Checking winget..." | |
| Try{ | |
| # Check if winget is already installed |