├── .vs └── UnlockSoftwares │ ├── DesignTimeBuild │ └── .dtbcache │ ├── config │ └── applicationhost.config │ ├── v15 │ ├── .suo │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── README.md ├── UnlockSoftwares.sln └── UnlockSoftwares ├── 207787.ico ├── App.config ├── ApplicationEvents.vb ├── Class1.vb ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb ├── Settings.settings └── app.manifest ├── Resources ├── 2020.01.01.avastlic ├── 2020.02.11.avastlic ├── 2020.07.28.avastlic ├── 2020.12.10.key ├── 2023.11.21.avastlic ├── 2026.07.05.avastlic ├── 2026.11.05.avastlic ├── 2027.02.28.avastlic ├── 2029.04.14.avastlic ├── 2033.06.29.avastlic ├── 2038.01.10.avastlic ├── 207787.ico ├── 2099.09.22.key ├── 32-bits Masquer OneDrive dans l'Explorateur.reg ├── 64-bits Masquer OneDrive dans l'Explorateur.reg ├── ActiveOffice.bat ├── Add_Copy-Move_To_Folder_to_context_menu.reg ├── Adresse Mac.vbs ├── Avast Premier 24.01.2021.avastlic ├── Disable_Lock_Screen.reg ├── Enable_Lock_Screen.reg ├── Export WIFI CONFIG.bat ├── GiveAwayOfTheDay.vbs ├── InfoBattery.bat ├── KasperskyX32.bat ├── KasperskyX64.bat ├── LISTE DE COMMANDES.txt ├── LicenseDiag.bat ├── Network-Identity.bat ├── Office Key Recovery.bat ├── Process Manager Checker.bat ├── ProductKey.vbs ├── Remove_Add_to_Windows_Media_Player_list_context_menu.reg ├── Remove_Quick_access_from_navigation_pane.reg ├── Remove_Share_with_from_context_menu.reg ├── RestartEnAdmin.bat ├── SVCHOST_CHECKER.bat ├── Sarahah.vbs ├── Screenshot_6.jpg ├── Security_Tools_Downloader.bat ├── Snagit.txt ├── Turn_Off_AutoPlay.reg ├── Turn_Off_Fast_Startup.bat ├── Turn_On_AutoPlay.reg ├── Turn_On_Fast_Startup.bat ├── WIN10AntiTelemetry.bat ├── Wifi Passwords Recovery.bat ├── Win10DisableLockscreen.bat ├── Windows 10 - Active Numlock au démarrage.reg ├── Windows 10 - Désactive Numlock au démarrage.reg ├── WindowsInfoLicense.vbs ├── WindowsRaccourci.rar ├── [Crack]Liste de clés d'activation.txt ├── activate-office-2016.bat ├── activate-office-2019.bat ├── activate-visio2016.bat ├── activate-windows-10.bat ├── activate-windows-8-8-1.bat └── revouninstallerpro4.lic ├── UnlockSoftwares.vbproj ├── UnlockSoftwares.vbproj.user ├── UnlockSoftwares_TemporaryKey.pfx ├── bin └── Debug │ ├── UnlockSoftwares.application │ ├── UnlockSoftwares.exe │ ├── UnlockSoftwares.exe.config │ ├── UnlockSoftwares.exe.manifest │ ├── UnlockSoftwares.pdb │ ├── UnlockSoftwares.xml │ └── app.publish │ └── UnlockSoftwares.exe └── obj └── Debug ├── CoreCompileInputs.cache ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TempPE └── My Project.Resources.Designer.vb.dll ├── UnlockSoftwares.Form1.resources ├── UnlockSoftwares.Resources.resources ├── UnlockSoftwares.TrustInfo.xml ├── UnlockSoftwares.application ├── UnlockSoftwares.exe ├── UnlockSoftwares.exe.manifest ├── UnlockSoftwares.pdb ├── UnlockSoftwares.vbproj.FileListAbsolute.txt ├── UnlockSoftwares.vbproj.GenerateResource.cache ├── UnlockSoftwares.vbprojAssemblyReference.cache └── UnlockSoftwares.xml /.vs/UnlockSoftwares/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v15/.suo -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v16/.suo -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/UnlockSoftwares/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/.vs/UnlockSoftwares/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UnlockSoftwares 2 | [![Generic badge](https://img.shields.io/badge/Releases-2.1-green.svg)](https://github.com/ABOATDev/UnlockSoftwares/releases) [![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ABOATDev/UnlockSoftwares) 3 | 4 | 5 | ## Présentation : Activer vos logiciels 6 | 7 | 8 | Un seul logiciel, pour une multitude de cracks 9 | UnlockSoftwares permet d'activer vos logiciels en toute simplicité ! 10 | De façons sécurisées, car il n’utilise aucun exécutable ou fichier .dll modifié. 11 | Logiciel portable gratuit écrit entièrement en français 12 | Arrêtez les tuto youtube et les méthodes douteuses avec des exécutables ou fichier .dll infecté ... 13 | 14 | ![Liste logiciel](https://i.imgur.com/g4DeKfS.jpg "Liste logiciel") 15 | 16 | 17 | 18 | ## Usage 19 | 20 | 21 | Lancer le logiciel, allez dans la rubrique "Logiciels", choisir un logiciel, et cliquez sur "Activer" afin d'activer le logiciel choissi ! 22 | Chaque logiciel à une description, un lien de téléchargement et le détail de l'activation 23 | 24 | 25 | 26 | 27 | ## Logiciel supporté 28 | - Adlice suite (RogueKiller / UCheck / Diag ) 29 | - CCleaner, 30 | - Camtasia Studio 9 31 | - Recuva 32 | - Revo Uninstaller 33 | - RogueKiller 34 | - Snagit 35 | - Speccy 36 | - Winrar 37 | - Et plein d'autres 38 | 39 | 40 | ## Télécharger 41 | 42 | 43 | [Télécharger UnlockSoftwares](https://github.com/ABOATDev/UnlockSoftwares/releases "UnlockSoftwares") 44 | 45 | 46 | ## Contribution 47 | 48 | 49 | UnlockSoftwares à un énorme besoin de contribution afin de le faire évoluer, il n'en est qu'à ses débuts ! 50 | Les contributions de toutes sortes sont les bienvenues. 51 | 52 | 53 | ## Licence 54 | GNU General Public License v3.0 (gpl-3.0) 55 | Droit d'exécuter, de modifier et de distribuer le travail. 56 | -------------------------------------------------------------------------------- /UnlockSoftwares.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26430.16 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "UnlockSoftwares", "UnlockSoftwares\UnlockSoftwares.vbproj", "{0D6940ED-85D7-4B45-895D-F3F12021D463}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {0D6940ED-85D7-4B45-895D-F3F12021D463}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {0D6940ED-85D7-4B45-895D-F3F12021D463}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {0D6940ED-85D7-4B45-895D-F3F12021D463}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {0D6940ED-85D7-4B45-895D-F3F12021D463}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /UnlockSoftwares/207787.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/207787.ico -------------------------------------------------------------------------------- /UnlockSoftwares/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 2085-01-01 18 | 19 | 20 | 20 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /UnlockSoftwares/ApplicationEvents.vb: -------------------------------------------------------------------------------- 1 | Namespace My 2 | ' Les événements suivants sont disponibles pour MyApplication : 3 | ' Startup : Déclenché au démarrage de l'application avant la création du formulaire de démarrage. 4 | ' Shutdown : Déclenché après la fermeture de tous les formulaires de l'application. Cet événement n'est pas déclenché si l'application se termine de façon anormale. 5 | ' UnhandledException : Déclenché si l'application rencontre une exception non gérée. 6 | ' StartupNextInstance : Déclenché lors du lancement d'une application à instance unique et si cette application est déjà active. 7 | ' NetworkAvailabilityChanged : Déclenché quand la connexion réseau est connectée ou déconnectée. 8 | Partial Friend Class MyApplication 9 | End Class 10 | End Namespace 11 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' Ce code a été généré par un outil. 4 | ' Version du runtime :4.0.30319.42000 5 | ' 6 | ' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | ' le code est régénéré. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'REMARQUE : Ce fichier étant généré automatiquement, ne le modifiez pas directement. Pour apporter des modifications, 18 | ' ou si vous rencontrez des erreurs de build dans ce fichier, accédez au Concepteur de projets 19 | ' (allez dans les propriétés du projet ou double-cliquez sur le nœud My Project dans 20 | ' l'Explorateur de solutions), puis apportez vos modifications sous l'onglet Application. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = false 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = true 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterAllFormsClose 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.UnlockSoftwares.Form1 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | Form1 5 | false 6 | 1 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Resources 2 | Imports System 3 | Imports System.Reflection 4 | Imports System.Runtime.InteropServices 5 | 6 | ' Les informations générales relatives à un assembly dépendent de 7 | ' l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations 8 | ' associées à un assembly. 9 | 10 | ' Vérifiez les valeurs des attributs de l'assembly 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 'Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM 22 | 23 | 24 | ' Les informations de version pour un assembly se composent des quatre valeurs suivantes : 25 | ' 26 | ' Version principale 27 | ' Version secondaire 28 | ' Numéro de build 29 | ' Révision 30 | ' 31 | ' Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut 32 | ' en utilisant '*', comme indiqué ci-dessous : 33 | ' 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\Adresse Mac.vbs;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 123 | 124 | 125 | ..\Resources\InfoBattery.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 126 | 127 | 128 | ..\Resources\LISTE DE COMMANDES.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 129 | 130 | 131 | ..\Resources\Process Manager Checker.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 132 | 133 | 134 | ..\Resources\ProductKey.vbs;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 135 | 136 | 137 | ..\Resources\Wifi Passwords Recovery.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 138 | 139 | 140 | ..\Resources\[Crack]Liste de clés d'activation.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 141 | 142 | 143 | ..\Resources\KasperskyX32.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 144 | 145 | 146 | ..\Resources\KasperskyX64.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 147 | 148 | 149 | ..\Resources\2099.09.22.key;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 150 | 151 | 152 | ..\Resources\WindowsRaccourci.rar;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 153 | 154 | 155 | ..\Resources\Windows 10 - Active Numlock au démarrage.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 156 | 157 | 158 | ..\Resources\Windows 10 - Désactive Numlock au démarrage.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 159 | 160 | 161 | ..\Resources\WIN10AntiTelemetry.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 162 | 163 | 164 | ..\Resources\Win10DisableLockscreen.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 165 | 166 | 167 | ..\Resources\WindowsInfoLicense.vbs;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 168 | 169 | 170 | ..\Resources\SVCHOST_CHECKER.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 171 | 172 | 173 | ..\Resources\Disable_Lock_Screen.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 174 | 175 | 176 | ..\Resources\Enable_Lock_Screen.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 177 | 178 | 179 | ..\Resources\Remove_Share_with_from_context_menu.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 180 | 181 | 182 | ..\Resources\Turn_Off_AutoPlay.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 183 | 184 | 185 | ..\Resources\Turn_Off_Fast_Startup.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 186 | 187 | 188 | ..\Resources\Turn_On_Fast_Startup.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 189 | 190 | 191 | ..\Resources\Add_Copy-Move_To_Folder_to_context_menu.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 192 | 193 | 194 | ..\Resources\Remove_Add_to_Windows_Media_Player_list_context_menu.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 195 | 196 | 197 | ..\Resources\Remove_Quick_access_from_navigation_pane.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-16 198 | 199 | 200 | ..\Resources\Snagit.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 201 | 202 | 203 | ..\Resources\RestartEnAdmin.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 204 | 205 | 206 | ..\Resources\activate-office-2016.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 207 | 208 | 209 | ..\Resources\activate-visio2016.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 210 | 211 | 212 | ..\Resources\activate-windows-10.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 213 | 214 | 215 | ..\Resources\activate-windows-8-8-1.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 216 | 217 | 218 | ..\Resources\207787.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 219 | 220 | 221 | ..\Resources\2020.12.10.key;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 222 | 223 | 224 | ..\Resources\activate-office-2019.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 225 | 226 | 227 | ..\Resources\GiveAwayOfTheDay.vbs;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 228 | 229 | 230 | ..\Resources\2020.07.28.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 231 | 232 | 233 | ..\Resources\2023.11.21.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 234 | 235 | 236 | ..\Resources\2026.07.05.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 237 | 238 | 239 | ..\Resources\2026.11.05.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 240 | 241 | 242 | ..\Resources\2027.02.28.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 243 | 244 | 245 | ..\Resources\2029.04.14.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 246 | 247 | 248 | ..\Resources\2038.01.10.avastlic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 249 | 250 | 251 | ..\Resources\revouninstallerpro4.lic;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 252 | 253 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' Ce code a été généré par un outil. 4 | ' Version du runtime :4.0.30319.42000 5 | ' 6 | ' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | ' le code est régénéré. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) 24 | 25 | #Region "Fonctionnalité Enregistrement automatique My.Settings" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | 57 | _ 60 | Public Property SaveChemin() As String 61 | Get 62 | Return CType(Me("SaveChemin"),String) 63 | End Get 64 | Set 65 | Me("SaveChemin") = value 66 | End Set 67 | End Property 68 | 69 | _ 72 | Public Property ValueDate() As Date 73 | Get 74 | Return CType(Me("ValueDate"),Date) 75 | End Get 76 | Set 77 | Me("ValueDate") = value 78 | End Set 79 | End Property 80 | 81 | _ 84 | Public Property Temp() As String 85 | Get 86 | Return CType(Me("Temp"),String) 87 | End Get 88 | Set 89 | Me("Temp") = value 90 | End Set 91 | End Property 92 | End Class 93 | End Namespace 94 | 95 | Namespace My 96 | 97 | _ 100 | Friend Module MySettingsProperty 101 | 102 | _ 103 | Friend ReadOnly Property Settings() As Global.UnlockSoftwares.My.MySettings 104 | Get 105 | Return Global.UnlockSoftwares.My.MySettings.Default 106 | End Get 107 | End Property 108 | End Module 109 | End Namespace 110 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 2085-01-01 10 | 11 | 12 | 20 13 | 14 | 15 | -------------------------------------------------------------------------------- /UnlockSoftwares/My Project/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 52 | 59 | 60 | 61 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2020.01.01.avastlic: -------------------------------------------------------------------------------- 1 | [Certificates] 2 | WalletKeys=S2CYJQ-C6MD82-4ZL4LS 3 | CustomerName=robert wankewycz 4 | CertificateCount=14 5 | 6 | [Certificate0] 7 | LicenseId=c153decf-9e72-4be2-9e1c-aa9804febf2f 8 | CustomerEmail=aleks-david@sky.com 9 | CorrelationIds=59103eb1-4421-4a79-8631-d0ba6321e479 10 | ProductName=Avast SecureLine multiplatform - 1 user, 1 year 11 | LicensingSchemaId=avast-secureline-multiplatform-1y-1s_1 12 | Feature=AV_VPN 13 | LicenseFamily=SecureLine 14 | LicenseCount=1 15 | LicenseCountCurrent=0 16 | # paid, billing OFF 17 | LicenseType=0 18 | LicenseTypeAlpha=3 19 | BillingSubscriptionId=0 20 | BillingSubscriptionMode=1 21 | Issued=1550010593 22 | # 2020-02-12 22:29:53 23 | UpdateValidThru=1581546593 24 | 25 | [Certificate0.Feature0] 26 | Family=SecureLine 27 | Feature=secureline 28 | Platform=null 29 | UpdateValidThru=1581546593 30 | [Certificate0.Feature0.Resource0] 31 | ResourceName=secureline/secureline/connections 32 | CurrentValue=0.0 33 | OriginalValue=5.0 34 | 35 | [Certificate0.Resource0] 36 | ResourceName=devices 37 | CurrentValue=0.0 38 | OriginalValue=1.0 39 | 40 | 41 | [Certificate1] 42 | LicenseId=d100dd73-b4c0-48a4-8cdd-f52f2588e202 43 | CustomerEmail=aleks-david@sky.com 44 | CorrelationIds=d9a68ee6-bac6-429f-ab21-21cca2d0fce1 45 | ProductName=Avast Internet Security - 1 user, 2 years 46 | LicensingSchemaId=avast-internet-sec-2y-1s_1 47 | Feature=AV_AIS 48 | LicenseFamily=AvConsumer 49 | LicenseCount=3 50 | LicenseCountCurrent=0 51 | # paid, billing OFF 52 | LicenseType=0 53 | LicenseTypeAlpha=3 54 | BillingSubscriptionId=0 55 | BillingSubscriptionMode=1 56 | Issued=1549854951 57 | # 2021-02-11 03:15:50 58 | UpdateValidThru=1613013350 59 | 60 | [Certificate1.Feature0] 61 | Family=AvConsumer 62 | Feature=alc_cmp_secdns 63 | Platform=null 64 | UpdateValidThru=1613013350 65 | 66 | [Certificate1.Feature1] 67 | Family=AvConsumer 68 | Feature=alc_shl_spm 69 | Platform=null 70 | UpdateValidThru=1613013350 71 | 72 | [Certificate1.Feature2] 73 | Family=AvConsumer 74 | Feature=alc_cmp_fw 75 | Platform=null 76 | UpdateValidThru=1613013350 77 | 78 | [Certificate1.Feature3] 79 | Family=AvConsumer 80 | Feature=alc_cmp_sfzone 81 | Platform=null 82 | UpdateValidThru=1613013350 83 | 84 | [Certificate1.Feature4] 85 | Family=AvConsumer 86 | Feature=alc_cmp_snx 87 | Platform=null 88 | UpdateValidThru=1613013350 89 | [Certificate1.Resource0] 90 | ResourceName=devices 91 | CurrentValue=0.0 92 | OriginalValue=3.0 93 | 94 | 95 | [Certificate2] 96 | LicenseId=e70f5506-6d4c-4ad9-8da0-3114329c5031 97 | CustomerName=robert wankewycz 98 | CustomerEmail=aleks-david@sky.com 99 | CorrelationIds=71e3fe7c-05d3-4508-b553-a88e4a3d814b;d08f4a5f-d515-4fdc-b7cb-0066a3c0b2c6;FR_a0c3c029dd4217edff61ad9e4b7e4c34;82c7edfe-9f07-485d-9bf0-27fbbaa413a8;15c37f10-5eb9-40e2-90b8-d7d118ae57d5;PUR_AECCCC38D955E8DDFCF67855A245F1B4;86c56df2-7186-4af9-8bc6-ec3f99fad35a 100 | ProductName=Avast Internet Security - 1 user, 1 year 101 | LicensingSchemaId=avast-internet-sec-1y-1s_1 102 | Feature=AV_AIS 103 | LicenseFamily=AvConsumer 104 | LicenseCount=1 105 | LicenseCountCurrent=0 106 | # paid, billing OFF 107 | LicenseType=0 108 | LicenseTypeAlpha=3 109 | BillingSubscriptionId=32534194 110 | BillingSubscriptionMode=3 111 | # 2018-11-21 15:00:43 112 | LastBillingTime=1542812443 113 | # 2019-11-21 15:00:43 114 | NextBillingTime=1574348443 115 | Issued=1513216027 116 | # 2023-12-14 01:47:08 117 | UpdateValidThru=1702518428 118 | 119 | [Certificate2.Feature0] 120 | Family=AvConsumer 121 | Feature=alc_cmp_snx 122 | Platform=null 123 | UpdateValidThru=1702518428 124 | 125 | [Certificate2.Feature1] 126 | Family=AvConsumer 127 | Feature=alc_cmp_fw 128 | Platform=null 129 | UpdateValidThru=1702518428 130 | 131 | [Certificate2.Feature2] 132 | Family=AvConsumer 133 | Feature=alc_cpm_shredder 134 | Platform=null 135 | UpdateValidThru=1639446427 136 | 137 | [Certificate2.Feature3] 138 | Family=AvConsumer 139 | Feature=alc_cmp_secdns 140 | Platform=null 141 | UpdateValidThru=1702518428 142 | 143 | [Certificate2.Feature4] 144 | Family=AvConsumer 145 | Feature=alc_shl_spm 146 | Platform=null 147 | UpdateValidThru=1702518428 148 | 149 | [Certificate2.Feature5] 150 | Family=AvConsumer 151 | Feature=alc_cmp_sfzone 152 | Platform=null 153 | UpdateValidThru=1702518428 154 | [Certificate2.Resource0] 155 | ResourceName=devices 156 | CurrentValue=0.0 157 | OriginalValue=1.0 158 | 159 | 160 | [Certificate3] 161 | LicenseId=9d51958d-71bc-47a9-86b8-ccc7628cc627 162 | CustomerName=Aleksandra Shipman 163 | CustomerEmail=aleks-david@sky.com 164 | CorrelationIds=fix_we_2e83455f-6469-49f2-85cc-470b2b88fa62;PUR_18E263D30B71F050CAD056FD1EF479ED;7bc09e29-c567-4de7-89a1-16b033d3d1b4 165 | ProductName=Avast Premier - 1 user, 1 year 166 | LicensingSchemaId=avast-premier-1y-1s_1 167 | Feature=AV_APR 168 | LicenseFamily=AvConsumer 169 | LicenseCount=1 170 | LicenseCountCurrent=0 171 | # paid, billing ON 172 | LicenseType=10 173 | LicenseTypeAlpha=3 174 | BillingSubscriptionId=25965363 175 | BillingSubscriptionMode=2 176 | # 2018-02-17 11:41:27 177 | LastBillingTime=1518867687 178 | # 2019-02-17 11:41:27 179 | NextBillingTime=1550403687 180 | Issued=1483242899 181 | # 2020-01-01 03:54:57 182 | UpdateValidThru=1577850897 183 | 184 | [Certificate3.Feature0] 185 | Family=AvConsumer 186 | Feature=alc_cmp_sfzone 187 | Platform=null 188 | UpdateValidThru=1577850897 189 | 190 | [Certificate3.Feature1] 191 | Family=AvConsumer 192 | Feature=alc_cmp_fw 193 | Platform=null 194 | UpdateValidThru=1577850897 195 | 196 | [Certificate3.Feature2] 197 | Family=AvConsumer 198 | Feature=alc_cpm_shredder 199 | Platform=null 200 | UpdateValidThru=1577850897 201 | 202 | [Certificate3.Feature3] 203 | Family=AvConsumer 204 | Feature=alc_cmp_secdns 205 | Platform=null 206 | UpdateValidThru=1577850897 207 | 208 | [Certificate3.Feature4] 209 | Family=AvConsumer 210 | Feature=alc_shl_spm 211 | Platform=null 212 | UpdateValidThru=1577850897 213 | 214 | [Certificate3.Feature5] 215 | Family=AvConsumer 216 | Feature=alc_cmp_snx 217 | Platform=null 218 | UpdateValidThru=1577850897 219 | [Certificate3.Resource0] 220 | ResourceName=devices 221 | CurrentValue=0.0 222 | OriginalValue=1.0 223 | 224 | 225 | [Certificate4] 226 | LicenseId=97b2a0b8-42ff-48c6-8680-0ea3e8535527 227 | CustomerName=CORE Arkadiusz Stanoszek 228 | CustomerEmail=aleks-david@sky.com 229 | CorrelationIds=f8e1a537-8821-4a82-a4af-7ce89d9b669d 230 | ProductName=Avast Internet Security - 1 user, 1 year 231 | LicensingSchemaId=avast-internet-sec-1y-1s_1 232 | Feature=AV_AIS 233 | LicenseFamily=AvConsumer 234 | LicenseCount=1 235 | LicenseCountCurrent=0 236 | # paid, billing OFF 237 | LicenseType=0 238 | LicenseTypeAlpha=3 239 | BillingSubscriptionId=0 240 | BillingSubscriptionMode=1 241 | ResellerId=9167 242 | Issued=1550619755 243 | # 2020-02-19 23:42:35 244 | UpdateValidThru=1582155755 245 | 246 | [Certificate4.Feature0] 247 | Family=AvConsumer 248 | Feature=alc_cmp_sfzone 249 | Platform=null 250 | UpdateValidThru=1582155755 251 | 252 | [Certificate4.Feature1] 253 | Family=AvConsumer 254 | Feature=alc_cmp_snx 255 | Platform=null 256 | UpdateValidThru=1582155755 257 | 258 | [Certificate4.Feature2] 259 | Family=AvConsumer 260 | Feature=alc_cmp_fw 261 | Platform=null 262 | UpdateValidThru=1582155755 263 | 264 | [Certificate4.Feature3] 265 | Family=AvConsumer 266 | Feature=alc_shl_spm 267 | Platform=null 268 | UpdateValidThru=1582155755 269 | 270 | [Certificate4.Feature4] 271 | Family=AvConsumer 272 | Feature=alc_cmp_secdns 273 | Platform=null 274 | UpdateValidThru=1582155755 275 | [Certificate4.Resource0] 276 | ResourceName=devices 277 | CurrentValue=0.0 278 | OriginalValue=1.0 279 | 280 | 281 | [Certificate5] 282 | LicenseId=e13e44e7-59ca-4769-b03f-9ae9d16f94fb 283 | CustomerEmail=aleks-david@sky.com 284 | CorrelationIds=avast-internet-sec-trial-1m-1s.1551476742211;avast-internet-sec-trial-1m-1s.1529087243084;avast-internet-sec-trial-1m-1s.1536348454447;avast-internet-sec-trial-1m-1s.1523117177165;avast-internet-sec-trial-1m-1s.1526379936977;avast-internet-sec-trial-1m-1s.1532803558858;avast-internet-sec-trial-1m-1s.1554142892451;avast-internet-sec-trial-1m-1s.1542594400274;avast-internet-sec-trial-1m-1s.1548352483818;avast-internet-sec-trial-1m-1s.1556884603100;avast-internet-sec-trial-1m-1s.1519380702064;avast-internet-sec-trial-1m-1s.1545630005876;avast-internet-sec-trial-1m-1s.1539203844847 285 | ProductName=Avast Internet Security Trial - 1 user, 1 month 286 | LicensingSchemaId=avast-internet-sec-trial-1m-1s_1 287 | Feature=AV_AIS 288 | LicenseFamily=AvConsumer 289 | LicenseCount=1 290 | LicenseCountCurrent=0 291 | # trial or unregistered free 292 | LicenseType=4 293 | LicenseTypeAlpha=2 294 | BillingSubscriptionId=0 295 | BillingSubscriptionMode=1 296 | Issued=1519380702 297 | # 2019-06-02 13:56:43 298 | UpdateValidThru=1559483803 299 | 300 | [Certificate5.Feature0] 301 | Family=AvConsumer 302 | Feature=alc_cmp_snx 303 | Platform=null 304 | UpdateValidThru=1559483803 305 | 306 | [Certificate5.Feature1] 307 | Family=AvConsumer 308 | Feature=alc_cmp_sfzone 309 | Platform=null 310 | UpdateValidThru=1559483803 311 | 312 | [Certificate5.Feature2] 313 | Family=AvConsumer 314 | Feature=alc_cmp_fw 315 | Platform=null 316 | UpdateValidThru=1559483803 317 | 318 | [Certificate5.Feature3] 319 | Family=AvConsumer 320 | Feature=alc_shl_spm 321 | Platform=null 322 | UpdateValidThru=1559483803 323 | 324 | [Certificate5.Feature4] 325 | Family=AvConsumer 326 | Feature=alc_cmp_secdns 327 | Platform=null 328 | UpdateValidThru=1559483803 329 | [Certificate5.Resource0] 330 | ResourceName=devices 331 | CurrentValue=0.0 332 | OriginalValue=1.0 333 | 334 | 335 | [Certificate6] 336 | LicenseId=35f9e7ee-df2c-49da-92b0-7b5ec658fdff 337 | CustomerEmail=aleks-david@sky.com 338 | CorrelationIds=ebc18193-3be4-4c3b-af84-7021b92838fe 339 | ProductName=Avast Premier - 1 user, 1 year 340 | LicensingSchemaId=avast-premier-1y-1s_1 341 | Feature=AV_APR 342 | LicenseFamily=AvConsumer 343 | LicenseCount=1 344 | LicenseCountCurrent=0 345 | # paid, billing OFF 346 | LicenseType=0 347 | LicenseTypeAlpha=3 348 | BillingSubscriptionId=0 349 | BillingSubscriptionMode=1 350 | Issued=1544548382 351 | # 2019-12-11 17:07:52 352 | UpdateValidThru=1576084072 353 | 354 | [Certificate6.Feature0] 355 | Family=AvConsumer 356 | Feature=alc_shl_spm 357 | Platform=null 358 | UpdateValidThru=1576084072 359 | 360 | [Certificate6.Feature1] 361 | Family=AvConsumer 362 | Feature=alc_cmp_secdns 363 | Platform=null 364 | UpdateValidThru=1576084072 365 | 366 | [Certificate6.Feature2] 367 | Family=AvConsumer 368 | Feature=alc_cmp_snx 369 | Platform=null 370 | UpdateValidThru=1576084072 371 | 372 | [Certificate6.Feature3] 373 | Family=AvConsumer 374 | Feature=alc_cmp_sfzone 375 | Platform=null 376 | UpdateValidThru=1576084072 377 | 378 | [Certificate6.Feature4] 379 | Family=AvConsumer 380 | Feature=alc_cmp_fw 381 | Platform=null 382 | UpdateValidThru=1576084072 383 | 384 | [Certificate6.Feature5] 385 | Family=AvConsumer 386 | Feature=alc_cpm_shredder 387 | Platform=null 388 | UpdateValidThru=1576084072 389 | [Certificate6.Resource0] 390 | ResourceName=devices 391 | CurrentValue=0.0 392 | OriginalValue=1.0 393 | 394 | 395 | [Certificate7] 396 | LicenseId=a7df36c1-d7c1-4057-856d-7a54eef9570b 397 | CustomerName=ram reddy 398 | CustomerEmail=aleks-david@sky.com 399 | CorrelationIds=PUR_D77503A181EF773B09193B0CEBBEB0F9 400 | ProductName=Avast Cleanup - 1 user, 1 year 401 | LicensingSchemaId=avast-cleanup-1y-1s_1 402 | Feature=GF_SRV 403 | LicenseFamily=GrimeFighter 404 | LicenseCount=1 405 | LicenseCountCurrent=0 406 | # paid, billing OFF 407 | LicenseType=0 408 | LicenseTypeAlpha=3 409 | BillingSubscriptionId=0 410 | BillingSubscriptionMode=1 411 | Issued=1535626689 412 | # 2019-08-30 10:58:09 413 | UpdateValidThru=1567162689 414 | 415 | [Certificate7.Feature0] 416 | Family=GrimeFighter 417 | Feature=gf_srv 418 | Platform=null 419 | UpdateValidThru=1567162689 420 | [Certificate7.Resource0] 421 | ResourceName=devices 422 | CurrentValue=0.0 423 | OriginalValue=1.0 424 | 425 | 426 | [Certificate8] 427 | LicenseId=9925b149-fa91-4540-82fa-e582087f89af 428 | CustomerEmail=aleks-david@sky.com 429 | CorrelationIds=avast-free-1s1y.1534146859680;avast-free-1s1y.1539347099424;avast-free-1s1y1513737583053;avast-free-1s1y.1524719569136;avast-free-1s1y.1529393885707;avast-free-1s1y.1541893364845;avast-free-1s1y.1549076394806;avast-free-1s1y.1527149006742;avast-free-1s1y.1544261785749;avast-free-1s1y.1546651926823;avast-free-1s1y.1519220428097;avast-free-1s1y.1521390785489;avast-free-1s1y.1531588711886;avast-free-1s1y.1536502412562;avast-free-1s1y.1554761639530;avast-free-1s1y.1551387587628 430 | ProductName=Avast Free Antivirus - 1 seat, 1 year 431 | LicensingSchemaId=avast-free-1s1y_1s1y 432 | Feature=AV_FREE 433 | LicenseFamily=AvConsumer 434 | LicenseCount=1 435 | LicenseCountCurrent=0 436 | # registered free 437 | LicenseType=0 438 | LicenseTypeAlpha=1 439 | BillingSubscriptionId=0 440 | BillingSubscriptionMode=1 441 | Issued=1513737583 442 | # 2020-04-08 00:13:59 443 | UpdateValidThru=1586304839 444 | 445 | [Certificate8.Feature0] 446 | Family=AvConsumer 447 | Feature=alc_cmp_core 448 | Platform=null 449 | UpdateValidThru=1586304839 450 | [Certificate8.Resource0] 451 | ResourceName=devices 452 | CurrentValue=0.0 453 | OriginalValue=1.0 454 | 455 | 456 | [Certificate9] 457 | LicenseId=a1e62d13-565e-4bd9-8390-09f1640be6ac 458 | CustomerName=AVAST RECOMMENDATION 459 | CustomerEmail=aleks-david@sky.com 460 | CorrelationIds=MIG_C33CAC738C76D3991B04CA7FA194EFAB 461 | ProductName=Avast Internet Security - 1 user, 1 year 462 | LicensingSchemaId=avast-internet-sec-1y-1s_1 463 | Feature=AV_AIS 464 | LicenseFamily=AvConsumer 465 | LicenseCount=1 466 | LicenseCountCurrent=0 467 | # paid, billing OFF 468 | LicenseType=0 469 | LicenseTypeAlpha=3 470 | BillingSubscriptionId=0 471 | BillingSubscriptionMode=1 472 | ResellerId=3161 473 | Issued=1470758386 474 | # 2017-02-10 18:51:06 475 | UpdateValidThru=1486752666 476 | 477 | [Certificate9.Feature0] 478 | Family=AvConsumer 479 | Feature=alc_cmp_fw 480 | Platform=null 481 | UpdateValidThru=1486752666 482 | 483 | [Certificate9.Feature1] 484 | Family=AvConsumer 485 | Feature=alc_cmp_sfzone 486 | Platform=null 487 | UpdateValidThru=1486752666 488 | 489 | [Certificate9.Feature2] 490 | Family=AvConsumer 491 | Feature=alc_cmp_snx 492 | Platform=null 493 | UpdateValidThru=1486752666 494 | 495 | [Certificate9.Feature3] 496 | Family=AvConsumer 497 | Feature=alc_cmp_secdns 498 | Platform=null 499 | UpdateValidThru=1486752666 500 | 501 | [Certificate9.Feature4] 502 | Family=AvConsumer 503 | Feature=alc_shl_spm 504 | Platform=null 505 | UpdateValidThru=1486752666 506 | [Certificate9.Resource0] 507 | ResourceName=devices 508 | CurrentValue=0.0 509 | OriginalValue=1.0 510 | 511 | 512 | [Certificate10] 513 | LicenseId=2d746f9d-ae2f-4d5d-8bca-727aec331f4b 514 | CustomerEmail=aleks-david@sky.com 515 | CorrelationIds=avast-free-1s7y.1539243135013 516 | ProductName=Avast Free Antivirus - 1 seat, 7 years 517 | LicensingSchemaId=avast-free-1s7y_1s7y 518 | Feature=AV_FREE 519 | LicenseFamily=AvConsumer 520 | LicenseCount=1 521 | LicenseCountCurrent=0 522 | # registered free 523 | LicenseType=0 524 | LicenseTypeAlpha=1 525 | BillingSubscriptionId=0 526 | BillingSubscriptionMode=1 527 | Issued=1539243135 528 | # 2025-10-09 07:32:15 529 | UpdateValidThru=1759995135 530 | 531 | [Certificate10.Feature0] 532 | Family=AvConsumer 533 | Feature=alc_cmp_core 534 | Platform=null 535 | UpdateValidThru=1759995135 536 | [Certificate10.Resource0] 537 | ResourceName=devices 538 | CurrentValue=0.0 539 | OriginalValue=1.0 540 | 541 | 542 | [Certificate11] 543 | LicenseId=6e09aee5-242e-4596-8385-fcbdad715690 544 | CustomerName=undefined dilkhush kumar 545 | CustomerEmail=aleks-david@sky.com 546 | CorrelationIds=PUR_C7D57F014C9F18932D3C9C3F208A9497 547 | ProductName=Avast Cleanup Premium - 1 user, 2 months 548 | LicensingSchemaId=avast-cleanup-premium-1s-2m_v1 549 | Feature=GF_SRV 550 | LicenseFamily=GrimeFighter 551 | LicenseCount=1 552 | LicenseCountCurrent=0 553 | # trial or unregistered free 554 | LicenseType=4 555 | LicenseTypeAlpha=2 556 | BillingSubscriptionId=26076243 557 | BillingSubscriptionMode=3 558 | # 2018-02-21 10:28:00 559 | LastBillingTime=1519208880 560 | # 2018-04-22 09:28:00 561 | NextBillingTime=1524389280 562 | Issued=1519212414 563 | # 2018-04-21 11:26:54 564 | UpdateValidThru=1524310014 565 | 566 | [Certificate11.Feature0] 567 | Family=GrimeFighter 568 | Feature=gf-srv 569 | Platform=null 570 | UpdateValidThru=1524310014 571 | [Certificate11.Resource0] 572 | ResourceName=devices 573 | CurrentValue=0.0 574 | OriginalValue=1.0 575 | 576 | 577 | [Certificate12] 578 | LicenseId=47bf7fcd-af79-4e5f-bf44-492185626b75 579 | CustomerEmail=aleks-david@sky.com 580 | CorrelationIds=avast-premier-trial-1s1m.1539381307795;avast-premier-trial-1s1m.1548009331234;avast-premier-trial-1s1m.1519236880653;avast-premier-trial-1s1m.1527738110054;avast-premier-trial-1s1m.1550820277117;avast-premier-trial-1s1m.1523627098934;avast-premier-trial-1s1m.1554052512311;avast-premier-trial-1s1m.1533701963566;avast-premier-trial-1s1m.1543674142703;avast-premier-trial-1s1m.1530518867296;avast-premier-trial-1s1m.1536514331477 581 | ProductName=Avast Premier Trial - 1 seat, 1 month 582 | LicensingSchemaId=avast-premier-trial-1s1m_1s1m 583 | Feature=AV_APR 584 | LicenseFamily=AvConsumer 585 | LicenseCount=1 586 | LicenseCountCurrent=0 587 | # trial or unregistered free 588 | LicenseType=4 589 | LicenseTypeAlpha=2 590 | BillingSubscriptionId=0 591 | BillingSubscriptionMode=1 592 | Issued=1519236880 593 | # 2019-04-30 19:15:12 594 | UpdateValidThru=1556651712 595 | 596 | [Certificate12.Feature0] 597 | Family=AvConsumer 598 | Feature=alc_cmp_secdns 599 | Platform=null 600 | UpdateValidThru=1556651712 601 | 602 | [Certificate12.Feature1] 603 | Family=AvConsumer 604 | Feature=alc_shl_spm 605 | Platform=null 606 | UpdateValidThru=1556651712 607 | 608 | [Certificate12.Feature2] 609 | Family=AvConsumer 610 | Feature=alc_cmp_snx 611 | Platform=null 612 | UpdateValidThru=1556651712 613 | 614 | [Certificate12.Feature3] 615 | Family=AvConsumer 616 | Feature=alc_cmp_sfzone 617 | Platform=null 618 | UpdateValidThru=1556651712 619 | 620 | [Certificate12.Feature4] 621 | Family=AvConsumer 622 | Feature=alc_cmp_fw 623 | Platform=null 624 | UpdateValidThru=1556651712 625 | 626 | [Certificate12.Feature5] 627 | Family=AvConsumer 628 | Feature=alc_cpm_shredder 629 | Platform=null 630 | UpdateValidThru=1556651712 631 | [Certificate12.Resource0] 632 | ResourceName=devices 633 | CurrentValue=0.0 634 | OriginalValue=1.0 635 | 636 | 637 | [Certificate13] 638 | LicenseId=54a24055-c553-4de6-9abe-90b2f671c0f4 639 | CustomerName=Roeun Marin 640 | CustomerEmail=aleks-david@sky.com 641 | CorrelationIds=PUR_E94551748EAD543DDC2E24E375FC37FC;720019c2-8318-4708-891e-5764b62022a0 642 | ProductName=Avast SecureLine multiplatform - 1 user, 1 month 643 | LicensingSchemaId=avast-secureline-multiplatform-1m-1s_1 644 | Feature=AV_VPN 645 | LicenseFamily=SecureLine 646 | LicenseCount=1 647 | LicenseCountCurrent=0 648 | # paid, billing ON 649 | LicenseType=10 650 | LicenseTypeAlpha=3 651 | BillingSubscriptionId=31068239 652 | BillingSubscriptionMode=2 653 | # 2018-09-23 07:20:21 654 | LastBillingTime=1537687221 655 | # 2018-10-23 07:20:21 656 | NextBillingTime=1540279221 657 | Issued=1527723808 658 | # 2020-06-30 23:43:28 659 | UpdateValidThru=1593560608 660 | 661 | [Certificate13.Feature0] 662 | Family=SecureLine 663 | Feature=secureline 664 | Platform=null 665 | UpdateValidThru=1593560608 666 | [Certificate13.Feature0.Resource0] 667 | ResourceName=secureline/secureline/connections 668 | CurrentValue=0.0 669 | OriginalValue=5.0 670 | 671 | [Certificate13.Resource0] 672 | ResourceName=devices 673 | CurrentValue=0.0 674 | OriginalValue=1.0 675 | 676 | 677 | [Signature] 678 | Signature=ASWSig3Laf5f20dd98bbdaff298645f5743a563efcdf6ae6ca7356385291b707b0a78cf4ASWSig3L -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2020.02.11.avastlic: -------------------------------------------------------------------------------- 1 | #----------------------------------------------------------------------------- 2 | # AVAST Software License File: 124882079 3 | # DO NOT EDIT THIS FILE - ANY CHANGES WILL INVALIDATE THE LICENSE! 4 | # 5 | # Thank you for your purchase/trial of AVAST Software products. 6 | # 7 | # Should you have any questions about this file, 8 | # please visit support.avast.com and submit a support ticket. 9 | #----------------------------------------------------------------------------- 10 | 11 | # 12 | # Section for avast! keys 13 | # 14 | [Keys] 15 | 16 | 17 | [Certificates] 18 | 19 | # 20 | # License file publisher 21 | # 22 | IssuedBy=AVAST Software s.r.o. 23 | 24 | # 25 | # Recommendation number 26 | # 27 | RecommendationNumber=6nQgIatC 28 | 29 | # 30 | # Customer name (license holder) 31 | # 32 | CustomerName=明杰 邹 <605705853@qq.com> 33 | 34 | # 35 | # Customer number 36 | # 37 | CustomerNumber=124882079 38 | 39 | # 40 | # Name of customer company 41 | # 42 | CustomerCompany= 43 | 44 | # 45 | # Number of licensed products (covered by this file) 46 | # 47 | CertificateCount=1 48 | 49 | # 50 | # Section for licensed product 1 51 | # 52 | [Certificate0] 53 | 54 | # 55 | # Name of product: avast! Internet Security 56 | # 57 | Feature=AV_AIS 58 | 59 | # 60 | # License creation date: Feb 11, 2017 61 | # 62 | Issued=1486781501 63 | 64 | # 65 | # License expiry date: 66 | # 67 | ValidThru=0 68 | 69 | # 70 | # Update license expiry date: Feb 11, 2020 71 | # 72 | UpdateValidThru=1581389501 73 | 74 | # 75 | # Number of licensed items 76 | # 77 | LicenseCount=1 78 | 79 | # 80 | # License Identifier 81 | # 82 | LicenseId=6ee41d3d-ca02-492e-a465-6ef1d2ad9396 83 | 84 | # 85 | # Reseller Identifier 86 | # 87 | ResellerId=3161 88 | 89 | # 90 | # Product type 91 | # 0 = Standard 92 | # 1 = Non-profit organization 93 | # 2 = Government/Healthcare 94 | # 3 = OEM 95 | # 7 = Not for resale 96 | # 9 = Education 97 | # 10 = Subscription 98 | # 12 = Avast recommendation 99 | # 100 | LicenseType=12 101 | 102 | 103 | ASWSignA32A09C1312B9D5E4ACC1550E7045093A6390CD44A4714670D80111D60D27E3585868238807CA3E95ASWSignA -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2020.07.28.avastlic: -------------------------------------------------------------------------------- 1 | #----------------------------------------------------------------------------- 2 | # AVAST Software License File: 121129244 3 | # DO NOT EDIT THIS FILE - ANY CHANGES WILL INVALIDATE THE LICENSE! 4 | # 5 | # Thank you for your purchase/trial of AVAST Software products. 6 | # 7 | # Should you have any questions about this file, 8 | # please visit support.avast.com and submit a support ticket. 9 | #----------------------------------------------------------------------------- 10 | 11 | # 12 | # Section for avast! keys 13 | # 14 | [Keys] 15 | 16 | 17 | [Certificates] 18 | 19 | # 20 | # License file publisher 21 | # 22 | IssuedBy=AVAST Software s.r.o. 23 | 24 | # 25 | # Recommendation number 26 | # 27 | RecommendationNumber=nRbqpJG5 28 | 29 | # 30 | # Customer name (license holder) 31 | # 32 | CustomerName=<921371886@qq.com> 33 | 34 | # 35 | # Customer number 36 | # 37 | CustomerNumber=121129244 38 | 39 | # 40 | # Name of customer company 41 | # 42 | CustomerCompany= 43 | 44 | # 45 | # Number of licensed products (covered by this file) 46 | # 47 | CertificateCount=1 48 | 49 | # 50 | # Section for licensed product 1 51 | # 52 | [Certificate0] 53 | 54 | # 55 | # Name of product: Avast Internet Security - 1 user, 3 years 56 | # 57 | Feature=AV_AIS 58 | 59 | # 60 | # License creation date: Jul 27, 2016 61 | # 62 | Issued=1469635878 63 | 64 | # 65 | # License expiry date: 66 | # 67 | ValidThru=0 68 | 69 | # 70 | # Update license expiry date: Jul 27, 2019 71 | # 72 | UpdateValidThru=1564243878 73 | 74 | # 75 | # Number of licensed items 76 | # 77 | LicenseCount=1 78 | 79 | # 80 | # License Identifier 81 | # 82 | LicenseId=956ff151-d1d7-4960-b6fb-526749d5d4ca 83 | 84 | # 85 | # Reseller Identifier 86 | # 87 | ResellerId=3161 88 | 89 | # 90 | # Product type 91 | # 0 = Standard 92 | # 1 = Non-profit organization 93 | # 2 = Government/Healthcare 94 | # 3 = OEM 95 | # 7 = Not for resale 96 | # 9 = Education 97 | # 10 = Subscription 98 | # 12 = Avast recommendation 99 | # 100 | LicenseType=12 101 | 102 | 103 | ASWSignA7F6358C4169E4DCA87235B34C0C535B2BAD4C9E174A1928962759DC58953852D638FA9DF3DF04267ASWSignA -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2020.12.10.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/2020.12.10.key -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2023.11.21.avastlic: -------------------------------------------------------------------------------- 1 | #----------------------------------------------------------------------------- 2 | # AVAST Software License File: 117754838 3 | # DO NOT EDIT THIS FILE - ANY CHANGES WILL INVALIDATE THE LICENSE! 4 | # 5 | # Thank you for your purchase/trial of AVAST Software products. 6 | # 7 | # Should you have any questions about this file, 8 | # please visit support.avast.com and submit a support ticket. 9 | #----------------------------------------------------------------------------- 10 | 11 | # 12 | # Section for avast! keys 13 | # 14 | [Keys] 15 | 16 | 17 | [Certificates] 18 | 19 | # 20 | # License file publisher 21 | # 22 | IssuedBy=AVAST Software s.r.o. 23 | 24 | # 25 | # Customer name (license holder) 26 | # 27 | CustomerName=Юрий Николаевич Ванифатьев 28 | 29 | # 30 | # Customer number 31 | # 32 | CustomerNumber=117754838 33 | 34 | # 35 | # Name of customer company 36 | # 37 | CustomerCompany= 38 | 39 | # 40 | # Number of licensed products (covered by this file) 41 | # 42 | CertificateCount=2 43 | 44 | # 45 | # Section for licensed product 1 46 | # 47 | [Certificate0] 48 | 49 | # 50 | # Name of product: AV_APR 51 | # 52 | Feature=AV_APR 53 | 54 | # 55 | # License creation date: Jan 28, 2016 56 | # 57 | Issued=1454008872 58 | 59 | # 60 | # License expiry date: 61 | # 62 | ValidThru=0 63 | 64 | # 65 | # Update license expiry date: Nov 20, 2023 66 | # 67 | UpdateValidThru=1700512692 68 | 69 | # 70 | # Number of licensed items 71 | # 72 | LicenseCount=1 73 | 74 | # 75 | # License Identifier 76 | # 77 | LicenseId=2a55ec92-4d26-4c70-a994-64ab714cdf9d 78 | 79 | # 80 | # Reseller Identifier 81 | # 82 | ResellerId=2726 83 | 84 | # 85 | # Product type 86 | # 0 = Standard 87 | # 1 = Non-profit organization 88 | # 2 = Government/Healthcare 89 | # 3 = OEM 90 | # 7 = Not for resale 91 | # 9 = Education 92 | # 10 = Subscription 93 | # 12 = Avast recommendation 94 | # 95 | LicenseType=0 96 | 97 | 98 | # 99 | # Section for licensed product 2 100 | # 101 | [Certificate1] 102 | 103 | # 104 | # Name of product: AV_APR 105 | # 106 | Feature=AV_APR 107 | 108 | # 109 | # License creation date: Dec 12, 2015 110 | # 111 | Issued=1449920082 112 | 113 | # 114 | # License expiry date: 115 | # 116 | ValidThru=0 117 | 118 | # 119 | # Update license expiry date: Jul 20, 2017 120 | # 121 | UpdateValidThru=1500515262 122 | 123 | # 124 | # Number of licensed items 125 | # 126 | LicenseCount=1 127 | 128 | # 129 | # License Identifier 130 | # 131 | LicenseId=5736539b-5ac8-45f6-a633-4e4809b60b08 132 | 133 | # 134 | # Reseller Identifier 135 | # 136 | ResellerId=2726 137 | 138 | # 139 | # Product type 140 | # 0 = Standard 141 | # 1 = Non-profit organization 142 | # 2 = Government/Healthcare 143 | # 3 = OEM 144 | # 7 = Not for resale 145 | # 9 = Education 146 | # 10 = Subscription 147 | # 12 = Avast recommendation 148 | # 149 | LicenseType=0 150 | 151 | 152 | ASWSignA9A377529582BA18349432A9560D17C37C3C9E62E4086F5554E15EF47F78A542A967D9504ABFEBBC0ASWSignA 153 | ASWSignA645CCF6CE67480552F368A2E605B7AFB6E63D6CA31B559FB4C63EA1C2A5766F1DAB0735FA75D1145ASWSignA -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2026.07.05.avastlic: -------------------------------------------------------------------------------- 1 | [Certificates] 2 | WalletKeys=NPW579-RD2842-4B44BN 3 | CustomerName=barry edwards 4 | CustomerCompany= 5 | CertificateCount=18 6 | 7 | [Certificate0] 8 | LicenseId=f3a4f437-5f2f-4be2-ae63-92fd6d8915f5 9 | CorrelationIds=avast-premier-trial-1s1m1502154230666 10 | ProductName=Avast Premier Trial - 1 seat, 1 month 11 | LicensingSchemaId=avast-premier-trial-1s1m_1s1m 12 | Feature=AV_APR 13 | LicenseFamily=AvConsumer 14 | LicenseCount=1 15 | LicenseCountCurrent=0 16 | LicenseType=4 17 | # Trial 18 | LicenseTypeAlpha=2 19 | # 2017-08-08T01:03:50.879Z 20 | Issued=1502154230 21 | # 2017-09-07T01:03:50.666Z 22 | UpdateValidThru=1504746230 23 | 24 | [Certificate0.Resource0] 25 | ResourceName=devices 26 | CurrentValue=0.0 27 | OriginalValue=1.0 28 | 29 | [Certificate0.Feature0] 30 | Feature=alc_cmp_secdns 31 | Platform=null 32 | # 2017-09-07T01:03:50.666Z 33 | UpdateValidThru=1504746230 34 | 35 | [Certificate0.Feature1] 36 | Feature=alc_cmp_snx 37 | Platform=null 38 | # 2017-09-07T01:03:50.666Z 39 | UpdateValidThru=1504746230 40 | 41 | [Certificate0.Feature2] 42 | Feature=alc_cmp_sfzone 43 | Platform=null 44 | # 2017-09-07T01:03:50.666Z 45 | UpdateValidThru=1504746230 46 | 47 | [Certificate0.Feature3] 48 | Feature=alc_cmp_fw 49 | Platform=null 50 | # 2017-09-07T01:03:50.666Z 51 | UpdateValidThru=1504746230 52 | 53 | [Certificate0.Feature4] 54 | Feature=alc_shl_spm 55 | Platform=null 56 | # 2017-09-07T01:03:50.666Z 57 | UpdateValidThru=1504746230 58 | 59 | [Certificate0.Feature5] 60 | Feature=alc_cpm_shredder 61 | Platform=null 62 | # 2017-09-07T01:03:50.666Z 63 | UpdateValidThru=1504746230 64 | 65 | 66 | [Certificate1] 67 | LicenseId=8194c08a-2a65-4531-986e-fab9151f0697 68 | CorrelationIds=PUR_0594B096823F375EDD64AA6B9D114A58 69 | ProductName=Avast Cleanup - 1 user, 1 year 70 | LicensingSchemaId=avast-cleanup-1y-1s_1 71 | Feature=GF_SRV 72 | LicenseFamily=GrimeFighter 73 | LicenseCount=1 74 | LicenseCountCurrent=0 75 | LicenseType=10 76 | # Paid 77 | LicenseTypeAlpha=3 78 | # 2017-01-23T09:28:18.155Z 79 | Issued=1485163698 80 | # 2018-01-23T09:28:17.907Z 81 | UpdateValidThru=1516699697 82 | BillingSubscriptionId=18195538 83 | BillingSubscriptionMode=2 84 | BillingSubscriptionLength=N/A 85 | 86 | [Certificate1.Resource0] 87 | ResourceName=devices 88 | CurrentValue=0.0 89 | OriginalValue=1.0 90 | 91 | [Certificate1.Feature0] 92 | Feature=gf_srv 93 | Platform=null 94 | # 2018-01-23T09:28:17.907Z 95 | UpdateValidThru=1516699697 96 | 97 | 98 | [Certificate2] 99 | LicenseId=712f69e5-58b6-495f-bcca-58a627cfca82 100 | CorrelationIds=PUR_7B5683221C761FFE0C32D21B560C197D 101 | ProductName=Avast SecureLine for PC Trial AR - 1 user, 1 month 102 | LicensingSchemaId=avast-secureline-for-pc-trial-ar-1m-1s_1 103 | Feature=AV_VPN 104 | LicenseFamily=SecureLine 105 | LicenseCount=1 106 | LicenseCountCurrent=0 107 | LicenseType=4 108 | # Trial 109 | LicenseTypeAlpha=2 110 | # 2017-06-04T15:27:23.334Z 111 | Issued=1496590043 112 | # 2017-07-04T15:27:23.266Z 113 | UpdateValidThru=1499182043 114 | BillingSubscriptionId=20522122 115 | BillingSubscriptionMode=3 116 | BillingSubscriptionLength=N/A 117 | 118 | [Certificate2.Resource0] 119 | ResourceName=devices 120 | CurrentValue=0.0 121 | OriginalValue=1.0 122 | 123 | [Certificate2.Feature0] 124 | Feature=secureline 125 | Platform=windows 126 | # 2017-07-04T15:27:23.266Z 127 | UpdateValidThru=1499182043 128 | 129 | [Certificate2.Feature0.Resource0] 130 | ResourceName=secureline/secureline/windows/connections 131 | CurrentValue=0.0 132 | OriginalValue=1.0 133 | 134 | 135 | 136 | [Certificate3] 137 | LicenseId=8aca750c-e654-4ac4-bd64-1f89639505b7 138 | CorrelationIds=avast-free-1s1m1486289267711;avast-free-1s1y1488486804131;ald_1498895559521 139 | ProductName=Avast Free Antivirus - 1 seat, 1 year 140 | LicensingSchemaId=avast-free-1s1y_1s1y 141 | Feature=AV_FREE 142 | LicenseFamily=AvConsumer 143 | LicenseCount=1 144 | LicenseCountCurrent=0 145 | LicenseType=0 146 | # Free 147 | LicenseTypeAlpha=1 148 | # 2017-02-05T10:07:47.930Z 149 | Issued=1486289267 150 | # 2019-03-02T20:33:24.519Z 151 | UpdateValidThru=1551558804 152 | 153 | [Certificate3.Resource0] 154 | ResourceName=devices 155 | CurrentValue=0.0 156 | OriginalValue=1.0 157 | 158 | [Certificate3.Feature0] 159 | Feature=alc_cmp_core 160 | Platform=null 161 | # 2019-03-02T20:33:24.519Z 162 | UpdateValidThru=1551558804 163 | 164 | 165 | [Certificate4] 166 | LicenseId=cbac7bc2-a144-40e1-93d5-e46e0f8834d6 167 | CorrelationIds=avast-pro-antivirus-trial-1m-1s1504871534427 168 | ProductName=Avast Pro Antivirus Trial - 1 user, 1 month 169 | LicensingSchemaId=avast-pro-antivirus-trial-1m-1s_1 170 | Feature=AV_PRO 171 | LicenseFamily=AvConsumer 172 | LicenseCount=1 173 | LicenseCountCurrent=0 174 | LicenseType=4 175 | # Trial 176 | LicenseTypeAlpha=2 177 | # 2017-09-08T11:52:14.849Z 178 | Issued=1504871534 179 | # 2017-10-08T11:52:14.427Z 180 | UpdateValidThru=1507463534 181 | 182 | [Certificate4.Resource0] 183 | ResourceName=devices 184 | CurrentValue=0.0 185 | OriginalValue=1.0 186 | 187 | [Certificate4.Feature0] 188 | Feature=alc_cmp_secdns 189 | Platform=null 190 | # 2017-10-08T11:52:14.427Z 191 | UpdateValidThru=1507463534 192 | 193 | [Certificate4.Feature1] 194 | Feature=alc_cmp_snx 195 | Platform=null 196 | # 2017-10-08T11:52:14.427Z 197 | UpdateValidThru=1507463534 198 | 199 | [Certificate4.Feature2] 200 | Feature=alc_cmp_sfzone 201 | Platform=null 202 | # 2017-10-08T11:52:14.427Z 203 | UpdateValidThru=1507463534 204 | 205 | 206 | [Certificate5] 207 | LicenseId=84ed6997-2190-4574-a2be-1d28b84e2603 208 | CorrelationIds=PUR_FD32A95105423415927626F85B6CDA0E 209 | ProductName=Avast Cleanup - 1 user, 1 year 210 | LicensingSchemaId=avast-cleanup-1y-1s_1 211 | Feature=GF_SRV 212 | LicenseFamily=GrimeFighter 213 | LicenseCount=1 214 | LicenseCountCurrent=0 215 | LicenseType=0 216 | # Paid 217 | LicenseTypeAlpha=3 218 | # 2017-02-08T20:05:20.913Z 219 | Issued=1486584320 220 | # 2018-02-08T20:05:20.889Z 221 | UpdateValidThru=1518120320 222 | BillingSubscriptionId=0 223 | BillingSubscriptionMode=1 224 | BillingSubscriptionLength=N/A 225 | 226 | [Certificate5.Resource0] 227 | ResourceName=devices 228 | CurrentValue=0.0 229 | OriginalValue=1.0 230 | 231 | [Certificate5.Feature0] 232 | Feature=gf_srv 233 | Platform=null 234 | # 2018-02-08T20:05:20.889Z 235 | UpdateValidThru=1518120320 236 | 237 | 238 | [Certificate6] 239 | LicenseId=35dcdded-0c55-4bd4-a48b-fdb901d11d8b 240 | CorrelationIds=PUR_8E8CE1D98FE16E0476F7AC0ED05EE0C2 241 | ProductName=Avast Cleanup - 1 user, 1 year 242 | LicensingSchemaId=avast-cleanup-1y-1s_1 243 | Feature=GF_SRV 244 | LicenseFamily=GrimeFighter 245 | LicenseCount=1 246 | LicenseCountCurrent=0 247 | LicenseType=10 248 | # Paid 249 | LicenseTypeAlpha=3 250 | # 2017-07-10T05:20:41.832Z 251 | Issued=1499664041 252 | # 2018-07-10T05:20:41.703Z 253 | UpdateValidThru=1531200041 254 | BillingSubscriptionId=21422113 255 | BillingSubscriptionMode=2 256 | BillingSubscriptionLength=N/A 257 | 258 | [Certificate6.Resource0] 259 | ResourceName=devices 260 | CurrentValue=0.0 261 | OriginalValue=1.0 262 | 263 | [Certificate6.Feature0] 264 | Feature=gf_srv 265 | Platform=null 266 | # 2018-07-10T05:20:41.703Z 267 | UpdateValidThru=1531200041 268 | 269 | 270 | [Certificate7] 271 | LicenseId=9136b00d-bacc-4525-b9a9-c9b84f3573b2 272 | CorrelationIds=PUR_8199F8F7D635AA7CC3A1D13430CD4C32 273 | ProductName=Avast Cleanup - 1 user, 1 year 274 | LicensingSchemaId=avast-cleanup-1y-1s_1 275 | Feature=GF_SRV 276 | LicenseFamily=GrimeFighter 277 | LicenseCount=1 278 | LicenseCountCurrent=0 279 | LicenseType=0 280 | # Paid 281 | LicenseTypeAlpha=3 282 | # 2017-03-18T14:53:27.466Z 283 | Issued=1489848807 284 | # 2018-03-18T14:53:27.174Z 285 | UpdateValidThru=1521384807 286 | BillingSubscriptionId=0 287 | BillingSubscriptionMode=1 288 | BillingSubscriptionLength=N/A 289 | 290 | [Certificate7.Resource0] 291 | ResourceName=devices 292 | CurrentValue=0.0 293 | OriginalValue=1.0 294 | 295 | [Certificate7.Feature0] 296 | Feature=gf_srv 297 | Platform=null 298 | # 2018-03-18T14:53:27.174Z 299 | UpdateValidThru=1521384807 300 | 301 | 302 | [Certificate8] 303 | LicenseId=3ee2c8d9-7328-4c20-b726-fd5d17270d56 304 | CorrelationIds=avast-free-1s1m1488490803109 305 | ProductName=Avast Free Antivirus - 1 seat, 1 month 306 | LicensingSchemaId=avast-free-1s1m_1s1m 307 | Feature=AV_FREE 308 | LicenseFamily=AvConsumer 309 | LicenseCount=1 310 | LicenseCountCurrent=0 311 | LicenseType=4 312 | # Trial 313 | LicenseTypeAlpha=2 314 | # 2017-03-02T21:40:03.096Z 315 | Issued=1488490803 316 | # 2017-04-01T21:40:03.109Z 317 | UpdateValidThru=1491082803 318 | 319 | [Certificate8.Resource0] 320 | ResourceName=devices 321 | CurrentValue=0.0 322 | OriginalValue=1.0 323 | 324 | [Certificate8.Feature0] 325 | Feature=alc_cmp_core 326 | Platform=null 327 | # 2017-04-01T21:40:03.109Z 328 | UpdateValidThru=1491082803 329 | 330 | 331 | [Certificate9] 332 | LicenseId=684e5481-f48f-46b6-a019-9ef9c977f4e3 333 | CorrelationIds=PUR_65A3BBC0BA8FC3754974FAAD86FC0BF1 334 | ProductName=Avast SecureLine for PC Trial AR - 1 user, 1 month 335 | LicensingSchemaId=avast-secureline-for-pc-trial-ar-1m-1s_1 336 | Feature=AV_VPN 337 | LicenseFamily=SecureLine 338 | LicenseCount=1 339 | LicenseCountCurrent=0 340 | LicenseType=4 341 | # Trial 342 | LicenseTypeAlpha=2 343 | # 2017-01-01T13:58:44.113Z 344 | Issued=1483279124 345 | # 2017-02-01T13:58:43.766Z 346 | UpdateValidThru=1485957523 347 | BillingSubscriptionId=17828381 348 | BillingSubscriptionMode=3 349 | BillingSubscriptionLength=N/A 350 | 351 | [Certificate9.Resource0] 352 | ResourceName=devices 353 | CurrentValue=0.0 354 | OriginalValue=1.0 355 | 356 | [Certificate9.Feature0] 357 | Feature=secureline 358 | Platform=windows 359 | # 2017-02-01T13:58:43.766Z 360 | UpdateValidThru=1485957523 361 | 362 | [Certificate9.Feature0.Resource0] 363 | ResourceName=secureline/secureline/windows/connections 364 | CurrentValue=0.0 365 | OriginalValue=1.0 366 | 367 | 368 | 369 | [Certificate10] 370 | LicenseId=d760f95c-f178-448e-9885-736a6effa4af 371 | CorrelationIds=PUR_2B98853F92E9569D76E85D512FA95643;0560e474-1a54-4e52-a34a-a6dd80f55f44;793cd93b-c6e8-479d-b651-f598429726ef;avast-free-1s1y1484993659872;UPS_D8ADBD794C85EDDF0A6697BAB836D29A;UPN_99AB77965075DFC02846FC1C99EE2F02;fix_we_0b04b1fb-cd93-4af2-bec9-6dc2d4b38221;UPN_0CE13095772868887F8FBFC958AD37E9;UPN_59825E3E0985704542D4F0F460B379D0;UPS_82F40220351BD77074B3B7FD4B8E588A;UPN_6A2448BCDB7A26875AB41C14F2385744;UPN_BCAA5F2CFFC0638DECEA682BEA7CD604;UPN_0CACFF7F3881965A531CEAC7DA1EAF02;UPS_68736775C7DDFCF11316C248CEF54176;96a47a4d-e2ed-4ab3-856c-a69b86e2dd1d 372 | ProductName=Avast Premier Trial AR - 1 user, 2 months 373 | LicensingSchemaId=avast-premier-trial-ar-2m-1s_1 374 | Feature=AV_APR 375 | LicenseFamily=AvConsumer 376 | LicenseCount=1 377 | LicenseCountCurrent=0 378 | LicenseType=10 379 | # Paid 380 | LicenseTypeAlpha=3 381 | # 2016-05-11T12:49:10.097Z 382 | Issued=1462970950 383 | # 2026-07-05T10:25:32.356Z 384 | UpdateValidThru=1783247132 385 | BillingSubscriptionId=22525843 386 | BillingSubscriptionMode=2 387 | BillingSubscriptionLength=N/A 388 | 389 | [Certificate10.Resource0] 390 | ResourceName=devices 391 | CurrentValue=0.0 392 | OriginalValue=1.0 393 | 394 | [Certificate10.Feature0] 395 | Feature=alc_cmp_secdns 396 | Platform=null 397 | # 2026-07-05T10:25:32.356Z 398 | UpdateValidThru=1783247132 399 | 400 | [Certificate10.Feature1] 401 | Feature=alc_cmp_snx 402 | Platform=null 403 | # 2026-07-05T10:25:32.356Z 404 | UpdateValidThru=1783247132 405 | 406 | [Certificate10.Feature2] 407 | Feature=alc_cmp_sfzone 408 | Platform=null 409 | # 2026-07-05T10:25:32.356Z 410 | UpdateValidThru=1783247132 411 | 412 | [Certificate10.Feature3] 413 | Feature=alc_cmp_fw 414 | Platform=null 415 | # 2026-07-05T10:25:32.356Z 416 | UpdateValidThru=1783247132 417 | 418 | [Certificate10.Feature4] 419 | Feature=alc_shl_spm 420 | Platform=null 421 | # 2026-07-05T10:25:32.356Z 422 | UpdateValidThru=1783247132 423 | 424 | [Certificate10.Feature5] 425 | Feature=alc_cpm_shredder 426 | Platform=null 427 | # 2026-07-05T10:25:32.356Z 428 | UpdateValidThru=1783247132 429 | 430 | 431 | [Certificate11] 432 | LicenseId=261445bd-56cd-4100-b849-611826c862e8 433 | CorrelationIds=PUR_33A5BE68F0CD7EDEB02E4730E490E7FC;ARR_518988403 434 | ProductName=Avast SecureLine for PC Trial AR - 1 user, 1 month 435 | LicensingSchemaId=avast-secureline-for-pc-trial-ar-1m-1s_1 436 | Feature=AV_VPN 437 | LicenseFamily=SecureLine 438 | LicenseCount=1 439 | LicenseCountCurrent=0 440 | LicenseType=0 441 | # Paid 442 | LicenseTypeAlpha=3 443 | # 2017-03-17T20:00:29.477Z 444 | Issued=1489780829 445 | # 2017-04-17T20:00:29.413Z 446 | UpdateValidThru=1492459229 447 | BillingSubscriptionId=19105359 448 | BillingSubscriptionMode=3 449 | BillingSubscriptionLength=N/A 450 | 451 | [Certificate11.Resource0] 452 | ResourceName=devices 453 | CurrentValue=0.0 454 | OriginalValue=1.0 455 | 456 | [Certificate11.Feature0] 457 | Feature=secureline 458 | Platform=windows 459 | # 2017-04-17T20:00:29.413Z 460 | UpdateValidThru=1492459229 461 | 462 | [Certificate11.Feature0.Resource0] 463 | ResourceName=secureline/secureline/windows/connections 464 | CurrentValue=0.0 465 | OriginalValue=1.0 466 | 467 | 468 | 469 | [Certificate12] 470 | LicenseId=053b9b99-d358-4126-bfa9-6efe4f83e6b3 471 | CorrelationIds=PUR_435B4529E80EC024362FAA0818C8289B;SR_CXT-21508067662 472 | ProductName=Avast SecureLine for PC - 1 user, 1 year 473 | LicensingSchemaId=avast-secureline-for-pc-1y-1s_1 474 | Feature=AV_VPN 475 | LicenseFamily=SecureLine 476 | LicenseCount=1 477 | LicenseCountCurrent=0 478 | LicenseType=0 479 | # Paid 480 | LicenseTypeAlpha=3 481 | # 2016-12-19T01:25:31.932Z 482 | Issued=1482110731 483 | # 2018-01-22T22:36:00.677Z 484 | UpdateValidThru=1516660560 485 | BillingSubscriptionId=17633058 486 | BillingSubscriptionMode=3 487 | BillingSubscriptionLength=N/A 488 | 489 | [Certificate12.Resource0] 490 | ResourceName=devices 491 | CurrentValue=0.0 492 | OriginalValue=1.0 493 | 494 | [Certificate12.Feature0] 495 | Feature=secureline 496 | Platform=windows 497 | # 2018-01-22T22:36:00.677Z 498 | UpdateValidThru=1516660560 499 | 500 | [Certificate12.Feature0.Resource0] 501 | ResourceName=secureline/secureline/windows/connections 502 | CurrentValue=0.0 503 | OriginalValue=1.0 504 | 505 | 506 | 507 | [Certificate13] 508 | LicenseId=216e1836-1c3f-477b-afdf-f54f6db7166c 509 | CorrelationIds=PUR_585BF1E36153319FD55EFE09DB46F054 510 | ProductName=Avast Cleanup - 1 user, 1 year 511 | LicensingSchemaId=avast-cleanup-1y-1s_1 512 | Feature=GF_SRV 513 | LicenseFamily=GrimeFighter 514 | LicenseCount=1 515 | LicenseCountCurrent=0 516 | LicenseType=0 517 | # Paid 518 | LicenseTypeAlpha=3 519 | # 2016-12-23T11:58:59.232Z 520 | Issued=1482494339 521 | # 2017-12-23T11:58:57.835Z 522 | UpdateValidThru=1514030337 523 | BillingSubscriptionId=0 524 | BillingSubscriptionMode=1 525 | BillingSubscriptionLength=N/A 526 | 527 | [Certificate13.Resource0] 528 | ResourceName=devices 529 | CurrentValue=0.0 530 | OriginalValue=1.0 531 | 532 | [Certificate13.Feature0] 533 | Feature=gf_srv 534 | Platform=null 535 | # 2017-12-23T11:58:57.835Z 536 | UpdateValidThru=1514030337 537 | 538 | 539 | [Certificate14] 540 | LicenseId=41b1f5ca-76dc-4c94-9f3d-d236ddb3bdda 541 | CorrelationIds=PUR_37196C3050B30ED3F6E740646C1CC0DE;UPN_5CE3084D40F6DBADB7F103B56D79838D 542 | ProductName=Avast SecureLine for PC Trial AR - 1 user, 1 month 543 | LicensingSchemaId=avast-secureline-for-pc-trial-ar-1m-1s_1 544 | Feature=AV_VPN 545 | LicenseFamily=SecureLine 546 | LicenseCount=1 547 | LicenseCountCurrent=0 548 | LicenseType=4 549 | # Trial 550 | LicenseTypeAlpha=2 551 | # 2017-04-28T15:26:54.411Z 552 | Issued=1493393214 553 | # 2017-07-09T03:00:57.079Z 554 | UpdateValidThru=1499569257 555 | BillingSubscriptionId=20605473 556 | BillingSubscriptionMode=3 557 | BillingSubscriptionLength=N/A 558 | 559 | [Certificate14.Resource0] 560 | ResourceName=devices 561 | CurrentValue=0.0 562 | OriginalValue=1.0 563 | 564 | [Certificate14.Feature0] 565 | Feature=secureline 566 | Platform=windows 567 | # 2017-07-09T03:00:57.079Z 568 | UpdateValidThru=1499569257 569 | 570 | [Certificate14.Feature0.Resource0] 571 | ResourceName=secureline/secureline/windows/connections 572 | CurrentValue=0.0 573 | OriginalValue=1.0 574 | 575 | 576 | 577 | [Certificate15] 578 | LicenseId=f42dea91-135b-4ae9-95e6-9a82f7fac766 579 | CorrelationIds=avast-premier-trial-1s1m1491520438237 580 | ProductName=Avast Premier Trial - 1 seat, 1 month 581 | LicensingSchemaId=avast-premier-trial-1s1m_1s1m 582 | Feature=AV_APR 583 | LicenseFamily=AvConsumer 584 | LicenseCount=1 585 | LicenseCountCurrent=0 586 | LicenseType=4 587 | # Trial 588 | LicenseTypeAlpha=2 589 | # 2017-04-06T23:13:58.287Z 590 | Issued=1491520438 591 | # 2017-05-06T23:13:58.237Z 592 | UpdateValidThru=1494112438 593 | 594 | [Certificate15.Resource0] 595 | ResourceName=devices 596 | CurrentValue=0.0 597 | OriginalValue=1.0 598 | 599 | [Certificate15.Feature0] 600 | Feature=alc_cmp_secdns 601 | Platform=null 602 | # 2017-05-06T23:13:58.237Z 603 | UpdateValidThru=1494112438 604 | 605 | [Certificate15.Feature1] 606 | Feature=alc_cmp_snx 607 | Platform=null 608 | # 2017-05-06T23:13:58.237Z 609 | UpdateValidThru=1494112438 610 | 611 | [Certificate15.Feature2] 612 | Feature=alc_cmp_sfzone 613 | Platform=null 614 | # 2017-05-06T23:13:58.237Z 615 | UpdateValidThru=1494112438 616 | 617 | [Certificate15.Feature3] 618 | Feature=alc_cmp_fw 619 | Platform=null 620 | # 2017-05-06T23:13:58.237Z 621 | UpdateValidThru=1494112438 622 | 623 | [Certificate15.Feature4] 624 | Feature=alc_shl_spm 625 | Platform=null 626 | # 2017-05-06T23:13:58.237Z 627 | UpdateValidThru=1494112438 628 | 629 | [Certificate15.Feature5] 630 | Feature=alc_cpm_shredder 631 | Platform=null 632 | # 2017-05-06T23:13:58.237Z 633 | UpdateValidThru=1494112438 634 | 635 | 636 | [Certificate16] 637 | LicenseId=7c7020b4-c6da-4f9a-9e2c-ef0fb730f977 638 | CorrelationIds=PUR_39F70A2396A0F3927F2998B5722BC7A5 639 | ProductName=Avast Cleanup - 1 user, 2 years 640 | LicensingSchemaId=avast-cleanup-2y-1s_1 641 | Feature=GF_SRV 642 | LicenseFamily=GrimeFighter 643 | LicenseCount=1 644 | LicenseCountCurrent=0 645 | LicenseType=0 646 | # Paid 647 | LicenseTypeAlpha=3 648 | # 2017-01-31T16:19:21.073Z 649 | Issued=1485879561 650 | # 2019-01-31T16:19:20.995Z 651 | UpdateValidThru=1548951560 652 | BillingSubscriptionId=0 653 | BillingSubscriptionMode=1 654 | BillingSubscriptionLength=N/A 655 | 656 | [Certificate16.Resource0] 657 | ResourceName=devices 658 | CurrentValue=0.0 659 | OriginalValue=1.0 660 | 661 | [Certificate16.Feature0] 662 | Feature=gf_srv 663 | Platform=null 664 | # 2019-01-31T16:19:20.995Z 665 | UpdateValidThru=1548951560 666 | 667 | 668 | [Certificate17] 669 | LicenseId=01019881-4344-49dd-838c-406adf182950 670 | CorrelationIds=PUR_FC793562CF31FFC82B3F345BA1B82084 671 | ProductName=Avast Passwords - 1 user, 2 years 672 | LicensingSchemaId=avast-passwords-2y-1s_1 673 | Feature=AV_PSW 674 | LicenseFamily=PasswordManager 675 | LicenseCount=1 676 | LicenseCountCurrent=0 677 | LicenseType=10 678 | # Paid 679 | LicenseTypeAlpha=3 680 | # 2016-12-19T20:59:54.797Z 681 | Issued=1482181194 682 | # 2018-12-19T20:59:54.016Z 683 | UpdateValidThru=1545253194 684 | BillingSubscriptionId=17645250 685 | BillingSubscriptionMode=2 686 | BillingSubscriptionLength=N/A 687 | 688 | [Certificate17.Resource0] 689 | ResourceName=devices 690 | CurrentValue=0.0 691 | OriginalValue=1.0 692 | 693 | [Certificate17.Feature0] 694 | Feature=av_psw 695 | Platform=null 696 | # 2018-12-19T20:59:54.016Z 697 | UpdateValidThru=1545253194 698 | 699 | 700 | 701 | [Signature] 702 | Signature=ASWSig2A8817D393ABA97063FCDCE4569F746F075799298D551D8B75E2AB48590180383BA2BDBF8E0D89C665E96804DCA92AD9C081E540FBC8D773FF9BE05A53A507FA00ASWSig2A -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2033.06.29.avastlic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/2033.06.29.avastlic -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2038.01.10.avastlic: -------------------------------------------------------------------------------- 1 | [Certificates] 2 | WalletKeys=MRT7LY-S4AVX2-4K4536 3 | CustomerName=Nitheesh Krishna 4 | CustomerCompany= 5 | CertificateCount=15 6 | 7 | [Certificate0] 8 | LicenseId=d1bcb5bd-8c62-4570-953b-b47bd992f33b 9 | CorrelationIds=avast-internet-sec-trial-1m-1s1501945777208 10 | ProductName=Avast Internet Security Trial - 1 user, 1 month 11 | LicensingSchemaId=avast-internet-sec-trial-1m-1s_1 12 | Feature=AV_AIS 13 | LicenseFamily=AvConsumer 14 | LicenseCount=1 15 | LicenseCountCurrent=0 16 | LicenseType=4 17 | # Trial 18 | LicenseTypeAlpha=2 19 | # 2017-08-05T15:09:37.343Z 20 | Issued=1501945777 21 | # 2017-09-04T15:09:37.208Z 22 | UpdateValidThru=1504537777 23 | 24 | [Certificate0.Resource0] 25 | ResourceName=devices 26 | CurrentValue=0.0 27 | OriginalValue=1.0 28 | 29 | [Certificate0.Feature0] 30 | Feature=alc_cmp_secdns 31 | Platform=null 32 | # 2017-09-04T15:09:37.208Z 33 | UpdateValidThru=1504537777 34 | 35 | [Certificate0.Feature1] 36 | Feature=alc_cmp_snx 37 | Platform=null 38 | # 2017-09-04T15:09:37.208Z 39 | UpdateValidThru=1504537777 40 | 41 | [Certificate0.Feature2] 42 | Feature=alc_cmp_sfzone 43 | Platform=null 44 | # 2017-09-04T15:09:37.208Z 45 | UpdateValidThru=1504537777 46 | 47 | [Certificate0.Feature3] 48 | Feature=alc_cmp_fw 49 | Platform=null 50 | # 2017-09-04T15:09:37.208Z 51 | UpdateValidThru=1504537777 52 | 53 | [Certificate0.Feature4] 54 | Feature=alc_shl_spm 55 | Platform=null 56 | # 2017-09-04T15:09:37.208Z 57 | UpdateValidThru=1504537777 58 | 59 | 60 | [Certificate1] 61 | LicenseId=301dfc60-8641-40f1-80cd-5a3542424a0b 62 | CorrelationIds=mig_cb8d55b3-8473-4812-b1d6-0da64dd165da;mig_5e3f4673-ce30-4460-9e6d-587b200b4480;mig_9bc76c30-271f-414c-8503-02d977dd0484;mig_2dede7d1-b082-43ee-82c5-41bf2653f7a8;mig_b3ed8674-beb3-4d2c-9e6b-8d41a3a727e4;mig_f74ac190-b60e-4462-bb82-838faf87fa8e;mig_c86e2eff-1da7-4efd-a0ce-8ef897ee3161;UPN_363E0B98C454153E6E87586F0914B1AA;UPN_12DFC465CD9B8EC7264B570B2475A518;UPN_9EF72D59F128F5ACA77033CF3A42CE5F;UPN_36C87824267B734A75F3B63845C368AE;UPN_DD67947643105A05A67D794F30448CEF;UPN_AFB91990227728A93AB50F059FD376C1;UPN_E38751C1C797EBE107556AFA016289B0;UPN_853F51A25CB2FDFDFD30A7FF3DE7AAE2 63 | ProductName=Avast Premier - 1 user, 1 year 64 | LicensingSchemaId=avast-premier-1y-1s_1 65 | Feature=AV_APR 66 | LicenseFamily=AvConsumer 67 | LicenseCount=1 68 | LicenseCountCurrent=0 69 | LicenseType=0 70 | # Paid 71 | LicenseTypeAlpha=3 72 | # 2017-02-23T14:58:25.492Z 73 | Issued=1487861905 74 | # 2038-01-09T19:39:49.267Z 75 | UpdateValidThru=2146678789 76 | BillingSubscriptionId=0 77 | BillingSubscriptionMode=1 78 | BillingSubscriptionLength=N/A 79 | 80 | [Certificate1.Resource0] 81 | ResourceName=devices 82 | CurrentValue=0.0 83 | OriginalValue=1.0 84 | 85 | [Certificate1.Feature0] 86 | Feature=alc_cmp_secdns 87 | Platform=null 88 | # 2038-01-09T19:39:49.267Z 89 | UpdateValidThru=2146678789 90 | 91 | [Certificate1.Feature1] 92 | Feature=alc_cmp_snx 93 | Platform=null 94 | # 2038-01-09T19:39:49.267Z 95 | UpdateValidThru=2146678789 96 | 97 | [Certificate1.Feature2] 98 | Feature=alc_cmp_sfzone 99 | Platform=null 100 | # 2038-01-09T19:39:49.267Z 101 | UpdateValidThru=2146678789 102 | 103 | [Certificate1.Feature3] 104 | Feature=alc_cmp_fw 105 | Platform=null 106 | # 2038-01-09T19:39:49.267Z 107 | UpdateValidThru=2146678789 108 | 109 | [Certificate1.Feature4] 110 | Feature=alc_shl_spm 111 | Platform=null 112 | # 2038-01-09T19:39:49.267Z 113 | UpdateValidThru=2146678789 114 | 115 | [Certificate1.Feature5] 116 | Feature=alc_cpm_shredder 117 | Platform=null 118 | # 2038-01-09T19:39:49.267Z 119 | UpdateValidThru=2146678789 120 | 121 | 122 | [Certificate2] 123 | LicenseId=395a03bb-5e1e-455f-8161-8a8cc43b6fed 124 | CorrelationIds=avast-premier-trial-1s1m1489842992687 125 | ProductName=Avast Premier Trial - 1 seat, 1 month 126 | LicensingSchemaId=avast-premier-trial-1s1m_1s1m 127 | Feature=AV_APR 128 | LicenseFamily=AvConsumer 129 | LicenseCount=1 130 | LicenseCountCurrent=0 131 | LicenseType=4 132 | # Trial 133 | LicenseTypeAlpha=2 134 | # 2017-03-18T13:16:32.777Z 135 | Issued=1489842992 136 | # 2017-04-17T13:16:32.687Z 137 | UpdateValidThru=1492434992 138 | 139 | [Certificate2.Resource0] 140 | ResourceName=devices 141 | CurrentValue=0.0 142 | OriginalValue=1.0 143 | 144 | [Certificate2.Feature0] 145 | Feature=alc_cmp_secdns 146 | Platform=null 147 | # 2017-04-17T13:16:32.687Z 148 | UpdateValidThru=1492434992 149 | 150 | [Certificate2.Feature1] 151 | Feature=alc_cmp_snx 152 | Platform=null 153 | # 2017-04-17T13:16:32.687Z 154 | UpdateValidThru=1492434992 155 | 156 | [Certificate2.Feature2] 157 | Feature=alc_cmp_sfzone 158 | Platform=null 159 | # 2017-04-17T13:16:32.687Z 160 | UpdateValidThru=1492434992 161 | 162 | [Certificate2.Feature3] 163 | Feature=alc_cmp_fw 164 | Platform=null 165 | # 2017-04-17T13:16:32.687Z 166 | UpdateValidThru=1492434992 167 | 168 | [Certificate2.Feature4] 169 | Feature=alc_shl_spm 170 | Platform=null 171 | # 2017-04-17T13:16:32.687Z 172 | UpdateValidThru=1492434992 173 | 174 | [Certificate2.Feature5] 175 | Feature=alc_cpm_shredder 176 | Platform=null 177 | # 2017-04-17T13:16:32.687Z 178 | UpdateValidThru=1492434992 179 | 180 | 181 | [Certificate3] 182 | LicenseId=2b69ed89-cc72-4cab-8eb9-3b47286e71c7 183 | CorrelationIds=PUR_E6F8C4E91FFAC5585027F3F8F9517C66 184 | ProductName=Avast Cleanup - 1 user, 1 year 185 | LicensingSchemaId=avast-cleanup-1y-1s_1 186 | Feature=GF_SRV 187 | LicenseFamily=GrimeFighter 188 | LicenseCount=1 189 | LicenseCountCurrent=0 190 | LicenseType=10 191 | # Paid 192 | LicenseTypeAlpha=3 193 | # 2017-02-23T23:25:45.962Z 194 | Issued=1487892345 195 | # 2018-02-23T23:25:44.946Z 196 | UpdateValidThru=1519428344 197 | BillingSubscriptionId=18725249 198 | BillingSubscriptionMode=2 199 | BillingSubscriptionLength=N/A 200 | 201 | [Certificate3.Resource0] 202 | ResourceName=devices 203 | CurrentValue=0.0 204 | OriginalValue=1.0 205 | 206 | [Certificate3.Feature0] 207 | Feature=gf_srv 208 | Platform=null 209 | # 2018-02-23T23:25:44.946Z 210 | UpdateValidThru=1519428344 211 | 212 | 213 | [Certificate4] 214 | LicenseId=3d462c6b-d0e2-4450-af06-ed086515abcf 215 | CorrelationIds=avast-free-1s1m1489348796620;avast-free-1s1y1489348867761;ald_1498724851824 216 | ProductName=Avast Free Antivirus - 1 seat, 1 year 217 | LicensingSchemaId=avast-free-1s1y_1s1y 218 | Feature=AV_FREE 219 | LicenseFamily=AvConsumer 220 | LicenseCount=1 221 | LicenseCountCurrent=0 222 | LicenseType=0 223 | # Free 224 | LicenseTypeAlpha=1 225 | # 2017-03-12T19:59:56.690Z 226 | Issued=1489348796 227 | # 2019-03-12T20:01:07.820Z 228 | UpdateValidThru=1552420867 229 | 230 | [Certificate4.Resource0] 231 | ResourceName=devices 232 | CurrentValue=0.0 233 | OriginalValue=1.0 234 | 235 | [Certificate4.Feature0] 236 | Feature=alc_cmp_core 237 | Platform=null 238 | # 2019-03-12T20:01:07.820Z 239 | UpdateValidThru=1552420867 240 | 241 | 242 | [Certificate5] 243 | LicenseId=95592adc-ecc5-4fdc-9b1c-54a49e5e758d 244 | CorrelationIds=PUR_157083F1D0ADA396B5C4BED13AA317AF 245 | ProductName=Avast SecureLine for PC - 1 user, 1 year 246 | LicensingSchemaId=avast-secureline-for-pc-1y-1s_1 247 | Feature=AV_VPN 248 | LicenseFamily=SecureLine 249 | LicenseCount=1 250 | LicenseCountCurrent=0 251 | LicenseType=0 252 | # Paid 253 | LicenseTypeAlpha=3 254 | # 2017-02-24T00:05:55.631Z 255 | Issued=1487894755 256 | # 2018-02-24T00:05:55.618Z 257 | UpdateValidThru=1519430755 258 | BillingSubscriptionId=18725770 259 | BillingSubscriptionMode=3 260 | BillingSubscriptionLength=N/A 261 | 262 | [Certificate5.Resource0] 263 | ResourceName=devices 264 | CurrentValue=0.0 265 | OriginalValue=1.0 266 | 267 | [Certificate5.Feature0] 268 | Feature=secureline 269 | Platform=windows 270 | # 2018-02-24T00:05:55.618Z 271 | UpdateValidThru=1519430755 272 | 273 | [Certificate5.Feature0.Resource0] 274 | ResourceName=secureline/secureline/windows/connections 275 | CurrentValue=0.0 276 | OriginalValue=1.0 277 | 278 | 279 | 280 | [Certificate6] 281 | LicenseId=c4affa8b-26e8-4e14-b5a9-01c6e53f2138 282 | CorrelationIds=PUR_FAC4851A7F3F7C55EFB1FC0D2EF879FA 283 | ProductName=Avast Cleanup - 1 user, 1 year 284 | LicensingSchemaId=avast-cleanup-1y-1s_1 285 | Feature=GF_SRV 286 | LicenseFamily=GrimeFighter 287 | LicenseCount=1 288 | LicenseCountCurrent=0 289 | LicenseType=0 290 | # Paid 291 | LicenseTypeAlpha=3 292 | # 2017-02-24T18:07:05.386Z 293 | Issued=1487959625 294 | # 2018-02-24T18:07:05.405Z 295 | UpdateValidThru=1519495625 296 | BillingSubscriptionId=0 297 | BillingSubscriptionMode=1 298 | BillingSubscriptionLength=N/A 299 | 300 | [Certificate6.Resource0] 301 | ResourceName=devices 302 | CurrentValue=0.0 303 | OriginalValue=1.0 304 | 305 | [Certificate6.Feature0] 306 | Feature=gf_srv 307 | Platform=null 308 | # 2018-02-24T18:07:05.405Z 309 | UpdateValidThru=1519495625 310 | 311 | 312 | [Certificate7] 313 | LicenseId=0a72ac0d-2cd2-42d2-beab-69517d0c5284 314 | CorrelationIds=avast-premier-trial-1s1m1500346526388 315 | ProductName=Avast Premier Trial - 1 seat, 1 month 316 | LicensingSchemaId=avast-premier-trial-1s1m_1s1m 317 | Feature=AV_APR 318 | LicenseFamily=AvConsumer 319 | LicenseCount=1 320 | LicenseCountCurrent=0 321 | LicenseType=4 322 | # Trial 323 | LicenseTypeAlpha=2 324 | # 2017-07-18T02:55:26.403Z 325 | Issued=1500346526 326 | # 2017-08-17T02:55:26.388Z 327 | UpdateValidThru=1502938526 328 | 329 | [Certificate7.Resource0] 330 | ResourceName=devices 331 | CurrentValue=0.0 332 | OriginalValue=1.0 333 | 334 | [Certificate7.Feature0] 335 | Feature=alc_cmp_secdns 336 | Platform=null 337 | # 2017-08-17T02:55:26.388Z 338 | UpdateValidThru=1502938526 339 | 340 | [Certificate7.Feature1] 341 | Feature=alc_cmp_snx 342 | Platform=null 343 | # 2017-08-17T02:55:26.388Z 344 | UpdateValidThru=1502938526 345 | 346 | [Certificate7.Feature2] 347 | Feature=alc_cmp_sfzone 348 | Platform=null 349 | # 2017-08-17T02:55:26.388Z 350 | UpdateValidThru=1502938526 351 | 352 | [Certificate7.Feature3] 353 | Feature=alc_cmp_fw 354 | Platform=null 355 | # 2017-08-17T02:55:26.388Z 356 | UpdateValidThru=1502938526 357 | 358 | [Certificate7.Feature4] 359 | Feature=alc_shl_spm 360 | Platform=null 361 | # 2017-08-17T02:55:26.388Z 362 | UpdateValidThru=1502938526 363 | 364 | [Certificate7.Feature5] 365 | Feature=alc_cpm_shredder 366 | Platform=null 367 | # 2017-08-17T02:55:26.388Z 368 | UpdateValidThru=1502938526 369 | 370 | 371 | [Certificate8] 372 | LicenseId=41c5da40-64df-4600-9686-ed4ff02f2861 373 | CorrelationIds=avast-pro-antivirus-trial-1m-1s1496523583104 374 | ProductName=Avast Pro Antivirus Trial - 1 user, 1 month 375 | LicensingSchemaId=avast-pro-antivirus-trial-1m-1s_1 376 | Feature=AV_PRO 377 | LicenseFamily=AvConsumer 378 | LicenseCount=1 379 | LicenseCountCurrent=0 380 | LicenseType=4 381 | # Trial 382 | LicenseTypeAlpha=2 383 | # 2017-06-03T20:59:43.185Z 384 | Issued=1496523583 385 | # 2017-07-03T20:59:43.104Z 386 | UpdateValidThru=1499115583 387 | 388 | [Certificate8.Resource0] 389 | ResourceName=devices 390 | CurrentValue=0.0 391 | OriginalValue=1.0 392 | 393 | [Certificate8.Feature0] 394 | Feature=alc_cmp_secdns 395 | Platform=null 396 | # 2017-07-03T20:59:43.104Z 397 | UpdateValidThru=1499115583 398 | 399 | [Certificate8.Feature1] 400 | Feature=alc_cmp_snx 401 | Platform=null 402 | # 2017-07-03T20:59:43.104Z 403 | UpdateValidThru=1499115583 404 | 405 | [Certificate8.Feature2] 406 | Feature=alc_cmp_sfzone 407 | Platform=null 408 | # 2017-07-03T20:59:43.104Z 409 | UpdateValidThru=1499115583 410 | 411 | 412 | [Certificate9] 413 | LicenseId=4d68a47a-bcd7-4278-a425-873b8e9ef845 414 | CorrelationIds=PUR_139D52FAC6D5A778896E9AC953850C7C 415 | ProductName=Avast Cleanup - 1 user, 1 year 416 | LicensingSchemaId=avast-cleanup-1y-1s_1 417 | Feature=GF_SRV 418 | LicenseFamily=GrimeFighter 419 | LicenseCount=1 420 | LicenseCountCurrent=0 421 | LicenseType=10 422 | # Paid 423 | LicenseTypeAlpha=3 424 | # 2017-02-23T17:04:12.095Z 425 | Issued=1487869452 426 | # 2018-02-23T17:04:12.030Z 427 | UpdateValidThru=1519405452 428 | BillingSubscriptionId=18720320 429 | BillingSubscriptionMode=2 430 | BillingSubscriptionLength=N/A 431 | 432 | [Certificate9.Resource0] 433 | ResourceName=devices 434 | CurrentValue=0.0 435 | OriginalValue=1.0 436 | 437 | [Certificate9.Feature0] 438 | Feature=gf_srv 439 | Platform=null 440 | # 2018-02-23T17:04:12.030Z 441 | UpdateValidThru=1519405452 442 | 443 | 444 | [Certificate10] 445 | LicenseId=56e9580a-8289-40d4-8e01-bca5aeff45e8 446 | CorrelationIds=PUR_CED08D1898D9CA72150BA0B136AC7363 447 | ProductName=Avast Cleanup - 1 user, 3 years 448 | LicensingSchemaId=avast-cleanup-3y-1s_1 449 | Feature=GF_SRV 450 | LicenseFamily=GrimeFighter 451 | LicenseCount=1 452 | LicenseCountCurrent=0 453 | LicenseType=0 454 | # Paid 455 | LicenseTypeAlpha=3 456 | # 2017-02-25T00:51:27.617Z 457 | Issued=1487983887 458 | # 2020-02-25T00:51:27.616Z 459 | UpdateValidThru=1582591887 460 | BillingSubscriptionId=18741766 461 | BillingSubscriptionMode=3 462 | BillingSubscriptionLength=N/A 463 | 464 | [Certificate10.Resource0] 465 | ResourceName=devices 466 | CurrentValue=0.0 467 | OriginalValue=1.0 468 | 469 | [Certificate10.Feature0] 470 | Feature=gf_srv 471 | Platform=null 472 | # 2020-02-25T00:51:27.616Z 473 | UpdateValidThru=1582591887 474 | 475 | 476 | [Certificate11] 477 | LicenseId=408ac94e-fe78-475b-85b0-18008f6adc9c 478 | CorrelationIds=PUR_8A37008AF731072B27ED939EE95CAB6B 479 | ProductName=Avast Cleanup - 1 user, 1 year 480 | LicensingSchemaId=avast-cleanup-1y-1s_1 481 | Feature=GF_SRV 482 | LicenseFamily=GrimeFighter 483 | LicenseCount=2 484 | LicenseCountCurrent=0 485 | LicenseType=0 486 | # Paid 487 | LicenseTypeAlpha=3 488 | # 2017-02-24T10:58:39.046Z 489 | Issued=1487933919 490 | # 2018-02-24T10:58:39.024Z 491 | UpdateValidThru=1519469919 492 | BillingSubscriptionId=0 493 | BillingSubscriptionMode=1 494 | BillingSubscriptionLength=N/A 495 | 496 | [Certificate11.Resource0] 497 | ResourceName=devices 498 | CurrentValue=0.0 499 | OriginalValue=2.0 500 | 501 | [Certificate11.Feature0] 502 | Feature=gf_srv 503 | Platform=null 504 | # 2018-02-24T10:58:39.024Z 505 | UpdateValidThru=1519469919 506 | 507 | 508 | [Certificate12] 509 | LicenseId=6edee645-9fa2-4305-838e-1c112f14730e 510 | CorrelationIds=avast-free-1s1m1489659216089 511 | ProductName=Avast Free Antivirus - 1 seat, 1 month 512 | LicensingSchemaId=avast-free-1s1m_1s1m 513 | Feature=AV_FREE 514 | LicenseFamily=AvConsumer 515 | LicenseCount=1 516 | LicenseCountCurrent=0 517 | LicenseType=4 518 | # Trial 519 | LicenseTypeAlpha=2 520 | # 2017-03-16T10:13:36.126Z 521 | Issued=1489659216 522 | # 2017-04-15T10:13:36.089Z 523 | UpdateValidThru=1492251216 524 | 525 | [Certificate12.Resource0] 526 | ResourceName=devices 527 | CurrentValue=0.0 528 | OriginalValue=1.0 529 | 530 | [Certificate12.Feature0] 531 | Feature=alc_cmp_core 532 | Platform=null 533 | # 2017-04-15T10:13:36.089Z 534 | UpdateValidThru=1492251216 535 | 536 | 537 | [Certificate13] 538 | LicenseId=2b4a9c00-903a-40f0-9f6e-e3bd6608f235 539 | CorrelationIds=PUR_418EA5790B4212BCAF5C8CE8442C67A1 540 | ProductName=Avast Passwords - 1 user, 3 years 541 | LicensingSchemaId=avast-passwords-3y-1s_1 542 | Feature=AV_PSW 543 | LicenseFamily=PasswordManager 544 | LicenseCount=1 545 | LicenseCountCurrent=0 546 | LicenseType=10 547 | # Paid 548 | LicenseTypeAlpha=3 549 | # 2017-02-25T16:00:21.848Z 550 | Issued=1488038421 551 | # 2020-02-25T16:00:21.742Z 552 | UpdateValidThru=1582646421 553 | BillingSubscriptionId=18751515 554 | BillingSubscriptionMode=2 555 | BillingSubscriptionLength=N/A 556 | 557 | [Certificate13.Resource0] 558 | ResourceName=devices 559 | CurrentValue=0.0 560 | OriginalValue=1.0 561 | 562 | [Certificate13.Feature0] 563 | Feature=av_psw 564 | Platform=null 565 | # 2020-02-25T16:00:21.742Z 566 | UpdateValidThru=1582646421 567 | 568 | 569 | [Certificate14] 570 | LicenseId=17dec3ce-33be-45e9-896f-c0189cf93b3d 571 | CorrelationIds=gpa.3328-2168-7042-4142915043087868751503092010692 572 | ProductName=Avast SecureLine for Android Trial - 1 user, 14 days 573 | LicensingSchemaId=avast-secureline-for-android-trial-14d-1s_1 574 | Feature=AV_VPN_ANDROID 575 | LicenseFamily=SecureLine 576 | LicenseCount=1 577 | LicenseCountCurrent=0 578 | LicenseType=4 579 | # Trial 580 | LicenseTypeAlpha=2 581 | # 2017-08-18T21:33:30.748Z 582 | Issued=1503092010 583 | # 2017-09-01T23:33:06.875Z 584 | UpdateValidThru=1504308786 585 | 586 | [Certificate14.Feature0] 587 | Feature=secureline 588 | Platform=android 589 | # 2017-09-01T23:33:06.875Z 590 | UpdateValidThru=1504308786 591 | 592 | [Certificate14.Feature0.Resource0] 593 | ResourceName=secureline/secureline/android/connections 594 | CurrentValue=0.0 595 | OriginalValue=5.0 596 | 597 | [Certificate14.Feature0.Resource1] 598 | ResourceName=secureline/secureline/android/time 599 | CurrentValue=0.0 600 | OriginalValue=1.503092010836E12 601 | 602 | 603 | 604 | 605 | [Signature] 606 | Signature=ASWSig2A1941D058F85BF62469C036162C585AE054C62B371537F48C0B35BF057EABC256C08E83A71E2A772153A41F4B4D2BC4FF9F1B8F6BAC578DFEF45F5002321F2824ASWSig2A -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/207787.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/207787.ico -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/2099.09.22.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/2099.09.22.key -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/32-bits Masquer OneDrive dans l'Explorateur.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 4 | "System.IsPinnedToNameSpaceTree"=dword:00000000 -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/64-bits Masquer OneDrive dans l'Explorateur.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 4 | "System.IsPinnedToNameSpaceTree"=dword:00000000 5 | 6 | [HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 7 | "System.IsPinnedToNameSpaceTree"=dword:00000000 -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/ActiveOffice.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/ActiveOffice.bat -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Add_Copy-Move_To_Folder_to_context_menu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Created by: Shawn Brink 4 | ; http://www.tenforums.com 5 | ; Tutorial: http://www.tenforums.com/tutorials/29141-copy-folder-move-folder-context-menu-add-windows-10-a.html 6 | 7 | 8 | ; Copy To folder 9 | [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C2FBB630-2971-11D1-A18C-00C04FD75D13}] 10 | 11 | ; Move To folder 12 | [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C2FBB631-2971-11D1-A18C-00C04FD75D13}] -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Adresse Mac.vbs: -------------------------------------------------------------------------------- 1 | On error resume next 2 | set IPConfigSet = GetObject("winmgmts:{impersonationLevel=impersonate}!//" & Computer).ExecQuery _ 3 | ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled=TRUE") 4 | If Err.Number<>0 Then 5 | wscript.echo " - non accessible -" 6 | Else 7 | for each IPConfig in IPConfigSet 8 | wscript.echo IPConfig.MACAddress 9 | Next 10 | End If -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Avast Premier 24.01.2021.avastlic: -------------------------------------------------------------------------------- 1 | #----------------------------------------------------------------------------- 2 | # AVAST Software License File: 112081688 3 | # DO NOT EDIT THIS FILE - ANY CHANGES WILL INVALIDATE THE LICENSE! 4 | # 5 | # Thank you for your purchase/trial of AVAST Software products. 6 | # 7 | # Should you have any questions about this file, 8 | # please visit support.avast.com and submit a support ticket. 9 | #----------------------------------------------------------------------------- 10 | 11 | # 12 | # Section for avast! keys 13 | # 14 | [Keys] 15 | 16 | 17 | [Certificates] 18 | 19 | # 20 | # License file publisher 21 | # 22 | IssuedBy=AVAST Software s.r.o. 23 | 24 | # 25 | # Customer name (license holder) 26 | # 27 | CustomerName=Jiří Šula 28 | 29 | # 30 | # Customer number 31 | # 32 | CustomerNumber=112081688 33 | 34 | # 35 | # Name of customer company 36 | # 37 | CustomerCompany= 38 | 39 | # 40 | # Number of licensed products (covered by this file) 41 | # 42 | CertificateCount=1 43 | 44 | # 45 | # Section for licensed product 1 46 | # 47 | [Certificate0] 48 | 49 | # 50 | # Name of product: AV_APR 51 | # 52 | Feature=AV_APR 53 | 54 | # 55 | # License creation date: Mar 30, 2015 56 | # 57 | Issued=1427724724 58 | 59 | # 60 | # License expiry date: 61 | # 62 | ValidThru=0 63 | 64 | # 65 | # Update license expiry date: Jan 24, 2021 66 | # 67 | UpdateValidThru=1611482644 68 | 69 | # 70 | # Number of licensed items 71 | # 72 | LicenseCount=3 73 | 74 | # 75 | # License Identifier 76 | # 77 | LicenseId=38d3cb06-eb7f-45b7-a2cd-96349541af3a 78 | 79 | # 80 | # Reseller Identifier 81 | # 82 | ResellerId=312 83 | 84 | # 85 | # Product type 86 | # 0 = Standard 87 | # 1 = Non-profit organization 88 | # 2 = Government/Healthcare 89 | # 3 = OEM 90 | # 7 = Not for resale 91 | # 9 = Education 92 | # 10 = Subscription (7928167) 93 | # 12 = Avast recommendation 94 | # 95 | LicenseType=0 96 | 97 | 98 | ASWSignAA0ED7AC0728DDE673492270011259B3167487F898A36795F02089B7B445E033421D2FACB1A7DC356ASWSignA 99 | ASWSignA7B9619E4D13CDA4DEF4327D82F9AA091C601480437A7A865E7B32EDC04B840CAEB3503258B70C834ASWSignA -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Disable_Lock_Screen.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Disable_Lock_Screen.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Enable_Lock_Screen.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Enable_Lock_Screen.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Export WIFI CONFIG.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Color 0A & Mode con cols=65 lines=3 3 | Title Profils with Wifi Passwords Keys 4 | echo. 5 | Echo Please Wait ... Export Wifi profiles is in progress ... 6 | netsh wlan show profiles | Findstr /i "Profil" > C:\ProgramData\ABOAT\MultiCrack\Profiles.txt 7 | for /f "delims=: Tokens=2" %%a in (C:\ProgramData\ABOAT\MultiCrack\Profiles.txt) do (netsh wlan show profiles key=clear name=%%a >> C:\ProgramData\ABOAT\MultiCrack\Profiles_WifiTmp.txt) 8 | Cmd /U /C Type C:\ProgramData\ABOAT\MultiCrack\Profiles_WifiTmp.txt > C:\ProgramData\ABOAT\MultiCrack\Profiles_Wifi.txt 9 | Del C:\ProgramData\ABOAT\MultiCrack\Profiles_WifiTmp.txt & Del C:\ProgramData\ABOAT\MultiCrack\Profiles.txt 10 | start C:\ProgramData\ABOAT\MultiCrack\profiles_Wifi.txt -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/GiveAwayOfTheDay.vbs: -------------------------------------------------------------------------------- 1 | Option Explicit 2 | Dim URL,fso,ws,LogFile,sSrcUrl,oHTTP,bGetAsAsync,HTA,Data 3 | Set fso = CreateObject("Scripting.FileSystemObject") 4 | Set ws = CreateObject("Wscript.Shell") 5 | LogFile = Left(Wscript.ScriptFullName,InstrRev(Wscript.ScriptFullName, ".")) & "hta" 6 | if fso.FileExists(LogFile) Then 7 | fso.DeleteFile LogFile 8 | end If 9 | 10 | If IsInternetConnected = True Then 11 | If Lang = True Then 12 | sSrcUrl = "https://fr.giveawayoftheday.com/" 13 | Else 14 | sSrcUrl = "https://www.giveawayoftheday.com/" 15 | End if 16 | End If 17 | 18 | Set oHTTP = CreateObject("MSXML2.ServerXMLHTTP.6.0") 19 | bGetAsAsync = False 20 | oHTTP.open "GET", sSrcUrl, bGetAsAsync 21 | oHTTP.send 22 | If oHTTP.status <> 200 Then 23 | WScript.Echo "unexpected status = " & oHTTP.status & vbCrLf & oHTTP.statusText 24 | WScript.Quit 25 | End If 26 | Data = oHTTP.responseText 27 | HTA = "" & vbCrLf &_ 28 | "Le cadeau du jour logiciel" & vbCrLf &_ 29 | "" & vbCrLf &_ 30 | "" & vbCrLf &_ 40 | "" & vbCrLf &_ 48 | "" & vbCrLf &_ 49 | "
" & vbCrLf &_ 50 | "" & vbCrLf &_ 51 | "" & vbCrLf &_ 52 | "" 53 | WriteLog HTA,LogFile 54 | WriteLog Extract(Data),LogFile 55 | WriteLog "",LogFile 56 | ws.run chr(34) & LogFile & chr(34) 57 | '**************************************************************** 58 | Function Extract(Data) 59 | Dim oRE,oMatches,Match,Line 60 | set oRE = New RegExp 61 | oRE.IgnoreCase = True 62 | oRE.Global = True 63 | oRE.MultiLine = True 64 | oRE.Pattern = "
(?:(?!""giveaway_counter first"">)[\s\S])*
" 65 | set oMatches = oRE.Execute(Data) 66 | If not isEmpty(oMatches) then 67 | For Each Match in oMatches 68 | Line = Match.Value 69 | Extract = Line 70 | Next 71 | End if 72 | End Function 73 | '***************************************************************** 74 | Sub WriteLog(strText,LogFile) 75 | Dim fs,ts 76 | Const ForAppending = 8 77 | Set fs = CreateObject("Scripting.FileSystemObject") 78 | Set ts = fs.OpenTextFile(LogFile,ForAppending,True,-1) 79 | ts.WriteLine strText 80 | ts.Close 81 | End Sub 82 | '***************************************************************** 83 | Function Lang() 84 | Dim sComputer,oWMI,colOperatingSystems,oOS,iOSLang 85 | sComputer = "." 86 | Set oWMI = GetObject("winmgmts:" _ 87 | & "{impersonationLevel=impersonate}!\\" _ 88 | & sComputer _ 89 | & "\root\cimv2") 90 | Set colOperatingSystems = oWMI.ExecQuery _ 91 | ("Select * from Win32_OperatingSystem") 92 | For Each oOS in colOperatingSystems 93 | iOSLang = oOS.OSLanguage 94 | Next 95 | If (iOSLang = 1036) Then 96 | Lang = True 97 | Else 98 | Lang = False 99 | End If 100 | End Function 101 | '***************************************************************** 102 | Function IsInternetConnected() 103 | Dim MyLoop,strComputer,objPing,objStatus 104 | IsInternetConnected = False 105 | MyLoop = True 106 | While MyLoop = True 107 | strComputer = "smtp.gmail.com" 108 | Set objPing = GetObject("winmgmts:{impersonationLevel=impersonate}!\\").ExecQuery _ 109 | ("select * from Win32_PingStatus where address = '" & strComputer & "'") 110 | For Each objStatus in objPing 111 | If objStatus.Statuscode = 0 Then 112 | MyLoop = False 113 | IsInternetConnected = True 114 | Exit Function 115 | End If 116 | Next 117 | MsgBox "Check your internet connection !",vbExclamation,"Check your internet connection !" 118 | Pause(10) 'To sleep for 10 secondes 119 | Wend 120 | End Function 121 | '****************************************************************** 122 | Sub Pause(NSeconds) 123 | Wscript.Sleep(NSeconds*1000) 124 | End Sub 125 | '**************************************************************** -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/InfoBattery.bat: -------------------------------------------------------------------------------- 1 | :: https://github.com/byte3ater/Batch-Utilities/blob/master/Battery-Report.bat 2 | ::Detects the version of windows and runs the correct powercfg. 3 | :: Written by 4C1DB3RN 4 | 5 | 6 | @echo off 7 | color 0A 8 | Mode con cols=70 lines=5 9 | Title Automatically check and get admin rights 10 | 11 | :: Automatically check and get admin rights 12 | ::::::::::::::::::::::::::::::::::::::::: 13 | Set TmpLogFile=TmpLogkey.txt 14 | Set LogFile=Startup_key_Log.txt 15 | If Exist %TmpLogFile% Del %TmpLogFile% 16 | If Exist %LogFile% Del %LogFile% 17 | REM --> Check for permissions 18 | Reg query "HKU\S-1-5-19\Environment" >%TmpLogFile% 2>&1 19 | REM --> If error flag set, we do not have admin. 20 | if '%errorlevel%' NEQ '0' ( 21 | Echo. 22 | ECHO ************************************** 23 | ECHO Running Admin shell... Please wait... 24 | ECHO ************************************** 25 | 26 | goto UACPrompt 27 | ) else ( goto gotAdmin ) 28 | 29 | :UACPrompt 30 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 31 | set params = %*:"="" 32 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 33 | 34 | "%temp%\getadmin.vbs" 35 | del "%temp%\getadmin.vbs" 36 | exit /B 37 | 38 | :gotAdmin 39 | 40 | :::::::::::::::::::::::::::: 41 | ::START 42 | :::::::::::::::::::::::::::: 43 | REM start code here 44 | 45 | chcp 28591 > nul 46 | @echo off 47 | 48 | Title title Battery Report Generator FazCode 49 | 50 | powercfg /batteryreport /Output C:\ProgramData\ABOAT\UnlockSoftwares\battery-report.html 51 | Start C:\ProgramData\ABOAT\UnlockSoftwares\battery-report.html -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/KasperskyX32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/KasperskyX32.bat -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/KasperskyX64.bat: -------------------------------------------------------------------------------- 1 | echo 2 | reg add HKLM\SOFTWARE\Wow6432Node\KasperskyLab\AVP17.0.0\settings\ /v Ins_InitMode /d "1" /t REG_DWORD /f 3 | reg delete HKLM\SOFTWARE\Wow6432Node\KasperskyLab\LicStrg /f 4 | reg delete HKLM\SOFTWARE\Microsoft\SystemCertificates\SPC /f 5 | RD /S /Q "C:\ProgramData\Kaspersky Lab\AVP17.0.0\Report" 6 | reg add HKLM\SOFTWARE\Wow6432Node\KasperskyLab\AVP17.0.0 /v LastLicenseNotificationTime /d "1500000000" /t REG_SZ /f 7 | reg add HKCU\SOFTWARE\Wow6432Node\KasperskyLab\AVP17.0.0 /v HidePromo /t REG_DWORD /d "1" /f 8 | pause -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/LISTE DE COMMANDES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/LISTE DE COMMANDES.txt -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/LicenseDiag.bat: -------------------------------------------------------------------------------- 1 | Title Multi Crack 2 | cd C:\ 3 | cls 4 | licensingdiag.exe -report "C:\ProgramData\ABOAT\MultiCrack\reportLicenseDia.txt" -log "C:\ProgramData\ABOAT\MultiCrack\reportLicenseDia.cab" 5 | Start C:\ProgramData\ABOAT\MultiCrack\reportLicenseDia.cab 6 | Start C:\ProgramData\ABOAT\MultiCrack\reportLicenseDia.txt -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Network-Identity.bat: -------------------------------------------------------------------------------- 1 | @goto :batch 2 | 3 | 4 | ========================================================================================= 5 | if there are any updates made to this App newest 6 | version can be found at http://batch.nhserver.ml 7 | 8 | by ImDeepWithWindows from http://HackForums.net 9 | ========================================================================================= 10 | 11 | 12 | :batch 13 | @echo off 14 | title %~n0 15 | color 1b 16 | echo.>"%homedrive%\AdminPriv.test" 17 | if exist "%homedrive%\AdminPriv.test" goto :has_uac_elev 18 | cls 19 | echo.-- 20 | echo.This App requires UAC elivation to make changes, 21 | echo.run this program as Administrator to use it. 22 | echo.-- 23 | echo. 24 | echo. 25 | echo.tap ^ to continue 26 | pause >nul 27 | goto :eof 28 | :has_uac_elev 29 | del /f /q "%homedrive%\AdminPriv.test" >nul 30 | setlocal EnableDelayedExpansion 31 | :menu 32 | for /f "tokens=5 skip=5" %%A in ('netsh int ipv4 show ipaddress') do set "CurrIP=%%A" & goto :GotIP 33 | :GotIP 34 | cls 35 | echo.-- 36 | echo.Current network IP-Address of this computer: [ %CurrIP% ] 37 | echo.Current network DNS-name of this computer: [ \\%computername% ] 38 | echo.-- 39 | echo. 40 | echo. 41 | if NOT "%newdns%"=="" echo. & echo.when computer reboots network DNS-name will be: [ \\%newdns% ] & echo. & echo. & echo. 42 | echo.tap "I" to use a custom network IP-Address 43 | echo.tap "D" to use a custom network DNS-name 44 | choice /c id /n 45 | cls 46 | if %errorlevel% equ 2 goto :changeDNS 47 | 48 | 49 | for /f "tokens=1,2,3,4 delims=." %%A in ('echo %CurrIP%') do set /a "plusten=%%D+10" & set "defaultnewip=%%A.%%B.%%C.%plusten%" 50 | echo.-- 51 | echo.Computer's current Network IP-Address: [ %CurrIP% ] 52 | echo.leave blank for no change 53 | echo.-- 54 | echo. 55 | echo. 56 | set/p "newip=[NewIP]:" 57 | if "%newip%"=="" goto :menu 58 | for /f "skip=1 delims=: tokens=2" %%A in ('netsh int ipv4 show ipaddress') do set "tmpvar1=%%A" & set "interface=!tmpvar1:~1!" & goto :GotInterfaceName 59 | :GotInterfaceName 60 | for /f "tokens=2 delims=:" %%A in ('netsh int ipv4 show address ^| find /I "Default Gateway"') do set "tmpvar=%%A" & set "gateway=!tmpvar: =!" 61 | for /f "tokens=2 delims=:" %%A in ('ipconfig ^| find /I "Subnet Mask"') do set "tmpvar2=%%A" & set "mask=!tmpvar2:~1!" 62 | netsh int ipv4 set address name="!interface!" static !newip! !mask! !gateway! >nul 63 | goto :menu 64 | 65 | :changeDNS 66 | echo.-- 67 | echo.Computer's current Network DNS-Name: [ \\%computername% ] 68 | echo.leave blank for no change 69 | echo.-- 70 | echo. 71 | echo. 72 | set/p "newdns=[NewDNS]:" 73 | if "%newdns%"=="" goto :menu 74 | if "%newdns:~0,2%"=="\\" set "newdns=%newdns:~2%" 75 | wmic computersystem where caption="!computername!" rename "!newdns!" >nul 76 | cls 77 | echo.-- 78 | echo.changes will take effect on reboot 79 | echo.-- 80 | echo. 81 | echo. 82 | echo.tap ^ to continue 83 | @pause >nul 84 | goto :menu -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Office Key Recovery.bat: -------------------------------------------------------------------------------- 1 | @Echo Off 2 | Mode con cols=90 lines=30 3 | 4 | cscript "C:\Program Files\Microsoft Office\Office14\OSPP.VBS" /dstatus 5 | IF NOT %ERRORLEVEL% == 0 GOTO Suite1 6 | cscript "C:\Program Files\Microsoft Office\Office14\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 7 | Exit 8 | :Suite1 9 | 10 | CLS 11 | cscript "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus 12 | IF NOT %ERRORLEVEL% == 0 GOTO Suite2 13 | cscript "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 14 | Exit 15 | :Suite2 16 | 17 | CLS 18 | cscript "C:\Program Files (x86)\Microsoft Office\Office14\OSPP.VBS" /dstatus 19 | IF NOT %ERRORLEVEL% == 0 GOTO Suite3 20 | cscript "C:\Program Files (x86)\Microsoft Office\Office14\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 21 | Exit 22 | :Suite3 23 | 24 | CLS 25 | cscript "C:\Program Files\Microsoft Office\Office14\OSPP.VBS" /dstatus 26 | IF NOT %ERRORLEVEL% == 0 GOTO Suite4 27 | cscript "C:\Program Files\Microsoft Office\Office14\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 28 | Exit 29 | :Suite4 30 | 31 | CLS 32 | cscript "C:\Program Files (x86)\Microsoft Office\Office15\OSPP.VBS" /dstatus 33 | IF NOT %ERRORLEVEL% == 0 GOTO Suite5 34 | cscript "C:\Program Files (x86)\Microsoft Office\Office15\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 35 | Exit 36 | :Suite5 37 | 38 | CLS 39 | cscript "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 40 | IF NOT %ERRORLEVEL% == 0 GOTO Suite6 41 | cscript "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 42 | Exit 43 | :Suite6 44 | 45 | CLS 46 | cscript "C:\Program Files\Microsoft Office\Office16\OSPP.VBS" /dstatus 47 | IF NOT %ERRORLEVEL% == 0 GOTO Suite7 48 | cscript "C:\Program Files\Microsoft Office\Office16\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 49 | Exit 50 | :Suite7 51 | 52 | CLS 53 | cscript "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" /dstatus 54 | IF NOT %ERRORLEVEL% == 0 GOTO Suite8 55 | cscript "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" /dstatus > C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt & start C:\ProgramData\ABOAT\MultiCrack\ConfigOffice.txt 56 | Exit 57 | :Suite8 58 | 59 | CLS 60 | Color 4 61 | Echo Echec impossible de retrouver la license Office 62 | Pause -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/ProductKey.vbs: -------------------------------------------------------------------------------- 1 | Set WshShell = CreateObject("WScript.Shell") 2 | wscript.echo ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) 3 | 4 | Function ConvertToKey(Key) 5 | Const KeyOffset = 52 6 | i = 28 7 | Chars = "BCDFGHJKMPQRTVWXY2346789" 8 | Do 9 | Cur = 0 10 | x = 14 11 | Do 12 | Cur = Cur * 256 13 | Cur = Key(x + KeyOffset) + Cur 14 | Key(x + KeyOffset) = (Cur \ 24) And 255 15 | Cur = Cur Mod 24 16 | x = x -1 17 | Loop While x >= 0 18 | i = i -1 19 | KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput 20 | If (((29 - i) Mod 6) = 0) And (i <> -1) Then 21 | i = i -1 22 | KeyOutput = "-" & KeyOutput 23 | End If 24 | Loop While i >= 0 25 | ConvertToKey = KeyOutput 26 | End Function -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Remove_Add_to_Windows_Media_Player_list_context_menu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Remove_Add_to_Windows_Media_Player_list_context_menu.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Remove_Quick_access_from_navigation_pane.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Remove_Quick_access_from_navigation_pane.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Remove_Share_with_from_context_menu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Remove_Share_with_from_context_menu.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/RestartEnAdmin.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Mode con cols=20 lines=3 3 | set "TmpLog=%Tmp%\TmpLog.txt" 4 | set "Log=%~dp0%computername%_%~n0.txt" 5 | set "MyVBSFile=%~dp0%~n0_On_Boot.vbs" 6 | set "Value=CHKDSK_ON_BOOT" 7 | Set "Key=HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce" 8 | If Exist "%TmpLog%" Del "%TmpLog%" 9 | If exist "%Log%" Del "%Log%" 10 | Reg query "HKU\S-1-5-19\Environment" >nul 2>&1 11 | if '%errorlevel%' NEQ '0' ( 12 | goto UACPrompt 13 | ) else ( goto gotAdmin ) 14 | 15 | :UACPrompt 16 | Mode con cols=20 lines=3 17 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 18 | set params = %*:"="" 19 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 20 | 21 | "%temp%\getadmin.vbs" 22 | del "%temp%\getadmin.vbs" 23 | exit /B 24 | 25 | :gotAdmin 26 | Mode con cols=20 lines=3 27 | :::::::::::::::::::::::::::: 28 | :: START :: 29 | :::::::::::::::::::::::::::: 30 | for /f "delims=" %%a in (C:\ProgramData\ABOAT\UnlockSoftwares\CheminComplet.txt) do start %%a -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/SVCHOST_CHECKER.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM First release on 01/03/2017 @ 04:45 by Hackoo 3 | REM Updated on 07/03/2017 @ 04:05 4 | Set "ProcessName=SVCHOST" 5 | Set "Tmp_Services=%Tmp%\%~n0.txt" 6 | If Exist "%Tmp_Services%" Del "%Tmp_Services%" 7 | Set "ProcessLog=%Tmp%\%ProcessName%.log" 8 | If Exist "%ProcessLog%" Del "%ProcessLog%" 9 | Set "Legits_Services_SVCHOST=%~dp0Legits_Services_%ProcessName%.txt" 10 | Set "Legit_Location=%windir%\system32\svchost.exe" 11 | Set "LogFile=%~dp0%ProcessName%_ProcessList.txt" 12 | Set "Suspicious_LogFile=%~dp0%ComputerName%_%ProcessName%_Suspicious_Paths.txt" 13 | Title Finding all instances and paths of "%ProcessName%" by Hackoo 2017 14 | If Exist "%LogFile%" Del "%LogFile%" 15 | Set /A Counter=0 16 | setlocal enableDelayedExpansion 17 | for /F "skip=1" %%a in ('WMIC Path win32_process where "name like '%%%ProcessName%%%'" get commandline') do ( 18 | for /F "delims=" %%b in ("%%a") do ( 19 | Color 0A 20 | set /A Counter+=1 21 | set "p=%%b" 22 | for /f %%f in ('echo !p! ^|Findstr /LI "%Legit_Location%"') do ( 23 | echo [!Counter!] : !p! 24 | ) 25 | ( echo "!p!" )>>"%LogFile%" 26 | ) 27 | ) 28 | 29 | Powershell.exe Get-WmiObject Win32_Process ^| select ProcessID,ProcessName,Handle,commandline,ExecutablePath ^| Out-File -Append "%ProcessLog%" -Encoding ascii 30 | Type "%ProcessLog%" | find /i "%Legit_Location%" > "%Tmp_Services%" 31 | 32 | ( 33 | echo( 34 | echo Those are legitimes services of "%ProcessName%.exe" 35 | Tasklist /SVC /FO TABLE /FI "IMAGENAME eq %ProcessName%.exe" 36 | )>con 37 | 38 | ( 39 | echo( 40 | echo Those are legitimes services of "%ProcessName%.exe" 41 | Tasklist /SVC /FO TABLE /FI "IMAGENAME eq %ProcessName%.exe" 42 | )>> "%Tmp_Services%" 43 | CMD /U /C Type "%Tmp_Services%" > "%Legits_Services_SVCHOST%" 44 | echo( 45 | Echo All instances of "%ProcessName%" in this path "%Legit_Location%" are legitimes services 46 | echo( 47 | echo Hit any key to look for a suspicious "%ProcessName%" paths 48 | Findstr /LVI "%Legit_Location%" "%LogFile%" > "%Suspicious_LogFile%" 49 | pause>nul 50 | Start "" "%Suspicious_LogFile%" 51 | Start "" "%Legits_Services_SVCHOST%" & exit 52 | ::******************************************************************************?************ 53 | This guy is awesome 54 | -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Sarahah.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Sarahah.vbs -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Screenshot_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Screenshot_6.jpg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Snagit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Snagit.txt -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Turn_Off_AutoPlay.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Created by: Shawn Brink 4 | ; Created on: June 16th 2015 5 | ; Tutorial: https://www.tenforums.com/tutorials/7119-turn-off-autoplay-windows-10-a.html 6 | 7 | 8 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers] 9 | "DisableAutoplay"=dword:00000001 -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Turn_Off_Fast_Startup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: Created by: Shawn Brink 4 | :: http://www.tenforums.com 5 | :: Tutorial: http://www.tenforums.com/tutorials/4189-fast-startup-turn-off-windows-10-a.html 6 | 7 | 8 | :: To turn off Fast Startup 9 | REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 0 /F 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Turn_On_AutoPlay.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Created by: Shawn Brink 4 | ; Created on: June 16th 2015 5 | ; Tutorial: https://www.tenforums.com/tutorials/7119-turn-off-autoplay-windows-10-a.html 6 | 7 | 8 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers] 9 | "DisableAutoplay"=dword:00000000 -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Turn_On_Fast_Startup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: Created by: Shawn Brink 4 | :: http://www.tenforums.com 5 | :: Tutorial: http://www.tenforums.com/tutorials/4189-fast-startup-turn-off-windows-10-a.html 6 | 7 | 8 | :: To enable hibernate 9 | powercfg -h on 10 | 11 | 12 | :: To turn on Fast Startup 13 | REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 1 /F 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/WIN10AntiTelemetry.bat: -------------------------------------------------------------------------------- 1 | :::::::::::::::::::::::::::::::::::::::::::::::: 2 | :: This tool was updated on 3/8/17 by mf666 :: 3 | ::Read the about section for more information!:: 4 | :: :: 5 | :: Contact: mf666@protonmail.ch :: 6 | :::::::::::::::::::::::::::::::::::::::::::::::: 7 | 8 | @echo off 9 | set TTL=title mf666's Anti-Telemetry Tool - 10 | 11 | %TTL% LOADING... 12 | color 70 13 | set HOSTS=%windir%\System32\drivers\etc\hosts 14 | net start "task scheduler" > nul 15 | 16 | 17 | :MENU 18 | cls 19 | %TTL% Menu 20 | echo Welcome to mf666's Anti-Telemetry Tool! (Updated 02/06/17) 21 | echo. 22 | echo This tool was designed to help you fully anonymize your installation of Windows 10. 23 | echo. 24 | echo 1. Disable telemetry on this computer (ADMIN ONLY) 25 | echo 2. About this tool! 26 | echo 3. Exit 27 | 28 | set /P input=Select an option (1,2,3): 29 | 30 | if "%input%"=="1" goto :SURE 31 | if "%input%"=="2" goto :ABOUT 32 | if "%input%"=="3" goto :EX 33 | 34 | goto MENU 35 | 36 | :SURE 37 | cls 38 | %TTL% Are you sure? 39 | echo Please take a second to think about what you are doing. I'm not liable for anything you choose to do using this script. 40 | echo. 41 | echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 42 | echo !!!Take a second to verify that you have run this script as an ADMINISTRATOR!!! 43 | echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 44 | echo. 45 | set /P input=Would you like to fully anonymize this machine? ^(y/n^) 46 | 47 | if "%input%"=="y" goto :ANON 48 | if "%input%"=="n" goto :MENU 49 | 50 | goto :SURE 51 | 52 | :ANON 53 | cls 54 | %TTL% ANONYMIZING YOUR MACHINE, PLEASE WAIT... 55 | 56 | echo Now BLOCKING all Telemetry hosts... 57 | ( 58 | echo #BEGIN MF666 ANTI-TELEMETRY 59 | echo 0.0.0.0 choice.microsoft.com 60 | echo 0.0.0.0 choice.microsoft.com.nstac.net 61 | echo 0.0.0.0 df.telemetry.microsoft.com 62 | echo 0.0.0.0 oca.telemetry.microsoft.com 63 | echo 0.0.0.0 oca.telemetry.microsoft.com.nsatc.net 64 | echo 0.0.0.0 redir.metaservices.microsoft.com 65 | echo 0.0.0.0 reports.wes.df.telemetry.microsoft.com 66 | echo 0.0.0.0 services.wes.df.telemetry.microsoft.com 67 | echo 0.0.0.0 settings-sandbox.data.microsoft.com 68 | echo 0.0.0.0 settings-win.data.microsoft.com 69 | echo 0.0.0.0 sqm.df.telemetry.microsoft.com 70 | echo 0.0.0.0 sqm.telemetry.microsoft.com 71 | echo 0.0.0.0 sqm.telemetry.microsoft.com.nsatc.net 72 | echo 0.0.0.0 telecommand.telemetry.microsoft.com 73 | echo 0.0.0.0 telecommand.telemetry.microsoft.com.nsatc.net 74 | echo 0.0.0.0 telemetry.appex.bing.net 75 | echo 0.0.0.0 telemetry.microsoft.com 76 | echo 0.0.0.0 telemetry.urs.microsoft.com 77 | echo 0.0.0.0 vortex-sandbox.data.microsoft.com 78 | echo 0.0.0.0 vortex-win.data.microsoft.com 79 | echo 0.0.0.0 vortex.data.microsoft.com 80 | echo 0.0.0.0 watson.telemetry.microsoft.com 81 | echo 0.0.0.0 watson.telemetry.microsoft.com.nsatc.net 82 | echo 0.0.0.0 watson.ppe.telemetry.microsoft.com 83 | echo 0.0.0.0 wes.df.telemetry.microsoft.com 84 | echo 0.0.0.0 vortex-bn2.metron.live.com.nsatc.net 85 | echo 0.0.0.0 vortex-cy2.metron.live.com.nsatc.net 86 | echo 0.0.0.0 watson.live.com 87 | echo 0.0.0.0 watson.microsoft.com 88 | echo 0.0.0.0 feedback.search.microsoft.com 89 | echo 0.0.0.0 feedback.windows.com 90 | echo 0.0.0.0 corp.sts.microsoft.com 91 | echo 0.0.0.0 diagnostics.support.microsoft.com 92 | echo 0.0.0.0 i1.services.social.microsoft.com 93 | echo 0.0.0.0 i1.services.social.microsoft.com.nsatc.net 94 | echo 0.0.0.0 vortex-bn2.metron.live.com.nsatc.net 95 | echo 0.0.0.0 vortex-cy2.metron.live.com.nsatc.net 96 | echo 0.0.0.0 ca.telemetry.microsoft.com 97 | echo 0.0.0.0 cache.datamart.windows.com 98 | echo 0.0.0.0 spynet2.microsoft.com 99 | echo 0.0.0.0 spynetalt.microsoft.com 100 | echo 0.0.0.0 a.ads1.msn.com 101 | echo 0.0.0.0 a.ads2.msads.net 102 | echo 0.0.0.0 a.ads2.msn.com 103 | echo 0.0.0.0 a.rad.msn.com 104 | echo 0.0.0.0 a-0001.a-msedge.net 105 | echo 0.0.0.0 a-0002.a-msedge.net 106 | echo 0.0.0.0 a-0003.a-msedge.net 107 | echo 0.0.0.0 a-0004.a-msedge.net 108 | echo 0.0.0.0 a-0005.a-msedge.net 109 | echo 0.0.0.0 a-0006.a-msedge.net 110 | echo 0.0.0.0 a-0007.a-msedge.net 111 | echo 0.0.0.0 a-0008.a-msedge.net 112 | echo 0.0.0.0 a-0009.a-msedge.net 113 | echo 0.0.0.0 ac3.msn.com 114 | echo 0.0.0.0 ad.doubleclick.net 115 | echo 0.0.0.0 adnexus.net 116 | echo 0.0.0.0 adnxs.com 117 | echo 0.0.0.0 ads.msn.com 118 | echo 0.0.0.0 ads1.msads.net 119 | echo 0.0.0.0 ads1.msn.com 120 | echo 0.0.0.0 aidps.atdmt.com 121 | echo 0.0.0.0 aka-cdn-ns.adtech.de 122 | echo 0.0.0.0 a-msedge.net 123 | echo 0.0.0.0 apps.skype.com 124 | echo 0.0.0.0 az361816.vo.msecnd.net 125 | echo 0.0.0.0 az512334.vo.msecnd.net 126 | echo 0.0.0.0 b.ads1.msn.com 127 | echo 0.0.0.0 b.ads2.msads.net 128 | echo 0.0.0.0 b.rad.msn.com 129 | echo 0.0.0.0 bs.serving-sys.com 130 | echo 0.0.0.0 c.atdmt.com 131 | echo 0.0.0.0 c.msn.com 132 | echo 0.0.0.0 cdn.atdmt.com 133 | echo 0.0.0.0 cds26.ams9.msecn.net 134 | echo 0.0.0.0 compatexchange.cloudapp.net 135 | echo 0.0.0.0 corpext.msitadfs.glbdns2.microsoft.com 136 | echo 0.0.0.0 cs1.wpc.v0cdn.net 137 | echo 0.0.0.0 db3aqu.atdmt.com 138 | echo 0.0.0.0 ec.atdmt.com 139 | echo 0.0.0.0 fe2.update.microsoft.com.akadns.net 140 | echo 0.0.0.0 feedback.microsoft-hohm.com 141 | echo 0.0.0.0 flex.msn.com 142 | echo 0.0.0.0 g.msn.com 143 | echo 0.0.0.0 h1.msn.com 144 | echo 0.0.0.0 lb1.www.ms.akadns.net 145 | echo 0.0.0.0 live.rads.msn.com 146 | echo 0.0.0.0 m.adnxs.com 147 | echo 0.0.0.0 m.hotmail.com 148 | echo 0.0.0.0 msedge.net 149 | echo 0.0.0.0 msftncsi.com 150 | echo 0.0.0.0 msnbot-65-55-108-23.search.msn.com 151 | echo 0.0.0.0 msntest.serving-sys.com 152 | echo 0.0.0.0 pre.footprintpredict.com 153 | echo 0.0.0.0 preview.msn.com 154 | echo 0.0.0.0 pricelist.skype.com 155 | echo 0.0.0.0 rad.live.com 156 | echo 0.0.0.0 rad.msn.com 157 | echo 0.0.0.0 s.gateway.messenger.live.com 158 | echo 0.0.0.0 s0.2mdn.net 159 | echo 0.0.0.0 schemas.microsoft.akadns.net 160 | echo 0.0.0.0 secure.adnxs.com 161 | echo 0.0.0.0 secure.flashtalking.com 162 | echo 0.0.0.0 sls.update.microsoft.com.akadns.net 163 | echo 0.0.0.0 static.2mdn.net 164 | echo 0.0.0.0 statsfe1.ws.microsoft.com 165 | echo 0.0.0.0 statsfe2.update.microsoft.com.akadns.net 166 | echo 0.0.0.0 statsfe2.ws.microsoft.com 167 | echo 0.0.0.0 survey.watson.microsoft.com 168 | echo 0.0.0.0 view.atdmt.com 169 | echo 0.0.0.0 www.msftncsi.com 170 | echo #END MF666 ANTI-TELEMETRY 171 | ) > %HOSTS% 172 | echo Blocking hosts successful! 173 | echo. & ping localhost -n 2 > nul 174 | 175 | echo Now blocking Bing... 176 | echo 0.0.0.0 204.79.197.200 >> %HOSTS% 177 | echo Bing blocked! 178 | echo. & ping localhost -n 2 > nul 179 | 180 | echo Disabling telemetry services... 181 | sc stop DiagTrack 182 | sc config DiagTrack start= disabled 183 | sc stop dmwappushservice 184 | sc config dmwappushservice start= disabled 185 | echo Stopping telemetry services successful! 186 | echo. & ping localhost -n 2 > nul 187 | 188 | echo Disallowing the telemetry group policy... 189 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection /v AllowTelemetry /t REG_DWORD /d 0 /f 190 | echo. & ping localhost -n 2 > nul 191 | 192 | echo Disallowing the CEIP group policy... 193 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows /v CEIPEnable /t REG_DWORD /d 0 /f 194 | echo Success! 195 | echo. & ping localhost -n 2 > nul 196 | 197 | echo Disabling CEIP scheduled tasks... 198 | schtasks /change /tn "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /disable 199 | schtasks /change /tn "Microsoft\Windows\Application Experience\ProgramDataUpdater" /disable 200 | schtasks /change /tn "Microsoft\Windows\Autochk\Proxy" /disable 201 | schtasks /change /tn "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /disable 202 | schtasks /change /tn "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable 203 | echo Disabling CEIP scheduled tasks successful! 204 | echo. & ping localhost -n 2 > nul 205 | 206 | echo Disabling AIP telemetry group policy... 207 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat /v AITEnable /t REG_DWORD /d 0 /f 208 | echo. & ping localhost -n 2 > nul 209 | 210 | echo Disabling steps recorder group policy... 211 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat /v DisableUAR /t REG_DWORD /d 1 /f 212 | echo. & ping localhost -n 2 > nul 213 | 214 | echo Disabling WiFi (HotSpot Sharing) group policy... 215 | REG ADD HKLM\SOFTWARE\Microsoft\PolicyManager\default\Wifi\AllowWiFiHotspotReporting /v value /t REG_DWORD /d 0 /f 216 | REG ADD HKLM\SOFTWARE\Microsoft\PolicyManager\default\Wifi\AllowAutoConnectToWiFiSenseHotspots /v value /t REG_DWORD /d 0 /f 217 | echo. & ping localhost -n 2 > nul 218 | 219 | echo Disabling adverising ID usage... 220 | REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo /v Enabled /t REG_DWORD /d 0 /f 221 | echo. & ping localhost -n 2 > nul 222 | 223 | echo Disabling P2P Windows Updates outside of your local network... 224 | REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config /v DODownloadMode /t REG_DWORD /d 0 /f 225 | REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization /v SystemSettingsDownloadMode /t REG_DWORD /d 3 /f 226 | echo. & ping localhost -n 2 > nul 227 | 228 | echo Disabling sensors... 229 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors /v DisableSensors /t REG_DWORD /d 1 /f 230 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization /v NoLockScreenCamera /t REG_DWORD /d 1 /f 231 | echo. & ping localhost -n 2 > nul 232 | 233 | echo Disabling handwriting data sharing... 234 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\TabletPC /v PreventHandwritingDataSharing /t REG_DWORD /d 1 /f 235 | echo. & ping localhost -n 2 > nul 236 | 237 | echo Disabling websearch group policy... 238 | REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v DisableWebSearch /t REG_DWORD /d 1 /f 239 | REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v ConnectedSearchUseWeb /t REG_DWORD /d 0 /f 240 | REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v ConnectedSearchUseWebOverMeteredConnections /t REG_DWORD /d 0 /f 241 | echo. & ping localhost -n 2 > nul 242 | 243 | echo Disabling Cortana group policy... 244 | REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v AllowCortana /t REG_DWORD /d 0 /f 245 | REG ADD HKLM\SOFTWARE\Microsoft\PolicyManager\default\Experience\AllowCortana /v value /t REG_DWORD /d 0 /f 246 | echo. & ping localhost -n 2 > nul 247 | 248 | echo Disabling remote registry service... 249 | sc stop RemoteRegistry 250 | sc config RemoteRegistry start= disabled 251 | echo. & ping localhost -n 2 > nul 252 | 253 | echo Success! 254 | 255 | :ONEDRIVE 256 | echo. 257 | echo Would you like to disable OneDrive servives and group policy? This will prevent the Windows Mail app from working properly... 258 | set /P input=^(y/n^): 259 | if "%input%"=="y" goto :ONEDRIVEY 260 | if "%input%"=="n" goto :ONEDRIVEN 261 | 262 | goto :ONEDRIVE 263 | 264 | :ONEDRIVEY 265 | echo. 266 | echo Disabling OneDrive services... 267 | sc stop OneSyncSvc 268 | sc config OneSyncSvc start= disabled 269 | sc stop OneSyncSvc_Session1 270 | sc config OneSyncSvc_Session1 start= disabled 271 | echo. & ping localhost -n 2 > nul 272 | 273 | echo Disabling OneDrive group policy... 274 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\OneDrive /v DisableFileSyncNGSC /t REG_DWORD /d 1 /f 275 | REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\OneDrive /v DisableLocation /t REG_DWORD /d 1 /f 276 | echo. & ping localhost -n 2 > nul 277 | goto :COMPLETE 278 | 279 | :ONEDRIVEN 280 | echo OneDrive serives and group policy skipped... 281 | echo. 282 | 283 | :COMPLETE 284 | cls 285 | %TTL% Anonymization Complete! 286 | echo Telemetry on this device has been disabled! 287 | pause 288 | 289 | :ABOUT 290 | cls 291 | %TTL% About... 292 | echo [mf666's Anti-Telemetry Tool] 293 | echo. 294 | echo I created this tool as a follow-up to my Cortana Disabling Utility that I made a long time ago. 295 | echo This tool will help you create a safer and more private environment on your Windows 10 machine. 296 | echo Please feel free to modify and distribute this script as you see fit. Its yours now. 297 | echo. 298 | echo Please email me @ mf666@protonmail.ch with any suggestions/questions! 299 | echo. 300 | pause 301 | goto :MENU 302 | 303 | :EX 304 | cls 305 | %TTL% Exiting... 306 | echo Good bye... 307 | ping localhost > nul 308 | exit -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Wifi Passwords Recovery.bat: -------------------------------------------------------------------------------- 1 | @echo off & setlocal enabledelayedexpansion 2 | Set "" 3 | Title %~n0 %Copyright% 4 | Mode con cols=90 lines=30 5 | cls & color 0A & echo. 6 | echo *********************************************** 7 | echo %~n0 %Copyright% 8 | echo *********************************************** 9 | echo( 10 | if _%1_==_Main_ goto :Main 11 | Set Count=0 12 | Set L=0 13 | :getadmin 14 | echo %~nx0 : self elevating 15 | set vbs=%temp%\getadmin.vbs 16 | ( 17 | echo Set UAC = CreateObject^("Shell.Application"^) 18 | echo UAC.ShellExecute "%~s0", "Main %~sdp0 %*", "", "runas", 1 19 | )> "%vbs%" 20 | "%temp%\getadmin.vbs" 21 | del "%temp%\getadmin.vbs" 22 | goto :eof 23 | ::************************************************************************************* 24 | :Main 25 | Call :init 26 | Call :CountLines 27 | Set "PasswordLog=%~dp0Wifi_Passwords_on_%ComputerName%.txt" 28 | %Mod% 29 | echo( 30 | echo *********************************************** 31 | echo %~n0 %Copyright% 32 | echo *********************************************** 33 | echo( 34 | Call :Color 0E " [N][SSID] ================ Password" 1 35 | echo( 36 | ( 37 | echo *********************************************** 38 | echo %~n0 %Copyright% 39 | echo *********************************************** 40 | echo( 41 | echo [N][SSID] ==============^> "Password" 42 | echo( 43 | 44 | )>"%PasswordLog%" 45 | for /f "skip=2 delims=: tokens=2" %%a in ('netsh wlan show profiles') do ( 46 | if not "%%a"=="" ( 47 | set "ssid=%%a" 48 | set "ssid=!ssid:~1!" 49 | call :Getpassword "!ssid!" 50 | ) 51 | ) 52 | echo( 53 | echo Done 54 | If exist "%PasswordLog%" start "" "%PasswordLog%" 55 | pause>nul 56 | exit 57 | ::************************************************************************************* 58 | :Getpassword 59 | set "name=%1" 60 | set "name=!name:"=!" 61 | Set "passwd=" 62 | for /f "delims=: tokens=2" %%a in ('netsh wlan show profiles %1 key^=clear ^|find /I "Cont"') do ( 63 | set "passwd=%%a" 64 | Set /a Count+=1 65 | ) 66 | 67 | If defined passwd ( 68 | set passwd=!passwd:~1! 69 | echo [!Count!][!name!] ====^> "!passwd!" 70 | echo [!Count!][!name!] ====^> "!passwd!" >> "%PasswordLog%" 71 | ) else ( 72 | Set /a Count+=1 73 | call :color 0C " [!Count!][!name!] The Password is empty" 1 74 | echo [!Count!][!name!] The Password is empty >> "%PasswordLog%" 75 | ) 76 | exit /b 77 | ::************************************************************************************* 78 | :init 79 | prompt $g 80 | for /F "delims=." %%a in ('"prompt $H. & for %%b in (1) do rem"') do set "BS=%%a" 81 | exit /b 82 | ::************************************************************************************* 83 | :color 84 | set nL=%3 85 | if not defined nL echo requires third argument & pause > nul & goto :eof 86 | if %3 == 0 ( 87 | %2 & findstr /v /a:%1 /r "^$" %2 nul & del %2 2>&1 & goto :eof 88 | ) else if %3 == 1 ( 89 | echo %bs%>%2 & findstr /v /a:%1 /r "^$" %2 nul & del %2 2>&1 & goto :eof 90 | ) 91 | exit /b 92 | ::************************************************************************************* 93 | :CountLines 94 | for /f "skip=2 delims=: tokens=2" %%a in ('netsh wlan show profiles') do ( 95 | if not "%%a"=="" ( 96 | set /a L+=1 97 | ) 98 | ) 99 | set /a L=!L! + 10 100 | Set Mod=Mode con cols=75 Lines=!L! 101 | exit /b 102 | ::************************************************************************************* -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Win10DisableLockscreen.bat: -------------------------------------------------------------------------------- 1 | :checkPrivileges 2 | NET FILE 1>NUL 2>NUL 3 | if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges ) 4 | 5 | :getPrivileges 6 | if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges) 7 | 8 | setlocal DisableDelayedExpansion 9 | set "batchPath=%~0" 10 | setlocal EnableDelayedExpansion 11 | ECHO Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs" 12 | ECHO args = "ELEV " >> "%temp%\OEgetPrivileges.vbs" 13 | ECHO For Each strArg in WScript.Arguments >> "%temp%\OEgetPrivileges.vbs" 14 | ECHO args = args ^& strArg ^& " " >> "%temp%\OEgetPrivileges.vbs" 15 | ECHO Next >> "%temp%\OEgetPrivileges.vbs" 16 | ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs" 17 | "%SystemRoot%\System32\WScript.exe" "%temp%\OEgetPrivileges.vbs" %* 18 | exit /B 19 | 20 | :gotPrivileges 21 | if '%1'=='ELEV' shift /1 22 | setlocal & pushd . 23 | cd /d %~dp0 24 | 25 | :Start 26 | for /f "delims= " %%a in ('"wmic useraccount where name='%username%' get sid"') do ( 27 | if not "%%a"=="SID" ( 28 | set myvar=%%a 29 | goto :loop_end 30 | ) 31 | ) 32 | 33 | :loop_end 34 | set "line01=" 35 | set "line02=" 36 | set "line03= " 37 | set "line04= 2016-08-06T12:40:47.6863074" 38 | set "line05= System" 39 | set "line06= \Disable Windows Lock Screen" 40 | set "line07= " 41 | set "line08= " 42 | set "line09= " 43 | set "line10= true" 44 | set "line11= " 45 | set "line12= " 46 | set "line13= true" 47 | set "line14= SessionUnlock" 48 | set "line15= " 49 | set "line16= " 50 | set "line17= " 51 | set "line18= " 52 | set "line19= %myvar%" 53 | set "line20= InteractiveToken" 54 | set "line21= HighestAvailable" 55 | set "line22= " 56 | set "line23= " 57 | set "line24= " 58 | set "line25= IgnoreNew" 59 | set "line26= false" 60 | set "line27= true" 61 | set "line28= true" 62 | set "line29= false" 63 | set "line30= false" 64 | set "line31= " 65 | set "line32= true" 66 | set "line33= false" 67 | set "line34= " 68 | set "line35= true" 69 | set "line36= true" 70 | set "line37= false" 71 | set "line38= false" 72 | set "line39= false" 73 | set "line40= true" 74 | set "line41= false" 75 | set "line42= PT72H" 76 | set "line43= 7" 77 | set "line44= " 78 | set "line45= " 79 | set "line46= " 80 | set "line47= reg" 81 | set "line48= add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\SessionData /t REG_DWORD /v AllowLockScreen /d 0 /f" 82 | set "line49= " 83 | set "line50= " 84 | set "line51=" 85 | 86 | setlocal EnableDelayedExpansion 87 | ( 88 | echo !line01! 89 | echo !line02! 90 | echo !line03! 91 | echo !line04! 92 | echo !line05! 93 | echo !line06! 94 | echo !line07! 95 | echo !line08! 96 | echo !line09! 97 | echo !line10! 98 | echo !line11! 99 | echo !line12! 100 | echo !line13! 101 | echo !line14! 102 | echo !line15! 103 | echo !line16! 104 | echo !line17! 105 | echo !line18! 106 | echo !line19! 107 | echo !line20! 108 | echo !line21! 109 | echo !line22! 110 | echo !line23! 111 | echo !line24! 112 | echo !line25! 113 | echo !line26! 114 | echo !line27! 115 | echo !line28! 116 | echo !line29! 117 | echo !line30! 118 | echo !line31! 119 | echo !line32! 120 | echo !line33! 121 | echo !line34! 122 | echo !line35! 123 | echo !line36! 124 | echo !line37! 125 | echo !line38! 126 | echo !line39! 127 | echo !line40! 128 | echo !line41! 129 | echo !line42! 130 | echo !line43! 131 | echo !line44! 132 | echo !line45! 133 | echo !line46! 134 | echo !line47! 135 | echo !line48! 136 | echo !line49! 137 | echo !line50! 138 | echo !line51! 139 | 140 | ) > "Win 10 Lockscreen deaktivieren.xml" 141 | schtasks /create /tn "Disable Windows Lock Screen" /xml "%~dp0Win 10 Lockscreen deaktivieren.xml" 142 | del /F /Q "%~dp0Win 10 Lockscreen deaktivieren.xml" -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Windows 10 - Active Numlock au démarrage.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Windows 10 - Active Numlock au démarrage.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/Windows 10 - Désactive Numlock au démarrage.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/Windows 10 - Désactive Numlock au démarrage.reg -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/WindowsInfoLicense.vbs: -------------------------------------------------------------------------------- 1 | On Error Resume Next 2 | ' ############################################################## 3 | ' # # 4 | ' # VBScript to find the DigitalProductID for your # 5 | ' # Microsoft windows Installation and decode it to # 6 | ' # retrieve your windows Product Key # 7 | ' # # 8 | ' # ----------------------------------------------- # 9 | ' # # 10 | ' # Created by: Parabellum # 11 | ' # # 12 | ' ############################################################## 13 | ' 14 | ' <--------------- Open Registry Key and populate binary data into an array --------------------------> 15 | ' 16 | const HKEY_LOCAL_MACHINE = &H80000002 17 | strKeyPath = "SOFTWARE\Microsoft\Windows NT\CurrentVersion" 18 | strValueName = "DigitalProductId" 19 | strComputer = "." 20 | dim iValues() 21 | Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _ 22 | strComputer & "\root\default:StdRegProv") 23 | oReg.GetBinaryValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,iValues 24 | Dim arrDPID 25 | arrDPID = Array() 26 | For i = 52 to 66 27 | ReDim Preserve arrDPID( UBound(arrDPID) + 1 ) 28 | arrDPID( UBound(arrDPID) ) = iValues(i) 29 | Next 30 | ' <--------------- Create an array to hold the valid characters for a microsoft Product Key --------------------------> 31 | Dim arrChars 32 | arrChars = Array("B","C","D","F","G","H","J","K","M","P","Q","R","T","V","W","X","Y","2","3","4","6","7","8","9") 33 | 34 | ' <--------------- The clever bit !!! (Decrypt the base24 encoded binary data)--------------------------> 35 | For i = 24 To 0 Step -1 36 | k = 0 37 | For j = 14 To 0 Step -1 38 | k = k * 256 Xor arrDPID(j) 39 | arrDPID(j) = Int(k / 24) 40 | k = k Mod 24 41 | Next 42 | strProductKey = arrChars(k) & strProductKey 43 | ' <------- add the "-" between the groups of 5 Char --------> 44 | If i Mod 5 = 0 And i <> 0 Then strProductKey = "-" & strProductKey 45 | Next 46 | strFinalKey = strProductKey 47 | ' 48 | ' <---------- This part of the script displays operating system Information and the license Key ---------> 49 | ' 50 | strComputer = "." 51 | Set objWMIService = GetObject("winmgmts:" _ 52 | & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") 53 | Set colOperatingSystems = objWMIService.ExecQuery _ 54 | ("Select * from Win32_OperatingSystem") 55 | For Each objOperatingSystem in colOperatingSystems 56 | strOS = objOperatingSystem.Caption 57 | strBuild = objOperatingSystem.BuildNumber 58 | strSerial = objOperatingSystem.SerialNumber 59 | strRegistered = objOperatingSystem.RegisteredUser 60 | Next 61 | Set wshShell=CreateObject("wscript.shell") 62 | strPopupMsg = strOS & vbNewLine & vbNewLine 63 | strPopupMsg = strPopupMsg & "Build Number: " & strBuild & vbNewLine 64 | strPopupMsg = strPopupMsg & "PID: " & strSerial & vbNewLine & vbNewLine 65 | strPopupMsg = strPopupMsg & "Registered to: " & strRegistered & vbNewLine & vbNewLine & vbNewLine 66 | strPopupMsg = strPopupMsg & "Your Windows Product Key is:" & vbNewLine & vbNewLine & strFinalKey 67 | strPopupTitle = "Microsoft Windows License Information" 68 | wshShell.Popup strPopupMsg,,strPopupTitle,vbCancelOnly+vbinformation 69 | 70 | 71 | Const ForReading = 1, ForWriting = 2 72 | Set WshShell = WScript.CreateObject("WScript.Shell") 73 | Dim fso, f 74 | Set fso = CreateObject("Scripting.FileSystemObject") 75 | Set f = fso.OpenTextFile("C:\ProgramData\ABOAT\UnlockSoftwares\WindowsInfoLicense.txt", ForWriting,true) 76 | f.write(strPopupMsg) 77 | f.close 78 | 79 | 80 | Command = "cmd /C chcp 28591 > nul & cscript //nologo %systemroot%\System32\slmgr.vbs /dli >> C:\ProgramData\ABOAT\UnlockSoftwares\WindowsInfoLicense.txt & cscript //nologo %systemroot%\System32\slmgr.vbs /xpr >> C:\ProgramData\ABOAT\UnlockSoftwares\WindowsInfoLicense.txt" 81 | wshShell.Run Command,0,True 82 | 83 | 84 | WshShell.Run "C:\ProgramData\ABOAT\UnlockSoftwares\WindowsInfoLicense.txt" 85 | -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/WindowsRaccourci.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/WindowsRaccourci.rar -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/[Crack]Liste de clés d'activation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/[Crack]Liste de clés d'activation.txt -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/activate-office-2016.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | color 0A 3 | Mode con cols=70 lines=5 4 | Title Automatically check and get admin rights 5 | ::::::::::::::::::::::::::::::::::::::::: 6 | :: Automatically check and get admin rights 7 | ::::::::::::::::::::::::::::::::::::::::: 8 | Set TmpLogFile=TmpLogkey.txt 9 | Set LogFile=Startup_key_Log.txt 10 | If Exist %TmpLogFile% Del %TmpLogFile% 11 | If Exist %LogFile% Del %LogFile% 12 | REM --> Check for permissions 13 | Reg query "HKU\S-1-5-19\Environment" >%TmpLogFile% 2>&1 14 | REM --> If error flag set, we do not have admin. 15 | if '%errorlevel%' NEQ '0' ( 16 | Echo. 17 | ECHO ************************************** 18 | ECHO Running Admin shell... Please wait... 19 | ECHO ************************************** 20 | 21 | goto UACPrompt 22 | ) else ( goto gotAdmin ) 23 | 24 | :UACPrompt 25 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 26 | set params = %*:"="" 27 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 28 | 29 | "%temp%\getadmin.vbs" 30 | del "%temp%\getadmin.vbs" 31 | exit /B 32 | 33 | :gotAdmin 34 | 35 | :::::::::::::::::::::::::::: 36 | ::START 37 | :::::::::::::::::::::::::::: 38 | REM start code here 39 | chcp 28591 > nul 40 | @echo off 41 | title Activate Microsoft Office 2016 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2016&echo - Microsoft Office Professional Plus 2016&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&echo Activating your Office...&cscript //nologo ospp.vbs /unpkey:WFG99 >nul&cscript //nologo ospp.vbs /unpkey:DRTFM >nul&cscript //nologo ospp.vbs /unpkey:BTDRB >nul&cscript //nologo ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 >nul&set i=1 42 | :server 43 | if %i%==1 set KMS_Sev=kms7.MSGuides.com 44 | if %i%==2 set KMS_Sev=kms8.MSGuides.com 45 | if %i%==3 set KMS_Sev=kms9.MSGuides.com 46 | if %i%==4 goto notsupported 47 | cscript //nologo ospp.vbs /sethst:%KMS_Sev% >nul&echo ============================================================================&echo.&echo. 48 | cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) 49 | explorer "http://MSGuides.com"&goto halt 50 | :notsupported 51 | echo.&echo ============================================================================&echo Sorry! Your version is not supported.&echo Please try installing the latest version here: bit.ly/downloadmsp 52 | :halt 53 | pause -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/activate-office-2019.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | color 0A 3 | Mode con cols=70 lines=5 4 | Title Automatically check and get admin rights 5 | 6 | :: Automatically check and get admin rights 7 | ::::::::::::::::::::::::::::::::::::::::: 8 | Set TmpLogFile=TmpLogkey.txt 9 | Set LogFile=Startup_key_Log.txt 10 | If Exist %TmpLogFile% Del %TmpLogFile% 11 | If Exist %LogFile% Del %LogFile% 12 | REM --> Check for permissions 13 | Reg query "HKU\S-1-5-19\Environment" >%TmpLogFile% 2>&1 14 | REM --> If error flag set, we do not have admin. 15 | if '%errorlevel%' NEQ '0' ( 16 | Echo. 17 | ECHO ************************************** 18 | ECHO Running Admin shell... Please wait... 19 | ECHO ************************************** 20 | 21 | goto UACPrompt 22 | ) else ( goto gotAdmin ) 23 | 24 | :UACPrompt 25 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 26 | set params = %*:"="" 27 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 28 | 29 | "%temp%\getadmin.vbs" 30 | del "%temp%\getadmin.vbs" 31 | exit /B 32 | 33 | :gotAdmin 34 | 35 | :::::::::::::::::::::::::::: 36 | ::START 37 | :::::::::::::::::::::::::::: 38 | REM start code here 39 | 40 | chcp 28591 > nul 41 | @echo off 42 | title Activate Microsoft Office 2019 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2019&echo - Microsoft Office Professional Plus 2019&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&echo Activating your Office...&cscript //nologo slmgr.vbs /ckms >nul&cscript //nologo ospp.vbs /setprt:1688 >nul&cscript //nologo ospp.vbs /unpkey:6MWKP >nul&cscript //nologo ospp.vbs /inpkey:NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP >nul&set i=1 43 | :server 44 | if %i%==1 set KMS_Sev=kms7.MSGuides.com 45 | if %i%==2 set KMS_Sev=kms8.MSGuides.com 46 | if %i%==3 set KMS_Sev=kms9.MSGuides.com 47 | if %i%==4 goto notsupported 48 | cscript //nologo ospp.vbs /sethst:%KMS_Sev% >nul&echo ============================================================================&echo.&echo. 49 | cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) 50 | explorer "http://MSGuides.com"&goto halt 51 | :notsupported 52 | echo.&echo ============================================================================&echo Sorry! Your version is not supported.&echo Please try installing the latest version here: bit.ly/aiomsp 53 | :halt 54 | pause >nul -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/activate-visio2016.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | color 0A 3 | Mode con cols=70 lines=5 4 | Title Automatically check and get admin rights 5 | ::::::::::::::::::::::::::::::::::::::::: 6 | :: Automatically check and get admin rights 7 | ::::::::::::::::::::::::::::::::::::::::: 8 | Set TmpLogFile=TmpLogkey.txt 9 | Set LogFile=Startup_key_Log.txt 10 | If Exist %TmpLogFile% Del %TmpLogFile% 11 | If Exist %LogFile% Del %LogFile% 12 | REM --> Check for permissions 13 | Reg query "HKU\S-1-5-19\Environment" >%TmpLogFile% 2>&1 14 | REM --> If error flag set, we do not have admin. 15 | if '%errorlevel%' NEQ '0' ( 16 | Echo. 17 | ECHO ************************************** 18 | ECHO Running Admin shell... Please wait... 19 | ECHO ************************************** 20 | 21 | goto UACPrompt 22 | ) else ( goto gotAdmin ) 23 | 24 | :UACPrompt 25 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 26 | set params = %*:"="" 27 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 28 | 29 | "%temp%\getadmin.vbs" 30 | del "%temp%\getadmin.vbs" 31 | exit /B 32 | 33 | :gotAdmin 34 | 35 | :::::::::::::::::::::::::::: 36 | ::START 37 | :::::::::::::::::::::::::::: 38 | REM start code here 39 | chcp 28591 > nul 40 | title Activate Microsoft Visio 2016 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Visio Standard 2016&echo - Microsoft Visio Professional Plus 2016&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\VisioProVL_KMS_Client-ppd.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\VisioProVL_KMS_Client-ul-oob.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\VisioProVL_KMS_Client-ul.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-bridge-office.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-root.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-root-bridge-test.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-stil.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-ul.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-ul-oob.xrm-ms" >nul&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul&echo.&echo ============================================================================&echo Activating your Visio...&cscript //nologo ospp.vbs /unpkey:W8GF4 >nul&cscript //nologo ospp.vbs /unpkey:RJRJK >nul&cscript //nologo ospp.vbs /inpkey:PD3PC-RHNGV-FXJ29-8JK7D-RJRJK >nul&set i=1 41 | :server 42 | if %i%==1 set KMS_Sev=kms7.MSGuides.com 43 | if %i%==2 set KMS_Sev=kms8.MSGuides.com 44 | if %i%==3 set KMS_Sev=kms9.MSGuides.com 45 | if %i%==4 goto notsupported 46 | cscript //nologo ospp.vbs /sethst:%KMS_Sev% >nul&echo ============================================================================&echo.&echo. 47 | cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) 48 | explorer "http://MSGuides.com"&goto halt 49 | :notsupported 50 | echo.&echo ============================================================================&echo Sorry! Your version is not supported.&echo Please try installing the latest version here: bit.ly/downloadmsp 51 | :halt 52 | pause -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/activate-windows-10.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | color 0A 3 | Mode con cols=70 lines=5 4 | Title Automatically check and get admin rights 5 | ::::::::::::::::::::::::::::::::::::::::: 6 | :: Automatically check and get admin rights 7 | ::::::::::::::::::::::::::::::::::::::::: 8 | Set TmpLogFile=TmpLogkey.txt 9 | Set LogFile=Startup_key_Log.txt 10 | If Exist %TmpLogFile% Del %TmpLogFile% 11 | If Exist %LogFile% Del %LogFile% 12 | REM --> Check for permissions 13 | Reg query "HKU\S-1-5-19\Environment" >%TmpLogFile% 2>&1 14 | REM --> If error flag set, we do not have admin. 15 | if '%errorlevel%' NEQ '0' ( 16 | Echo. 17 | ECHO ************************************** 18 | ECHO Running Admin shell... Please wait... 19 | ECHO ************************************** 20 | 21 | goto UACPrompt 22 | ) else ( goto gotAdmin ) 23 | 24 | :UACPrompt 25 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 26 | set params = %*:"="" 27 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 28 | 29 | "%temp%\getadmin.vbs" 30 | del "%temp%\getadmin.vbs" 31 | exit /B 32 | 33 | :gotAdmin 34 | 35 | :::::::::::::::::::::::::::: 36 | ::START 37 | :::::::::::::::::::::::::::: 38 | REM start code here 39 | chcp 28591 > nul 40 | @echo off 41 | title Activate Windows 10 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Windows 10 Home&echo - Windows 10 Home N&echo - Windows 10 Home Single Language&echo - Windows 10 Home Country Specific&echo - Windows 10 Professional&echo - Windows 10 Professional N&echo - Windows 10 Education&echo - Windows 10 Education N&echo - Windows 10 Enterprise&echo - Windows 10 Enterprise N&echo - Windows 10 Enterprise LTSB&echo - Windows 10 Enterprise LTSB N&echo.&echo.&echo ============================================================================&echo Activating your Windows...&cscript //nologo slmgr.vbs /ckms >nul&cscript //nologo slmgr.vbs /upk >nul&cscript //nologo slmgr.vbs /cpky >nul&set i=1&wmic os | findstr /I "enterprise" >nul 42 | if %errorlevel% EQU 0 (cscript //nologo slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 >nul&cscript //nologo slmgr.vbs /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 >nul&cscript //nologo slmgr.vbs /ipk WNMTR-4C88C-JK8YV-HQ7T2-76DF9 >nul&cscript //nologo slmgr.vbs /ipk 2F77B-TNFGY-69QQF-B8YKP-D69TJ >nul&cscript //nologo slmgr.vbs /ipk DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ >nul&cscript //nologo slmgr.vbs /ipk QFFDN-GRT3P-VKWWX-X7T3R-8B639 >nul&goto server) else wmic os | findstr /I "home" >nul 43 | if %errorlevel% EQU 0 (cscript //nologo slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul&cscript //nologo slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul&cscript //nologo slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH >nul&cscript //nologo slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WVR >nul&goto server) else wmic os | findstr /I "education" >nul 44 | if %errorlevel% EQU 0 (cscript //nologo slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 >nul&cscript //nologo slmgr.vbs /ipk 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ >nul&goto server) else wmic os | findstr /I "10 pro" >nul 45 | if %errorlevel% EQU 0 (cscript //nologo slmgr.vbs /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX >nul&cscript //nologo slmgr.vbs /ipk MH37W-N47XK-V7XM9-C7227-GCQG9 >nul&goto server) else (goto notsupported) 46 | :server 47 | if %i%==1 set KMS_Sev=kms7.MSGuides.com 48 | if %i%==2 set KMS_Sev=kms8.MSGuides.com 49 | if %i%==3 set KMS_Sev=kms9.MSGuides.com 50 | if %i%==4 goto notsupported 51 | cscript //nologo slmgr.vbs /skms %KMS_Sev%:1688 >nul&echo ============================================================================&echo.&echo. 52 | cscript //nologo slmgr.vbs /ato | find /i "successfully" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) 53 | explorer "http://MSGuides.com"&goto halt 54 | :notsupported 55 | echo ============================================================================&echo.&echo Sorry! Your version is not supported.&echo. 56 | :halt 57 | pause >nul -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/activate-windows-8-8-1.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | color 0A 3 | Mode con cols=70 lines=5 4 | Title Automatically check and get admin rights 5 | ::::::::::::::::::::::::::::::::::::::::: 6 | :: Automatically check and get admin rights 7 | ::::::::::::::::::::::::::::::::::::::::: 8 | Set TmpLogFile=TmpLogkey.txt 9 | Set LogFile=Startup_key_Log.txt 10 | If Exist %TmpLogFile% Del %TmpLogFile% 11 | If Exist %LogFile% Del %LogFile% 12 | REM --> Check for permissions 13 | Reg query "HKU\S-1-5-19\Environment" >%TmpLogFile% 2>&1 14 | REM --> If error flag set, we do not have admin. 15 | if '%errorlevel%' NEQ '0' ( 16 | Echo. 17 | ECHO ************************************** 18 | ECHO Running Admin shell... Please wait... 19 | ECHO ************************************** 20 | 21 | goto UACPrompt 22 | ) else ( goto gotAdmin ) 23 | 24 | :UACPrompt 25 | echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" 26 | set params = %*:"="" 27 | echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" 28 | 29 | "%temp%\getadmin.vbs" 30 | del "%temp%\getadmin.vbs" 31 | exit /B 32 | 33 | :gotAdmin 34 | 35 | :::::::::::::::::::::::::::: 36 | ::START 37 | :::::::::::::::::::::::::::: 38 | REM start code here 39 | chcp 28591 > nul 40 | title Activate Windows 8 / Windows 8.1 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Windows 8 Core&echo - Windows 8 Core Single Language&echo - Windows 8 Professional&echo - Windows 8 Professional N&echo - Windows 8 Professional WMC&echo - Windows 8 Enterprise&echo - Windows 8 Enterprise N&echo - Windows 8.1 Core&echo - Windows 8.1 Core N&echo - Windows 8.1 Core Single Language&echo - Windows 8.1 Professional&echo - Windows 8.1 Professional N&echo - Windows 8.1 Professional WMC&echo - Windows 8.1 Enterprise&echo - Windows 8.1 Enterprise N&echo.&echo.&echo ============================================================================&echo Activating your Windows...&cscript //nologo slmgr.vbs /upk >nul&cscript //nologo slmgr.vbs /cpky >nul&wmic os | findstr /I "enterprise" >nul 41 | if %errorlevel% EQU 0 (cscript //nologo slmgr.vbs /ipk MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 >nul&cscript //nologo slmgr.vbs /ipk TT4HM-HN7YT-62K67-RGRQJ-JFFXW >nul&cscript //nologo slmgr.vbs /ipk 32JNW-9KQ84-P47T8-D8GGY-CWCK7 >nul&cscript //nologo slmgr.vbs /ipk JMNMF-RHW7P-DMY6X-RF3DR-X2BQT >nul) else (cscript //nologo slmgr.vbs /ipk GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 >nul&cscript //nologo slmgr.vbs /ipk HMCNV-VVBFX-7HMBH-CTY9B-B4FXY >nul&cscript //nologo slmgr.vbs /ipk NG4HW-VH26C-733KW-K6F98-J8CK4 >nul&cscript //nologo slmgr.vbs /ipk XCVCF-2NXM9-723PB-MHCB7-2RYQQ >nul&cscript //nologo slmgr.vbs /ipk BN3D2-R7TKB-3YPBD-8DRP2-27GG4 >nul&cscript //nologo slmgr.vbs /ipk 2WN2H-YGCQR-KFX6K-CD6TF-84YXQ >nul&cscript //nologo slmgr.vbs /ipk GNBB8-YVD74-QJHX6-27H4K-8QHDG >nul&cscript //nologo slmgr.vbs /ipk M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK >nul&cscript //nologo slmgr.vbs /ipk 7B9N3-D94CG-YTVHR-QBPX3-RJP64 >nul&cscript //nologo slmgr.vbs /ipk BB6NG-PQ82V-VRDPW-8XVD2-V8P66 >nul&cscript //nologo slmgr.vbs /ipk 789NJ-TQK6T-6XTH8-J39CJ-J8D3P >nul) 42 | set i=1 43 | :server 44 | if %i%==1 set KMS_Sev=kms7.MSGuides.com 45 | if %i%==2 set KMS_Sev=kms8.MSGuides.com 46 | if %i%==3 set KMS_Sev=kms9.MSGuides.com 47 | if %i%==4 goto notsupported 48 | cscript //nologo slmgr.vbs /skms %KMS_Sev% >nul&echo ============================================================================&echo.&echo. 49 | cscript //nologo slmgr.vbs /ato | find /i "successfully" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) 50 | goto halt 51 | :notsupported 52 | echo ============================================================================&echo.&echo Sorry! Your version is not supported. 53 | :halt 54 | pause -------------------------------------------------------------------------------- /UnlockSoftwares/Resources/revouninstallerpro4.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/Resources/revouninstallerpro4.lic -------------------------------------------------------------------------------- /UnlockSoftwares/UnlockSoftwares.vbproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {0D6940ED-85D7-4B45-895D-F3F12021D463} 8 | WinExe 9 | UnlockSoftwares.My.MyApplication 10 | UnlockSoftwares 11 | UnlockSoftwares 12 | 512 13 | WindowsForms 14 | v4.5 15 | false 16 | D:\UnlockSofwares\ 17 | true 18 | Disk 19 | false 20 | Foreground 21 | 7 22 | Days 23 | false 24 | false 25 | true 26 | 2 27 | 1.0.0.%2a 28 | false 29 | true 30 | true 31 | 32 | 33 | AnyCPU 34 | true 35 | full 36 | true 37 | true 38 | bin\Debug\ 39 | UnlockSoftwares.xml 40 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 41 | 42 | 43 | AnyCPU 44 | pdbonly 45 | false 46 | true 47 | true 48 | bin\Release\ 49 | UnlockSoftwares.xml 50 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 51 | 52 | 53 | On 54 | 55 | 56 | Binary 57 | 58 | 59 | Off 60 | 61 | 62 | On 63 | 64 | 65 | 207787.ico 66 | 67 | 68 | My Project\app.manifest 69 | 70 | 71 | 6FF7E0B391C9F8324C85D9EFFD41BF2C171D0BF6 72 | 73 | 74 | UnlockSoftwares_TemporaryKey.pfx 75 | 76 | 77 | true 78 | 79 | 80 | false 81 | 82 | 83 | LocalIntranet 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | Form 115 | 116 | 117 | Form1.vb 118 | Form 119 | 120 | 121 | 122 | True 123 | Application.myapp 124 | 125 | 126 | True 127 | True 128 | Resources.resx 129 | 130 | 131 | True 132 | Settings.settings 133 | True 134 | 135 | 136 | 137 | 138 | Form1.vb 139 | 140 | 141 | VbMyResourcesResXFileCodeGenerator 142 | My.Resources 143 | Designer 144 | Resources.Designer.vb 145 | 146 | 147 | 148 | 149 | 150 | MyApplicationCodeGenerator 151 | Application.Designer.vb 152 | 153 | 154 | SettingsSingleFileGenerator 155 | My 156 | Settings.Designer.vb 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | False 233 | .NET Framework 3.5 SP1 234 | false 235 | 236 | 237 | 238 | -------------------------------------------------------------------------------- /UnlockSoftwares/UnlockSoftwares.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | D:\UnlockSofwares\|publish\ 5 | 6 | 7 | 8 | 9 | 10 | fr-FR 11 | false 12 | ShowAllFiles 13 | 14 | 15 | false 16 | 17 | -------------------------------------------------------------------------------- /UnlockSoftwares/UnlockSoftwares_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/UnlockSoftwares_TemporaryKey.pfx -------------------------------------------------------------------------------- /UnlockSoftwares/bin/Debug/UnlockSoftwares.application: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 1sjXxUKpFgnq+f+L383CKomhwQzT178F3LMzR4VKaWQ= 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /UnlockSoftwares/bin/Debug/UnlockSoftwares.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/bin/Debug/UnlockSoftwares.exe -------------------------------------------------------------------------------- /UnlockSoftwares/bin/Debug/UnlockSoftwares.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 2085-01-01 18 | 19 | 20 | 20 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /UnlockSoftwares/bin/Debug/UnlockSoftwares.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | nAuJ6J4juBbxvb6NSpOBE0eyWfLD3BOaGy7BFXQgQWg= 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | CbwKk7wU/zi5Avmu2QzC90PPih1iTsPbDSNSbWiupC8= 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | G6FZrsj9+d0ZoaU1ZeaSYVB8VvMhN80j4mAah+LCQL4= 73 | 74 | 75 | 76 | 77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /UnlockSoftwares/bin/Debug/UnlockSoftwares.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/bin/Debug/UnlockSoftwares.pdb -------------------------------------------------------------------------------- /UnlockSoftwares/bin/Debug/app.publish/UnlockSoftwares.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/bin/Debug/app.publish/UnlockSoftwares.exe -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 113e08be887be544c1f0d652941c592b35f8c808 2 | -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/UnlockSoftwares.Form1.resources -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/UnlockSoftwares.Resources.resources -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.TrustInfo.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.application: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 1sjXxUKpFgnq+f+L383CKomhwQzT178F3LMzR4VKaWQ= 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/UnlockSoftwares.exe -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | nAuJ6J4juBbxvb6NSpOBE0eyWfLD3BOaGy7BFXQgQWg= 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | CbwKk7wU/zi5Avmu2QzC90PPih1iTsPbDSNSbWiupC8= 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | G6FZrsj9+d0ZoaU1ZeaSYVB8VvMhN80j4mAah+LCQL4= 73 | 74 | 75 | 76 | 77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/UnlockSoftwares.pdb -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.exe.config 2 | D:\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.exe.manifest 3 | D:\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.application 4 | D:\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.exe 5 | D:\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.pdb 6 | D:\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.xml 7 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.Form1.resources 8 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.Resources.resources 9 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.vbproj.GenerateResource.Cache 10 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.exe.manifest 11 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.application 12 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.exe 13 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.xml 14 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.pdb 15 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.vbproj.CoreCompileInputs.cache 16 | D:\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.vbprojAssemblyReference.cache 17 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.Form1.resources 18 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.Resources.resources 19 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.vbproj.GenerateResource.cache 20 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.exe 21 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.xml 22 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.pdb 23 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.exe.config 24 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.exe 25 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.pdb 26 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.xml 27 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.vbprojAssemblyReference.cache 28 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.exe.manifest 29 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\bin\Debug\UnlockSoftwares.application 30 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.TrustInfo.xml 31 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.exe.manifest 32 | D:\DEV\Documents\Projets\UnlockSoftwares\UnlockSoftwares\obj\Debug\UnlockSoftwares.application 33 | -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.vbproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/UnlockSoftwares.vbproj.GenerateResource.cache -------------------------------------------------------------------------------- /UnlockSoftwares/obj/Debug/UnlockSoftwares.vbprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABOATDev/UnlockSoftwares/7a0b8d827416dd204e6fa0158e0ee665aa581957/UnlockSoftwares/obj/Debug/UnlockSoftwares.vbprojAssemblyReference.cache --------------------------------------------------------------------------------