This file contains 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
Useful list: https://github.com/AlexQuiniou/remove-bloatware-galaxy-s10e | |
Hardware Samsung Galaxy S21 5G | |
Software: Android 12, One UI 4.0, Security Patch November 1 2021 | |
Check if device is available | |
$ adb devices | |
List of devices attached | |
RAAA1008001 device |
This file contains 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
It worked for my using Pixel 2 Walleye with Android March 2020 installation, i'm going to detail more this procedure, because it's hard to do it from scratch. | |
I also used information/files from here: [url]https://forum.xda-developers.com/pixel-2/how-to/guide-enable-volte-unsupported-carriers-t3892659[/url] | |
Steps with links | |
0. Remove any fingerprint/pin/lock pattern from your phone and keep it that way until the end. ALSO, UNLOCKING THE BOOTLOADER WILL WIPE ALL YOUR DEVICE (apps, photos, files, accounts) BE CAREFUL AND DO A BACKUP | |
1. Find the QPST installer (only available for Windows) (seems to be an internal Qualcomm software), I used version 2.7.474 from here [url]https://qpsttool.com/qpst-tool-v2-7-474[/url] . Save it and install it in your Windows machine. | |
2. Install adb tools Windows, macOS, Linux: [url]https://www.xda-developers.com/install-adb-windows-macos-linux/[/url] |
This file contains 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
# Script to regenerate list and remove old computers not logged to Domain Controller in 2 Months | |
$time = (Get-Date).AddMonths(-2) | |
Get-ADComputer -Filter {LastLogonTimeStamp -lt $time} -Properties * | select name, distinguishedname,LastLogonDate| export-csv computers_2m.txt | |
Get-ADComputer -Filter {LastLogonTimeStamp -lt $time} -Properties distinguishedname| Remove-ADObject -Recursive |