Skip to content

Instantly share code, notes, and snippets.

View tony199555's full-sized avatar

Tony Yu tony199555

  • San Francisco
View GitHub Profile
@tony199555
tony199555 / Search_Uninstall_ESET.ps1
Last active November 5, 2022 07:20
Search Registry for ESET Uninstall String and Uninstall Using Search Result with Output Log
$site = "CHANGE_THIS" # Example: $site = "AHA"
$eset_pw = "YOUR_PASSWORD"
$pw_list = @{example1 = "example1" ; example2 = "example2" } #For multiple site use
if ([string]::IsNullOrEmpty($eset_pw)) {
$eset_pw = $pw_list.$site
}
function Search-Registry {
@tony199555
tony199555 / Makefile
Created November 11, 2019 09:05 — forked from ThinhPhan/Makefile
Setup Electron Kiosk App On Ubuntu 18.04
.PHONY: install uninstall test set-default
test:
sudo apt install plymouth-x11
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
uninstall:
rm -rv /usr/share/plymouth/themes/first || true
install: uninstall