anduin / Multitenant MoongladePure
                            
                            1 喜欢
                        
                        
                            
                            0 派生
                        
                        
                            
                            1 文件
                        
                    最后活跃于 2 years ago
Implement multitenant moonglade pure
| 1 | # Runs on each web machine. | 
| 2 | #!/bin/bash | 
| 3 | sudo apt install jq dotnet7 -y | 
| 4 | |
| 5 | echo "Cleaning up..." | 
| 6 | rm -rf /home/anduin/build | 
| 7 | mkdir -p /home/anduin/build | 
| 8 | |
| 9 | echo "Downloading source code..." | 
| 10 | wget https://gitlab.aiursoft.cn/aiursoft/moongladepure/-/archive/master/moongladepure-master.tar.gz -O /home/anduin/build/moongladepure-master.tar.gz | 
aimerneige / Remove Pre-Install
                            
                            0 喜欢
                        
                        
                            
                            0 派生
                        
                        
                            
                            3 文件
                        
                    最后活跃于 2 years ago
remove pre-install apps for Redmi Note 9T
| 1 | # Remove SoftBank | 
| 2 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep softbank); do adb shell pm uninstall --user 0 $package; done | 
| 3 | # Remove Yahoo | 
| 4 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep yahoo); do adb shell pm uninstall --user 0 $package; done | 
| 5 | # Remove JP | 
| 6 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep jp); do adb shell pm uninstall --user 0 $package; done | 
| 7 | # You need to manually disable the device manager to uninstall this app | 
| 8 | adb shell pm uninstall --user 0 jp.softbank.mb.tdrl | 
| 9 | # Some other app | 
| 10 | adb shell pm uninstall --user 0 com.mcafee.vsm_android_sbm | 
aimerneige / Remove All SoftBank
                            
                            0 喜欢
                        
                        
                            
                            0 派生
                        
                        
                            
                            1 文件
                        
                    最后活跃于 2 years ago
Remove all of the softbank package on your android phone just in one command!
| 1 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep softbank); do adb shell pm uninstall --user 0 $package; done |