├── Core.md ├── Drivers.md ├── LICENSE ├── README.md ├── Tweakers.md ├── UserGUI.md ├── app&utils.md ├── conf_&_mant.md ├── note.md └── script&cmd.md /Core.md: -------------------------------------------------------------------------------- 1 | # Core components 2 | 3 | ## Subsections: [Windows kernel](#windows-kernel-windows-nt) - [Core processes](#core-processes-windows-nt) - [System startup](#system-startup-windows-nt) - [Graphical subsystem](#graphical-subsystem) 4 | 5 | 6 | ### Windows kernel (Windows NT) [⌂](#core-components) 7 | |Component|Description|Open Replacement| 8 | |:-:|:-:|:-:| 9 | |[Ntoskrnl.exe](https://en.wikipedia.org/wiki/Ntoskrnl.exe)|Provides the kernel and executive layers of the kernel architecture, and is responsible for services such as hardware virtualization, process and memory management, etc.|[Windows Research Kernel](https://github.com/zhuhuibeishadiao/ntoskrnl)| 10 | |[hal.dll](https://en.wikipedia.org/wiki/Hal.dll)|Provides and handles the interaction between software and hardware via the Hardware Abstraction Layer|| 11 | |[kernel32.dll](https://en.wikipedia.org/wiki/Kernel32.dll)|Provides kernel operations to apps in the Win32 mode, like memory management, I/Os, process creation, etc.|| 12 | 13 | 14 | ### Core processes (Windows NT) [⌂](#core-components) 15 | |Component|Description|Open Replacement| 16 | |:-:|:-:|:-:| 17 | |[System idle process](https://en.wikipedia.org/wiki/System_idle_process)|A counter which measures how much idle capacity the CPU has at any given time|| 18 | |[Session Manager Subsystem](https://en.wikipedia.org/wiki/Session_Manager_Subsystem)|Performs several critical boot-time operations, such as the creation of environment variables, starting CSRSS, and performing file-copy operations that were queued up from before the system was booted (pending file rename operations)|| 19 | |[Client/Server Runtime Subsystem](https://en.wikipedia.org/wiki/Client/Server_Runtime_Subsystem)|Provides the capability for applications to use the [Windows API](https://en.wikipedia.org/wiki/Windows_API)|| 20 | |[Local Security Authority Subsystem Service](https://en.wikipedia.org/wiki/Local_Security_Authority_Subsystem_Service)|Verifies users logging on to the computer and creates security tokens|| 21 | |[Winlogon](https://en.wikipedia.org/wiki/Winlogon)|Responsible for handling the secure attention key, loading the user profile on logon, and optionally locking the computer when a screensaver is running|| 22 | |[Svchost.exe](https://en.wikipedia.org/wiki/Svchost.exe)|A generic host process name for services that run from dynamic-link libraries (DLLs)|| 23 | |[Windows on Windows](https://en.wikipedia.org/wiki/Windows_on_Windows) and [WOW64](https://en.wikipedia.org/wiki/WOW64)|An abstraction layer that allows legacy code to operate on more modern versions of Windows|| 24 | |[Virtual DOS machine](https://en.wikipedia.org/wiki/Virtual_DOS_machine)|Allows MS-DOS apps to run on Intel 80386 or higher computers when there is already another operating system running and controlling the hardware|[WineVDM](https://github.com/otya128/winevdm)| 25 | 26 | ## System startup (Windows NT) [⌂](#core-components) 27 | |Component|Description|Open Replacement| 28 | |:-:|:-:|:-:| 29 | |[NTLDR](https://en.wikipedia.org/wiki/NTLDR), IA64ldr, [Winload](https://en.wikipedia.org/wiki/Winload.exe)|Performs basic system initialization options such as loading the hardware abstraction layer and boot-time device drivers, prior to passing control to the Windows kernel|| 30 | |[Recovery Console](https://en.wikipedia.org/wiki/Recovery_Console)|Provides the means for administrators to perform a limited range of tasks using a command line interface, primarily to aid in recovering from situations where Windows does not boot successfully|| 31 | |[ntdetect.com](https://en.wikipedia.org/wiki/Ntdetect.com)|Used during the boot process to detect basic hardware components that may be required during the boot process|| 32 | |[Windows Boot Manager](https://en.wikipedia.org/wiki/Windows_Boot_Manager)|Displays boot menus to the user if multiple operating systems are configured in the system's Boot Configuration Data|| 33 | 34 | ## Graphical subsystem [⌂](#core-components) 35 | |Component|Description|Open Replacement| 36 | |:-:|:-:|:-:| 37 | |[Desktop Window Manager](https://en.wikipedia.org/wiki/Desktop_Window_Manager)|Handles compositing and manages special effects on screen objects in a graphical user interface|| 38 | |[Graphics Device Interface](https://en.wikipedia.org/wiki/Graphics_Device_Interface)|Representing graphical objects and transmitting them to output devices such as monitors and printers|[GDIPP](https://github.com/CoolOppo/GDIPP) / [libgdiplus](https://github.com/mono/libgdiplus)| 39 | |[Windows USER](https://en.wikipedia.org/wiki/Windows_USER)|Provides core user interface, messaging and visual elements|| 40 | -------------------------------------------------------------------------------- /Drivers.md: -------------------------------------------------------------------------------- 1 | # Drivers 2 | 3 | |Type|Description|Open Replacement| 4 | |:-:|:-:|:-:| 5 | |Video|-|[Minidriver](https://www.os2museum.com/wp/windows-9x-video-minidriver-source-code/)| 6 | |Mesa3D|Simple way to use OpenGL accelerated applications under Windows 98/Me in virtual machine even without real HW acceleration support|[Mesa3D port for Windows 9x](https://github.com/JHRobotics/mesa9x)| 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Opendows](http://www.forart.it/progetti/Opendows/logo.png) 2 | *Open source replacements for (legacy) MS-Windows components* 3 | --- 4 | ### List of Windows components and possible open source counterpart: 5 | - [Configuration and maintenance](conf_&_mant.md) 6 | - [Control Panel](conf_&_mant.md#control-panel) 7 | - [Administrative Tools](conf_&_mant.md#administrative-tools) 8 | - [Software installation and deployment](conf_&_mant.md#software-installation-and-deployment) 9 | - [Applications and utilities](app&utils.md) 10 | - [User interface](UserGUI.md) 11 | - Windows Server 12 | - File systems 13 | - [Core components](Core.md) 14 | - Services 15 | - DirectX 16 | - Networking 17 | - Scripting and command-line 18 | - Kernel 19 | - .NET Framework 20 | - Security 21 | - APIs 22 | - [Drivers](Drivers.md) 23 | 24 | (source: https://en.wikipedia.org/wiki/List_of_Microsoft_Windows_components) 25 | 26 | [--- notebloc ---](note.md) 27 | -------------------------------------------------------------------------------- /Tweakers.md: -------------------------------------------------------------------------------- 1 | # [![Opendows](https://flat.badgen.net/badge/Opendows/TWEAKERS/blue?scale=1.8)]() 2 | 3 | 4 | ### 📁 [Guides](#guides-) - [Customization Tools](#customization-) - [Cleaners](#cleaners-) - [Optimizers](#optimizers-) - [Debloaters](#debloaters-) - [Setupers](#setupers-) - [Privacy](#privacy-) - [Specific](#specific-) - [Other](#other-) - [ISOs/Playbooks](#isosplaybooks-) 5 | 6 | > [!WARNING] 7 | > $\color{orange}\textsf{{SORTING: Language (a>z) > License (openness) > Repository (a>z)}}$ 8 | 9 | ### Guides [⌂](#-) 10 | |Repository|Short description|License|Last commit| 11 | |:-:|:-:|:-:|:-:| 12 | |[Windows Debloat](https://github.com/armync/ArminC-Windows-Debloat#readme)|Step-by-step guide for a fresh Windows install with no bloatware|[![](https://flat.badgen.net/github/license/armync/ArminC-Windows-Debloat?label=)](https://github.com/armync/ArminC-Windows-Debloat/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/armync/ArminC-Windows-Debloat?style=flat-square&label=)](https://github.com/armync/ArminC-Windows-Debloat/graphs/code-frequency)| 13 | |[PC-Tuning](https://github.com/valleyofdoom/PC-Tuning#readme)|Configure Windows-based systems for a variety of tasks|[![](https://flat.badgen.net/github/license/valleyofdoom/PC-Tuning?label=)](https://github.com/valleyofdoom/PC-Tuning/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/valleyofdoom/PC-Tuning?style=flat-square&label=)](https://github.com/valleyofdoom/PC-Tuning/graphs/code-frequency)| 14 | |[GamingPCSetup](https://github.com/djdallmann/GamingPCSetup#readme)|A research and evidence based approach guide to optimizing your gaming PC, configuration and setup|[![](https://flat.badgen.net/github/license/djdallmann/GamingPCSetup?label=)](https://github.com/djdallmann/GamingPCSetup/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/djdallmann/GamingPCSetup?style=flat-square&label=)](https://github.com/djdallmann/GamingPCSetup/graphs/code-frequency)| 15 | |[Notes about how to Install and Configure Windows 11](https://github.com/RavenSystem/MyWindowsNotes#readme)|Notes about how to install and configure Windows 11 to achieve maximum performance|[![](https://flat.badgen.net/github/license/RavenSystem/MyWindowsNotes?label=)](https://github.com/RavenSystem/MyWindowsNotes/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/RavenSystem/MyWindowsNotes?style=flat-square&label=)](https://github.com/RavenSystem/MyWindowsNotes/graphs/code-frequency)| 16 | |[Unlimited PC Tips](https://github.com/itz-rj-here/Unlimited-PC-Tips#readme)|Get rid of bloatware, enhance speed, and improve security with advanced tweaks, CMD scripts, and privacy tools|[![](https://flat.badgen.net/github/license/itz-rj-here/Unlimited-PC-Tips?label=)](https://github.com/itz-rj-here/Unlimited-PC-Tips/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/itz-rj-here/Unlimited-PC-Tips?style=flat-square&label=)](https://github.com/itz-rj-here/Unlimited-PC-Tips/graphs/code-frequency)| 17 | |[PC tuning](https://github.com/Yoshii64/PC-optimizations#readme)|Findings and discoveries for getting an extremely optimized PC|[![](https://flat.badgen.net/github/license/Yoshii64/PC-optimizations?label=)](https://github.com/Yoshii64/PC-optimizations/issues/1)|[![](https://img.shields.io/github/last-commit/Yoshii64/PC-optimizations?style=flat-square&label=)](https://github.com/Yoshii64/PC-optimizations/graphs/code-frequency)| 18 | |[system-optimizer](https://github.com/weppyk/system-optimizer#readme)|A repository for optimizing Windows, Linux, and macOS systems|[![](https://flat.badgen.net/github/license/weppyk/system-optimizer?label=)](https://github.com/weppyk/system-optimizer/issues/1)|[![](https://img.shields.io/github/last-commit/weppyk/system-optimizer?style=flat-square&label=)](https://github.com/weppyk/system-optimizer/graphs/code-frequency)| 19 | |[Windows 10 / 11 LTSC Installation & Tweaks](https://github.com/Harjinder4/Lightest-Windows#readme)|A guide to Windows 11 IoT Enterprise LTSC installing and tweaking|[![](https://flat.badgen.net/github/license/Harjinder4/Lightest-Windows?label=)](https://github.com/Harjinder4/Lightest-Windows/issues/1)|[![](https://img.shields.io/github/last-commit/Harjinder4/Lightest-Windows?style=flat-square&label=)](https://github.com/Harjinder4/Lightest-Windows/graphs/code-frequency)| 20 | |[Windows 10/11 Optimization & Customization Guide](https://github.com/just-maik/win-opti-resources#readme)|Curated list of tools for optimizing, debloating and configuring Windows 10/11|[![](https://flat.badgen.net/github/license/just-maik/win-opti-resources?label=)](https://github.com/just-maik/win-opti-resources/issues/7)|[![](https://img.shields.io/github/last-commit/just-maik/win-opti-resources?style=flat-square&label=)](https://github.com/just-maik/win-opti-resources/graphs/code-frequency)| 21 | |[Win-tools](https://github.com/Raghavvram/Win-tools#readme)|Collection of all tools and websites available to debloat windows 10 and 11|[![](https://flat.badgen.net/github/license/Raghavvram/Win-tools?label=)](https://github.com/Raghavvram/Win-tools/issues/1)|[![](https://img.shields.io/github/last-commit/Raghavvram/Win-tools?style=flat-square&label=)](https://github.com/Raghavvram/Win-tools/graphs/code-frequency)| 22 | |[WinTuning](https://github.com/DevSentinel/WinTuning#readme)|A documentation for tuning Windows|[![](https://flat.badgen.net/github/license/DevSentinel/WinTuning?label=)](https://github.com/DevSentinel/WinTuning/issues/1)|[![](https://img.shields.io/github/last-commit/DevSentinel/WinTuning?style=flat-square&label=)](https://github.com/DevSentinel/WinTuning/graphs/code-frequency)| 23 | |[Windows-Tweaks](https://github.com/OnaldUck/Windows-Tweaks#readme)|-|[![](https://flat.badgen.net/github/license/OnaldUck/Windows-Tweaks?label=)](https://github.com/OnaldUck/Windows-Tweaks/issues/1)|[![](https://img.shields.io/github/last-commit/OnaldUck/Windows-Tweaks?style=flat-square&label=)](https://github.com/OnaldUck/Windows-Tweaks/graphs/code-frequency)| 24 | 25 | 26 | 27 | 28 | ### Customization [⌂](#-) 29 | |Repository|Short description|Language|License|Last commit| 30 | |:-:|:-:|:-:|:-:|:-:| 31 | |[ECS (Edge Cleanup Solution)](https://github.com/jjkaydot/KILL-MICROSOFT-EDGE#readme)|A lightweight tool to completely remove Microsoft Edge from your Windows PC|[![](https://img.shields.io/github/languages/top/jjkaydot/KILL-MICROSOFT-EDGE?color=pink&style=flat-square)](https://github.com/jjkaydot/KILL-MICROSOFT-EDGE/graphs/contributors)|[![](https://flat.badgen.net/github/license/jjkaydot/KILL-MICROSOFT-EDGE?label=)](https://github.com/jjkaydot/KILL-MICROSOFT-EDGE/issues/1)|[![](https://img.shields.io/github/last-commit/jjkaydot/KILL-MICROSOFT-EDGE?style=flat-square&label=)](https://github.com/jjkaydot/KILL-MICROSOFT-EDGE/graphs/code-frequency)| 32 | |[ExplorerPatcher](https://github.com/valinet/ExplorerPatcher#readme)|This project aims to enhance the working environment on Windows|[![](https://img.shields.io/github/languages/top/valinet/ExplorerPatcher?color=pink&style=flat-square)](https://github.com/valinet/ExplorerPatcher/graphs/contributors)|[![](https://flat.badgen.net/github/license/valinet/ExplorerPatcher?label=)](https://github.com/valinet/ExplorerPatcher/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/valinet/ExplorerPatcher?style=flat-square&label=)](https://github.com/valinet/ExplorerPatcher/graphs/code-frequency)| 33 | |[System Informer](https://github.com/winsiderss/systeminformer#readme)|A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware|[![](https://img.shields.io/github/languages/top/winsiderss/systeminformer?color=pink&style=flat-square)](https://github.com/winsiderss/systeminformer/graphs/contributors)|[![](https://flat.badgen.net/github/license/winsiderss/systeminformer?label=)](https://github.com/winsiderss/systeminformer/blob/master/LICENSE.txt)|[![](https://img.shields.io/github/last-commit/winsiderss/systeminformer?style=flat-square&label=)](https://github.com/winsiderss/systeminformer/graphs/code-frequency)| 34 | |[AppGroup](https://github.com/iandiv/AppGroup#readme)|App Group lets you organize, customize, and launch your apps|[![](https://img.shields.io/github/languages/top/iandiv/AppGroup?color=pink&style=flat-square)](https://github.com/iandiv/AppGroup/graphs/contributors)|[![](https://flat.badgen.net/github/license/iandiv/AppGroup?label=)](https://github.com/iandiv/AppGroup/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/iandiv/AppGroup?style=flat-square&label=)](https://github.com/iandiv/AppGroup/graphs/code-frequency)| 35 | |[BeautySearch](https://github.com/krlvm/BeautySearch#readme)|Windows 10+ Search Window appearance tweaker|[![](https://img.shields.io/github/languages/top/krlvm/BeautySearch?color=pink&style=flat-square)](https://github.com/krlvm/BeautySearch/graphs/contributors)|[![](https://flat.badgen.net/github/license/krlvm/BeautySearch?label=)](https://github.com/krlvm/BeautySearch/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/krlvm/BeautySearch?style=flat-square&label=)](https://github.com/krlvm/BeautySearch/graphs/code-frequency)| 36 | |[Bulk Crap Uninstaller](https://github.com/Klocman/Bulk-Crap-Uninstaller#readme)|Remove large amounts of unwanted applications quickly|[![](https://img.shields.io/github/languages/top/Klocman/Bulk-Crap-Uninstaller?color=pink&style=flat-square)](https://github.com/Klocman/Bulk-Crap-Uninstaller/graphs/contributors)|[![](https://flat.badgen.net/github/license/Klocman/Bulk-Crap-Uninstaller?label=)](https://github.com/Klocman/Bulk-Crap-Uninstaller/blob/master/Licence.txt)|[![](https://img.shields.io/github/last-commit/Klocman/Bulk-Crap-Uninstaller?style=flat-square&label=)](https://github.com/Klocman/Bulk-Crap-Uninstaller/graphs/code-frequency)| 37 | |[IntelliTask](https://github.com/mihaimoga/IntelliTask#readme)|IntelliTask is an alternative Windows version to the Task Manager|[![](https://img.shields.io/github/languages/top/mihaimoga/IntelliTask?color=pink&style=flat-square)](https://github.com/mihaimoga/IntelliTask/graphs/contributors)|[![](https://flat.badgen.net/github/license/mihaimoga/IntelliTask?label=)](https://github.com/mihaimoga/IntelliTask/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/mihaimoga/IntelliTask?style=flat-square&label=)](https://github.com/mihaimoga/IntelliTask/graphs/code-frequency)| 38 | |[EdgeRemover](https://github.com/he3als/EdgeRemover#readme)|A PowerShell script that correctly uninstalls or reinstalls Microsoft Edge on Windows 10 & 11.|[![](https://img.shields.io/github/languages/top/he3als/EdgeRemover?color=pink&style=flat-square)](https://github.com/he3als/EdgeRemover/graphs/contributors)|[![](https://flat.badgen.net/github/license/he3als/EdgeRemover?label=)](https://github.com/he3als/EdgeRemover/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/he3als/EdgeRemover?style=flat-square&label=)](https://github.com/he3als/EdgeRemover/graphs/code-frequency)| 39 | 40 | 41 | ### Cleaners [⌂](#-) 42 | |Repository|Short description|Language|License|Last commit| 43 | |:-:|:-:|:-:|:-:|:-:| 44 | |[WinOpti](https://github.com/L0g0rhythm/WinOpti#readme)|An optimization script that enhances system performance by cleaning temporary files, clearing browser caches, removing unnecessary logs, and terminating resource-hogging processes, providing a faster and more efficient experience|[![](https://img.shields.io/github/languages/top/L0g0rhythm/WinOpti?color=pink&style=flat-square)](https://github.com/L0g0rhythm/WinOpti/graphs/contributors)|[![](https://flat.badgen.net/github/license/L0g0rhythm/WinOpti?label=)](https://github.com/L0g0rhythm/WinOpti/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/L0g0rhythm/WinOpti?style=flat-square&label=)](https://github.com/L0g0rhythm/WinOpti/graphs/code-frequency)| 45 | |[Frontline Register Cleaner](https://github.com/flutils/frontline-registry-cleaner#readme)|PC Optimization Software To Fix Errors, Protect Privacy & Remove Junk|[![](https://img.shields.io/github/languages/top/flutils/frontline-registry-cleaner?color=pink&style=flat-square)](https://github.com/flutils/frontline-registry-cleaner/graphs/contributors)|[![](https://flat.badgen.net/github/license/flutils/frontline-registry-cleaner?label=)](https://github.com/flutils/frontline-registry-cleaner/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/flutils/frontline-registry-cleaner?style=flat-square&label=)](https://github.com/flutils/frontline-registry-cleaner/graphs/code-frequency)| 46 | |[Optimize Explorer Performance](https://github.com/strakerbit/windows-explorer-optimizer#readme)|Improves the performance of File Explorer in Windows 11 by clearing the folder view cache and resetting its database|[![](https://img.shields.io/github/languages/top/strakerbit/windows-explorer-optimizer?color=pink&style=flat-square)](https://github.com/strakerbit/windows-explorer-optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/strakerbit/windows-explorer-optimizer?label=)](https://github.com/strakerbit/windows-explorer-optimizer/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/strakerbit/windows-explorer-optimizer?style=flat-square&label=)](https://github.com/strakerbit/windows-explorer-optimizer/graphs/code-frequency)| 47 | |[Windows Deep Cleanup Script](https://github.com/Pause1Navigator/Windows-Deep-Cleanup-Script#readme)|A PowerShell script that performs a comprehensive cleanup of a Windows system|[![](https://img.shields.io/github/languages/top/Pause1Navigator/Windows-Deep-Cleanup-Script?color=pink&style=flat-square)](https://github.com/Pause1Navigator/Windows-Deep-Cleanup-Script/graphs/contributors)|[![](https://flat.badgen.net/github/license/Pause1Navigator/Windows-Deep-Cleanup-Script?label=)](https://github.com/Pause1Navigator/Windows-Deep-Cleanup-Script/issues/2)|[![](https://img.shields.io/github/last-commit/Pause1Navigator/Windows-Deep-Cleanup-Script?style=flat-square&label=)](https://github.com/Pause1Navigator/Windows-Deep-Cleanup-Script/graphs/code-frequency)| 48 | |[Windows-Full-repair-and-performance-boost-tool](https://github.com/Danmachi1/Windows-Full-repair-and-performance-boost-tool#readme)|A script is designed to clean up un-needed cache, cookies and other temporary files from the computer then perform a bunch of repair commands|[![](https://img.shields.io/github/languages/top/Danmachi1/Windows-Full-repair-and-performance-boost-tool?color=pink&style=flat-square)](https://github.com/Danmachi1/Windows-Full-repair-and-performance-boost-tool/graphs/contributors)|[![](https://flat.badgen.net/github/license/Danmachi1/Windows-Full-repair-and-performance-boost-tool?label=)](https://github.com/Danmachi1/Windows-Full-repair-and-performance-boost-tool/issues/1)|[![](https://img.shields.io/github/last-commit/Danmachi1/Windows-Full-repair-and-performance-boost-tool?style=flat-square&label=)](https://github.com/Danmachi1/Windows-Full-repair-and-performance-boost-tool/graphs/code-frequency)| 49 | |[Windows 10/11 Cleanup & Performance Boost Tool](https://github.com/MinThutaEric26/PC_Speed_Booster_and_Cleaner#readme)|Optimizes system performance by cleaning files, logs, and defragmenting the disk|[![](https://img.shields.io/github/languages/top/MinThutaEric26/PC_Speed_Booster_and_Cleaner?color=pink&style=flat-square)](https://github.com/MinThutaEric26/PC_Speed_Booster_and_Cleaner/graphs/contributors)|[![](https://flat.badgen.net/github/license/MinThutaEric26/PC_Speed_Booster_and_Cleaner?label=)](https://github.com/MinThutaEric26/PC_Speed_Booster_and_Cleaner/issues/1)|[![](https://img.shields.io/github/last-commit/MinThutaEric26/PC_Speed_Booster_and_Cleaner?style=flat-square&label=)](https://github.com/MinThutaEric26/PC_Speed_Booster_and_Cleaner/graphs/code-frequency)| 50 | 51 | 52 | ### Optimizers [⌂](#-) 53 | |Repository|Short description|Language|License|Last commit| 54 | |:-:|:-:|:-:|:-:|:-:| 55 | |[WinTune](https://github.com/tranht17/WinTune#readme)|Tweak & optimize your Windows system|[![](https://img.shields.io/github/languages/top/tranht17/WinTune?color=pink&style=flat-square)](https://github.com/tranht17/WinTune/graphs/contributors)|[![](https://flat.badgen.net/github/license/tranht17/WinTune?label=)](https://github.com/tranht17/WinTune/blob/main/LICENCE)|[![](https://img.shields.io/github/last-commit/tranht17/WinTune?style=flat-square&label=)](https://github.com/tranht17/WinTune/graphs/code-frequency)| 56 | |[Awesome Win11](https://github.com/awesome-windows11/windows11#readme)|Windows 11 Settings, Tweaks, Scripts|[![](https://img.shields.io/github/languages/top/awesome-windows11/windows11?color=pink&style=flat-square)](https://github.com/awesome-windows11/windows11/graphs/contributors)|[![](https://flat.badgen.net/github/license/awesome-windows11/windows11?label=)](https://github.com/awesome-windows11/windows11/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/awesome-windows11/windows11?style=flat-square&label=)](https://github.com/awesome-windows11/windows11/graphs/code-frequency)| 57 | |[Windows Scripts](https://github.com/shoober420/windows11-scripts#readme)|Windows 11 Scripts|[![](https://img.shields.io/github/languages/top/shoober420/windows11-scripts?color=pink&style=flat-square)](https://github.com/shoober420/windows11-scripts/graphs/contributors)|[![](https://flat.badgen.net/github/license/shoober420/windows11-scripts?label=)](https://github.com/shoober420/windows11-scripts/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/shoober420/windows11-scripts?style=flat-square&label=)](https://github.com/shoober420/windows11-scripts/graphs/code-frequency)| 58 | |[OptimizedTools](https://github.com/NamOpt/OptimizedTools#readme)|A tool that helps to optimize Windows with famous tools|[![](https://img.shields.io/github/languages/top/NamOpt/OptimizedTools?color=pink&style=flat-square)](https://github.com/NamOpt/OptimizedTools/graphs/contributors)|[![](https://flat.badgen.net/github/license/NamOpt/OptimizedTools?label=)](https://github.com/NamOpt/OptimizedTools/blob/optimizedtools-main-readme/LICENSE)|[![](https://img.shields.io/github/last-commit/NamOpt/OptimizedTools?style=flat-square&label=)](https://github.com/NamOpt/OptimizedTools/graphs/code-frequency)| 59 | |[OptimizedTools++](https://github.com/NammIsADev/OptimizedToolsPlusPlus#readme)|A tool that helps to optimize Windows with famous tweak methods|[![](https://img.shields.io/github/languages/top/NammIsADev/OptimizedToolsPlusPlus?color=pink&style=flat-square)](https://github.com/NammIsADev/OptimizedToolsPlusPlus/graphs/contributors)|[![](https://flat.badgen.net/github/license/NammIsADev/OptimizedToolsPlusPlus?label=)](https://github.com/NammIsADev/OptimizedToolsPlusPlus/blob/main-development/LICENSE)|[![](https://img.shields.io/github/last-commit/NammIsADev/OptimizedToolsPlusPlus?style=flat-square&label=)](https://github.com/NammIsADev/OptimizedToolsPlusPlus/graphs/code-frequency)| 60 | |[Windows-Tweak](https://github.com/craftwar/Windows-Tweak#readme)|-|[![](https://img.shields.io/github/languages/top/craftwar/Windows-Tweak?color=pink&style=flat-square)](https://github.com/craftwar/Windows-Tweak/graphs/contributors)|[![](https://flat.badgen.net/github/license/craftwar/Windows-Tweak?label=)](https://github.com/craftwar/Windows-Tweak/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/craftwar/Windows-Tweak?style=flat-square&label=)](https://github.com/craftwar/Windows-Tweak/graphs/code-frequency)| 61 | |[Batlez Tweaks](https://github.com/Batlez/Batlez-Tweaks#readme)|A batch tweaking script that optimizes Windows 10 & 11 to provide the best gaming experience possible|[![](https://img.shields.io/github/languages/top/Batlez/Batlez-Tweaks?color=pink&style=flat-square)](https://github.com/Batlez/Batlez-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/Batlez/Batlez-Tweaks?label=)](https://github.com/Batlez/Batlez-Tweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Batlez/Batlez-Tweaks?style=flat-square&label=)](https://github.com/Batlez/Batlez-Tweaks/graphs/code-frequency)| 62 | |[Windows Essentials](https://github.com/borfei/windows-essentials#readme)|Set of tweaks to enhance your Windows experience|[![](https://img.shields.io/github/languages/top/borfei/windows-essentials?color=pink&style=flat-square)](https://github.com/borfei/windows-essentials/graphs/contributors)|[![](https://flat.badgen.net/github/license/borfei/windows-essentials?label=)](https://github.com/borfei/windows-essentials/blob/main/LICENSE)|[![](https://flat.badgen.net/static/status/Archived/624711?label=)](https://github.com/borfei/windows-essentials/graphs/code-frequency)| 63 | |[CoutX](https://github.com/UnLovedCookie/CoutX#readme)|Optimizer written in C++ and batch to give your computer a performance boost|[![](https://img.shields.io/github/languages/top/UnLovedCookie/CoutX?color=pink&style=flat-square)](https://github.com/UnLovedCookie/CoutX/graphs/contributors)|[![](https://flat.badgen.net/github/license/UnLovedCookie/CoutX?label=)](https://github.com/UnLovedCookie/CoutX/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/UnLovedCookie/CoutX?style=flat-square&label=)](https://github.com/UnLovedCookie/CoutX/graphs/code-frequency)| 64 | |[CleanWindows](https://github.com/EnesKeremAYDIN/CleanWindows#readme)|Tools to optimize Windows by removing bloatware, adjusting settings, and cleaning clutter|[![](https://img.shields.io/github/languages/top/EnesKeremAYDIN/CleanWindows?color=pink&style=flat-square)](https://github.com/EnesKeremAYDIN/CleanWindows/graphs/contributors)|[![](https://flat.badgen.net/github/license/EnesKeremAYDIN/CleanWindows?label=)](https://github.com/EnesKeremAYDIN/CleanWindows/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/EnesKeremAYDIN/CleanWindows?style=flat-square&label=)](https://github.com/EnesKeremAYDIN/CleanWindows/graphs/code-frequency)| 65 | |[Ghost Optimizer](https://github.com/louzkk/Ghost-Optimizer#readme)|A script to make Windows 10/11 lighter by removing bloatware, disabling services and reducing telemetry|[![](https://img.shields.io/github/languages/top/louzkk/Ghost-Optimizer?color=pink&style=flat-square)](https://github.com/louzkk/Ghost-Optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/louzkk/Ghost-Optimizer?label=)](https://github.com/louzkk/Ghost-Optimizer/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/louzkk/Ghost-Optimizer?style=flat-square&label=)](https://github.com/louzkk/Ghost-Optimizer/graphs/code-frequency)| 66 | |[GodMode-PowerPlan](https://github.com/viydevs/Godmode-Plan#readme)|A script to enable ultimate performance mode on Windows|[![](https://img.shields.io/github/languages/top/viydevs/Godmode-Plan?color=pink&style=flat-square)](https://github.com/viydevs/Godmode-Plan/graphs/contributors)|[![](https://flat.badgen.net/github/license/viydevs/Godmode-Plan?label=)](https://github.com/viydevs/Godmode-Plan/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/viydevs/Godmode-Plan?style=flat-square&label=)](https://github.com/viydevs/Godmode-Plan/graphs/code-frequency)| 67 | |[Optimized Power Scheme for Windows OS](https://github.com/ArtReeX/optimized-power-scheme#readme)|A script that creates an additional optimized Windows power scheme named "Optimized" with more than 500 hidden parameters have been changed design tailored for maximum performance when using AC power and maximum energy savings when using DC|[![](https://img.shields.io/github/languages/top/ArtReeX/optimized-power-scheme?color=pink&style=flat-square)](https://github.com/ArtReeX/optimized-power-scheme/graphs/contributors)|[![](https://flat.badgen.net/github/license/ArtReeX/optimized-power-scheme?label=)](https://github.com/ArtReeX/optimized-power-scheme/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ArtReeX/optimized-power-scheme?style=flat-square&label=)](https://github.com/ArtReeX/optimized-power-scheme/graphs/code-frequency)| 68 | |[Optimized Windows](https://github.com/tecgenesis/Optimized-Windows#readme)|An advanced optimization script for Windows that significantly improves system performance by optimizing system settings and cleaning unnecessary files|[![](https://img.shields.io/github/languages/top/tecgenesis/Optimized-Windows?color=pink&style=flat-square)](https://github.com/tecgenesis/Optimized-Windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/tecgenesis/Optimized-Windows?label=)](https://github.com/tecgenesis/Optimized-Windows/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/tecgenesis/Optimized-Windows?style=flat-square&label=)](https://github.com/tecgenesis/Optimized-Windows/graphs/code-frequency)| 69 | |[Perfect Windows 11](https://github.com/continueddev/win11-optimizer#readme)|A comprehensive toolkit of optimizations, customizations, and tweaks|[![](https://img.shields.io/github/languages/top/continueddev/win11-optimizer?color=pink&style=flat-square)](https://github.com/continueddev/win11-optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/continueddev/win11-optimizer?label=)](https://github.com/continueddev/win11-optimizer/blob/main/LICENSE.md)|[![](https://img.shields.io/github/last-commit/continueddev/win11-optimizer?style=flat-square&label=)](https://github.com/continueddev/win11-optimizer/graphs/code-frequency)| 70 | |[Project OptiTool](https://github.com/OptiStudioXD/OptiTool#readme)|Aims at improving your computer's performance through cleaning and managing applications, processes, and settings|[![](https://img.shields.io/github/languages/top/OptiStudioXD/OptiTool?color=pink&style=flat-square)](https://github.com/OptiStudioXD/OptiTool/graphs/contributors)|[![](https://flat.badgen.net/github/license/OptiStudioXD/OptiTool?label=)](https://github.com/OptiStudioXD/OptiTool/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/OptiStudioXD/OptiTool?style=flat-square&label=)](https://github.com/OptiStudioXD/OptiTool/graphs/code-frequency)| 71 | |[SionXT-TweaksWin10](https://github.com/Nerve11/SionXT-TweaksWin10#readme)|Tweaks for Windows 10 and maximize FPS, optimize Ping, reduce InputLag|[![](https://img.shields.io/github/languages/top/Nerve11/SionXT-TweaksWin10?color=pink&style=flat-square)](https://github.com/Nerve11/SionXT-TweaksWin10/graphs/contributors)|[![](https://flat.badgen.net/github/license/Nerve11/SionXT-TweaksWin10?label=)](https://github.com/Nerve11/SionXT-TweaksWin10/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Nerve11/SionXT-TweaksWin10?style=flat-square&label=)](https://github.com/Nerve11/SionXT-TweaksWin10/graphs/code-frequency)| 72 | |[W11-10-GAMING-OPTIMIZATION](https://github.com/hselimt/W11-10-GAMING-OPTIMIZATION#readme)|Gaming tweaks for Windows 10/11|[![](https://img.shields.io/github/languages/top/hselimt/W11-10-GAMING-OPTIMIZATION?color=pink&style=flat-square)](https://github.com/hselimt/W11-10-GAMING-OPTIMIZATION/graphs/contributors)|[![](https://flat.badgen.net/github/license/hselimt/W11-10-GAMING-OPTIMIZATION?label=)](https://github.com/hselimt/W11-10-GAMING-OPTIMIZATION/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/hselimt/W11-10-GAMING-OPTIMIZATION?style=flat-square&label=)](https://github.com/hselimt/W11-10-GAMING-OPTIMIZATION/graphs/code-frequency)| 73 | |[WinTweaks](https://github.com/Sly-Harvey/WinTweaks#readme)|Tweaks and configs for windows gaming|[![](https://img.shields.io/github/languages/top/Sly-Harvey/WinTweaks?color=pink&style=flat-square)](https://github.com/Sly-Harvey/WinTweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/Sly-Harvey/WinTweaks?label=)](https://github.com/Sly-Harvey/WinTweaks/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/Sly-Harvey/WinTweaks?style=flat-square&label=)](https://github.com/Sly-Harvey/WinTweaks/graphs/code-frequency)| 74 | |[Windows 11 Fix & Tweaks](https://github.com/kubaam/Windows-11-Fix-Tweaks#readme)|All-in-one batch file aims to streamline essential Windows 11 fixes, speed tweaks, privacy enhancements, and performance boosts|[![](https://img.shields.io/github/languages/top/kubaam/Windows-11-Fix-Tweaks?color=pink&style=flat-square)](https://github.com/kubaam/Windows-11-Fix-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/kubaam/Windows-11-Fix-Tweaks?label=)](https://github.com/kubaam/Windows-11-Fix-Tweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/kubaam/Windows-11-Fix-Tweaks?style=flat-square&label=)](https://github.com/kubaam/Windows-11-Fix-Tweaks/graphs/code-frequency)| 75 | |[Windows Optimizer Config](https://github.com/rakarmp/WindowsOptimizerConfig#readme)|Performance booster script for Windows 10 and later that helps optimize system performance, increase FPS in games, and reduce background services|[![](https://img.shields.io/github/languages/top/rakarmp/WindowsOptimizerConfig?color=pink&style=flat-square)](https://github.com/rakarmp/WindowsOptimizerConfig/graphs/contributors)|[![](https://flat.badgen.net/github/license/rakarmp/WindowsOptimizerConfig?label=)](https://github.com/rakarmp/WindowsOptimizerConfig/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/rakarmp/WindowsOptimizerConfig?style=flat-square&label=)](https://github.com/rakarmp/WindowsOptimizerConfig/graphs/code-frequency)| 76 | |[Windows-11-Latency-Optimization](https://github.com/NicholasBly/Windows-11-Latency-Optimization#readme)|Provides scripts to optimize Windows for enhanced latency for gaming and overall system responsiveness|[![](https://img.shields.io/github/languages/top/NicholasBly/Windows-11-Latency-Optimization?color=pink&style=flat-square)](https://github.com/NicholasBly/Windows-11-Latency-Optimization/graphs/contributors)|[![](https://flat.badgen.net/github/license/NicholasBly/Windows-11-Latency-Optimization?label=)](https://github.com/NicholasBly/Windows-11-Latency-Optimization/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/NicholasBly/Windows-11-Latency-Optimization?style=flat-square&label=)](https://github.com/NicholasBly/Windows-11-Latency-Optimization/graphs/code-frequency)| 77 | |[WindowsTweaks](https://github.com/PantiesIsStoopid/WindowsTweaks#readme)|An app that tweaks windows to optimise performance to reduce delay|[![](https://img.shields.io/github/languages/top/PantiesIsStoopid/WindowsTweaks?color=pink&style=flat-square)](https://github.com/PantiesIsStoopid/WindowsTweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/PantiesIsStoopid/WindowsTweaks?label=)](https://github.com/NicholasBly/Windows-11-Latency-Optimization/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/PantiesIsStoopid/WindowsTweaks?style=flat-square&label=)](https://github.com/PantiesIsStoopid/WindowsTweaks/graphs/code-frequency)| 78 | |[Optimized Power Scheme for Windows OS](https://github.com/ArtReeX/optimized-power-scheme#readme)|A script that creates an additional optimized Windows power scheme named "Optimized" with more than 500 hidden parameters have been changed design tailored for maximum performance when using AC power and maximum energy savings when using DC|[![](https://img.shields.io/github/languages/top/ArtReeX/optimized-power-scheme?color=pink&style=flat-square)](https://github.com/ArtReeX/optimized-power-scheme/graphs/contributors)|[![](https://flat.badgen.net/github/license/ArtReeX/optimized-power-scheme?label=)](https://github.com/ArtReeX/optimized-power-scheme/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ArtReeX/optimized-power-scheme?style=flat-square&label=)](https://github.com/ArtReeX/optimized-power-scheme/graphs/code-frequency)| 79 | |[Optimizing-File](https://github.com/Awneti/Optimizing-File#readme)|A windows system checking file made for optimizing your pc/laptop|[![](https://img.shields.io/github/languages/top/Awneti/Optimizing-File?color=pink&style=flat-square)](https://github.com/Awneti/Optimizing-File/graphs/contributors)|[![](https://flat.badgen.net/github/license/Awneti/Optimizing-File?label=)](https://github.com/Awneti/Optimizing-File/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Awneti/Optimizing-File?style=flat-square&label=)](https://github.com/Awneti/Optimizing-File/graphs/code-frequency)| 80 | |[Windows-Optimizer-Tool](https://github.com/xkitz7/Windows-Optimizer-Tool#readme)|Make your windows better and faster using this tool.|[![](https://img.shields.io/github/languages/top/xkitz7/Windows-Optimizer-Tool?color=pink&style=flat-square)](https://github.com/xkitz7/Windows-Optimizer-Tool/graphs/contributors)|[![](https://flat.badgen.net/badge/license/Other/blue?label=)](https://github.com/xkitz7/Windows-Optimizer-Tool/blob/main/license%20and%20ownership%20notice%20(MUST%20READ%20THIS%20BEFORE%20USING%20THE%20TOOL))|[![](https://img.shields.io/github/last-commit/xkitz7/Windows-Optimizer-Tool?style=flat-square&label=)](https://github.com/xkitz7/Windows-Optimizer-Tool/graphs/code-frequency)| 81 | |[AIO Windows Optimizer](https://github.com/DaddyMadu/Windows-Optimzier#readme)|A temp cleaner, registry cleaner, gaming tweaks, automated app installer and much more script|[![](https://img.shields.io/github/languages/top/DaddyMadu/Windows-Optimzier?color=pink&style=flat-square)](https://github.com/DaddyMadu/Windows-Optimzier/graphs/contributors)|[![](https://flat.badgen.net/github/license/DaddyMadu/Windows-Optimzier?label=)](https://github.com/DaddyMadu/Windows-Optimzier/issues/2)|[![](https://img.shields.io/github/last-commit/DaddyMadu/Windows-Optimzier?style=flat-square&label=)](https://github.com/DaddyMadu/Windows-Optimzier/graphs/code-frequency)| 82 | |[Advanced Windows Tweaker](https://github.com/MartinLXXX6/Advanced-Windows-Tweaks#readme)|A versatile batch file to optimize and debloat any Windows installation|[![](https://img.shields.io/github/languages/top/MartinLXXX6/Advanced-Windows-Tweaks?color=pink&style=flat-square)](https://github.com/MartinLXXX6/Advanced-Windows-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/MartinLXXX6/Advanced-Windows-Tweaks?label=)](https://github.com/MartinLXXX6/Advanced-Windows-Tweaks/issues/1)|[![](https://img.shields.io/github/last-commit/MartinLXXX6/Advanced-Windows-Tweaks?style=flat-square&label=)](https://github.com/MartinLXXX6/Advanced-Windows-Tweaks/graphs/code-frequency)| 83 | |[Gaming OS Tweaker](https://github.com/sherifmagdy32/gaming_os_tweaker#readme)|Scripts that attempts to debloat, have low input lag, low latency, better hitreg and improved performance|[![](https://img.shields.io/github/languages/top/sherifmagdy32/gaming_os_tweaker?color=pink&style=flat-square)](https://github.com/sherifmagdy32/gaming_os_tweaker/graphs/contributors)|[![](https://flat.badgen.net/github/license/sherifmagdy32/gaming_os_tweaker?label=)](https://github.com/sherifmagdy32/gaming_os_tweaker)|[![](https://img.shields.io/github/last-commit/sherifmagdy32/gaming_os_tweaker?style=flat-square&label=)](https://github.com/sherifmagdy32/gaming_os_tweaker/graphs/code-frequency)| 84 | |[ktweaker](https://github.com/3libs/ktweaker#readme)|A collection of handy scripts and tasks to optimize your Windows system performance|[![](https://img.shields.io/github/languages/top/3libs/ktweaker?color=pink&style=flat-square)](https://github.com/3libs/ktweaker/graphs/contributors)|[![](https://flat.badgen.net/github/license/3libs/ktweaker?label=)](https://github.com/3libs/ktweaker/issues/1)|[![](https://img.shields.io/github/last-commit/3libs/ktweaker?style=flat-square&label=)](https://github.com/3libs/ktweaker/graphs/code-frequency)| 85 | |[Lynx Optimizer](https://github.com/caxzy/LynxOptimizer#readme)|Optimize PC for best performace, ping and reduce input delay|[![](https://img.shields.io/github/languages/top/caxzy/LynxOptimizer?color=pink&style=flat-square)](https://github.com/caxzy/LynxOptimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/caxzy/LynxOptimizer?label=)](https://github.com/caxzy/LynxOptimizer/issues/12)|[![](https://img.shields.io/github/last-commit/caxzy/LynxOptimizer?style=flat-square&label=)](https://github.com/caxzy/LynxOptimizer/graphs/code-frequency)| 86 | |[Melody's Windows 11 Basic Optimizer](https://github.com/SheMelody/win11-basic-optimizer#readme)|Restore your system's performance after upgrading from Windows 10 to Windows 11|[![](https://img.shields.io/github/languages/top/SheMelody/win11-basic-optimizer?color=pink&style=flat-square)](https://github.com/SheMelody/win11-basic-optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/SheMelody/win11-basic-optimizer?label=)](https://github.com/SheMelody/win11-basic-optimizer/issues/2)|[![](https://img.shields.io/github/last-commit/SheMelody/win11-basic-optimizer?style=flat-square&label=)](https://github.com/SheMelody/win11-basic-optimizer/graphs/code-frequency)| 87 | |[Win10-11-Optimizer](https://github.com/seddsaheb/Win10-11-Optimizer#readme)|A batch script for optimizing Windows 10/11 by disabling unnecessary services and processes to enhance system performance|[![](https://img.shields.io/github/languages/top/seddsaheb/Win10-11-Optimizer?color=pink&style=flat-square)](https://github.com/seddsaheb/Win10-11-Optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/seddsaheb/Win10-11-Optimizer?label=)](https://github.com/seddsaheb/Win10-11-Optimizer/issues/1)|[![](https://img.shields.io/github/last-commit/seddsaheb/Win10-11-Optimizer?style=flat-square&label=)](https://github.com/seddsaheb/Win10-11-Optimizer/graphs/code-frequency)| 88 | |[Windows Tweaks](https://github.com/kubsonxtm/Windows-Tweaks#readme)|Windows scripts to boost your PC's game|[![](https://img.shields.io/github/languages/top/kubsonxtm/Windows-Tweaks?color=pink&style=flat-square)](https://github.com/kubsonxtm/Windows-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/kubsonxtm/Windows-Tweaks?label=)](https://github.com/kubsonxtm/Windows-Tweaks)|[![](https://img.shields.io/github/last-commit/kubsonxtm/Windows-Tweaks?style=flat-square&label=)](https://github.com/kubsonxtm/Windows-Tweaks/graphs/code-frequency)| 89 | |[Windows_Optimisation_Scripts](https://github.com/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts#readme)|Four device optimisation scripts that can be used on Windows 10/ 11 devices to improve the overall operation of your computer system|[![](https://img.shields.io/github/languages/top/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts?color=pink&style=flat-square)](https://github.com/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts/graphs/contributors)|[![](https://flat.badgen.net/github/license/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts?label=)](https://github.com/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts/issues/1)|[![](https://img.shields.io/github/last-commit/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts?style=flat-square&label=)](https://github.com/H90HSORH0J30JHDSRH/Windows_Optimisation_Scripts/graphs/code-frequency)| 90 | |[TazxPerfomance](https://github.com/TazxTweaks/TazxPerfomance#readme)|A .bat script designed to optimize the performance of Windows 10|[![](https://img.shields.io/github/languages/top/TazxTweaks/TazxPerfomance?color=pink&style=flat-square)](https://github.com/TazxTweaks/TazxPerfomance/graphs/contributors)|[![](https://flat.badgen.net/github/license/TazxTweaks/TazxPerfomance?label=)](https://github.com/TazxTweaks/TazxPerfomance/issues/1)|[![](https://img.shields.io/github/last-commit/TazxTweaks/TazxPerfomance?style=flat-square&label=)](https://github.com/TazxTweaks/TazxPerfomance/graphs/code-frequency)| 91 | |[Tweaks-for-windows](https://github.com/NOBSTWEAKS/Tweaks-for-windows#readme)|Basic Tweaks for windows|[![](https://img.shields.io/github/languages/top/NOBSTWEAKS/Tweaks-for-windows?color=pink&style=flat-square)](https://github.com/NOBSTWEAKS/Tweaks-for-windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/NOBSTWEAKS/Tweaks-for-windows?label=)](https://github.com/NOBSTWEAKS/Tweaks-for-windows/issues/1)|[![](https://img.shields.io/github/last-commit/NOBSTWEAKS/Tweaks-for-windows?style=flat-square&label=)](https://github.com/NOBSTWEAKS/Tweaks-for-windows/graphs/code-frequency)| 92 | |[ET Optimizer](https://github.com/semazurek/ET-Optimizer#readme)|ET is a powerful application to improve performance, debloat, optimize and enhance privacy for Windows 10/11.|[![](https://img.shields.io/github/languages/top/semazurek/ET-Optimizer?color=pink&style=flat-square)](https://github.com/semazurek/ET-Optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/semazurek/ET-Optimizer?label=)](https://github.com/semazurek/ET-Optimizer/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/semazurek/ET-Optimizer?style=flat-square&label=)](https://github.com/semazurek/ET-Optimizer/graphs/code-frequency)| 93 | |[RyTuneX](https://github.com/rayenghanmi/RyTuneX#readme)|A comprehensive system optimization tool designed to enhance the performance, privacy, and usability of Windows systems|[![](https://img.shields.io/github/languages/top/rayenghanmi/RyTuneX?color=pink&style=flat-square)](https://github.com/rayenghanmi/RyTuneX/graphs/contributors)|[![](https://flat.badgen.net/github/license/rayenghanmi/RyTuneX?label=)](https://github.com/rayenghanmi/RyTuneX/blob/main/LICENSE.md)|[![](https://img.shields.io/github/last-commit/rayenghanmi/RyTuneX?style=flat-square&label=)](https://github.com/rayenghanmi/RyTuneX/graphs/code-frequency)| 94 | |[QuickBoost](https://github.com/SanGraphic/QuickBoost#readme)|Automated Windows 10 / 11 Tweaking Utility|[![](https://img.shields.io/github/languages/top/SanGraphic/QuickBoost?color=pink&style=flat-square)](https://github.com/SanGraphic/QuickBoost/graphs/contributors)|[](https://github.com/SanGraphic/QuickBoost/blob/main/License)|[![](https://img.shields.io/github/last-commit/SanGraphic/QuickBoost?style=flat-square&label=)](https://github.com/SanGraphic/QuickBoost/graphs/code-frequency)| 95 | |[PWin11 Tweaker](https://github.com/PWin11-Tweaker/PWin11-Tweaker#readme)|A lightweight, open-source utility that allows you to tweak various aspects of Windows 11 without delving into complex system settings or third-party software|[![](https://img.shields.io/github/languages/top/PWin11-Tweaker/PWin11-Tweaker?color=pink&style=flat-square)](https://github.com/PWin11-Tweaker/PWin11-Tweaker/graphs/contributors)|[![](https://flat.badgen.net/github/license/PWin11-Tweaker/PWin11-Tweaker?label=)](https://github.com/PWin11-Tweaker/PWin11-Tweaker/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/PWin11-Tweaker/PWin11-Tweaker?style=flat-square&label=)](https://github.com/PWin11-Tweaker/PWin11-Tweaker/graphs/code-frequency)| 96 | |[GTweak](https://github.com/Greedeks/GTweak#readme)|Perfect setup of Windows 10 & Windows 11 with the choice of options you need for better convenience and performance|[![](https://img.shields.io/github/languages/top/Greedeks/GTweak?color=pink&style=flat-square)](https://github.com/Greedeks/GTweak/graphs/contributors)|[![](https://flat.badgen.net/github/license/Greedeks/GTweak?label=)](https://github.com/Greedeks/GTweak/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Greedeks/GTweak?style=flat-square&label=)](https://github.com/Greedeks/GTweak/graphs/code-frequency)| 97 | |[NZTS APP](https://github.com/nezhatweaks/nztsapp#readme)|A performance optimization tool designed to enhance your gaming experience by increasing frames per second (FPS) in resource-intensive games|[![](https://img.shields.io/github/languages/top/nezhatweaks/nztsapp?color=pink&style=flat-square)](https://github.com/nezhatweaks/nztsapp/graphs/contributors)|[![](https://flat.badgen.net/github/license/nezhatweaks/nztsapp?label=)](https://github.com/nezhatweaks/nztsapp/issues/4)|[![](https://img.shields.io/github/last-commit/nezhatweaks/nztsapp?style=flat-square&label=)](https://github.com/nezhatweaks/nztsapp/graphs/code-frequency)| 98 | |[ToX Free Utility](https://github.com/ToXTweaks/ToX-Free-Utility#readme)|Unlocks hidden tweaks and optimizations to make Windows faster, smoother and more responsive|[![](https://img.shields.io/github/languages/top/ToXTweaks/ToX-Free-Utility?color=pink&style=flat-square)](https://github.com/ToXTweaks/ToX-Free-Utility/graphs/contributors)|[![](https://flat.badgen.net/github/license/ToXTweaks/ToX-Free-Utility?label=)](https://github.com/ToXTweaks/ToX-Free-Utility/issues/1)|[![](https://img.shields.io/github/last-commit/ToXTweaks/ToX-Free-Utility?style=flat-square&label=)](https://github.com/ToXTweaks/ToX-Free-Utility/graphs/code-frequency)| 99 | |[CovEngineA](https://github.com/FulfilledCovenant/CovEngineA#readme)|An open-source semi-automated optimizations for improved overall windows 10-11 experience|[![](https://img.shields.io/github/languages/top/FulfilledCovenant/CovEngineA?color=pink&style=flat-square)](https://github.com/FulfilledCovenant/CovEngineA/graphs/contributors)|[![](https://flat.badgen.net/github/license/FulfilledCovenant/CovEngineA?label=)](https://github.com/FulfilledCovenant/CovEngineA/blob/main/LICENSE)|[![](https://flat.badgen.net/static/status/Archived/624711?label=)](https://github.com/FulfilledCovenant/CovEngineA/graphs/code-frequency)| 100 | |[Windows_RE-Install_Optimize](https://github.com/skysunny2062/Windows_RE-Install_Optimize#readme)|A tool developed with Python and Batch scripts to optimize UI/UX for a freshly installed Windows 11 24H2 system and automate the installation of essential software|[![](https://img.shields.io/github/languages/top/skysunny2062/Windows_RE-Install_Optimize?color=pink&style=flat-square)](https://github.com/skysunny2062/Windows_RE-Install_Optimize/graphs/contributors)|[![](https://flat.badgen.net/github/license/skysunny2062/Windows_RE-Install_Optimize?label=)](https://github.com/skysunny2062/Windows_RE-Install_Optimize/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/skysunny2062/Windows_RE-Install_Optimize?style=flat-square&label=)](https://github.com/skysunny2062/Windows_RE-Install_Optimize/graphs/code-frequency)| 101 | |[OrdinarySpace](https://github.com/P3NG0DZ/OrdinarySpace#readme)|A powerful tool designed to help you manage and optimize your Windows system|[![](https://img.shields.io/github/languages/top/P3NG0DZ/OrdinarySpace?color=pink&style=flat-square)](https://github.com/P3NG0DZ/OrdinarySpace/graphs/contributors)|[![](https://flat.badgen.net/github/license/P3NG0DZ/OrdinarySpace?label=)](https://github.com/P3NG0DZ/OrdinarySpace/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/P3NG0DZ/OrdinarySpace?style=flat-square&label=)](https://github.com/P3NG0DZ/OrdinarySpace/graphs/code-frequency)| 102 | |[OptiForge](https://github.com/devAlphaSystem/Alpha-System-OptiForge#readme)|A system optimization tool built with NodeJS that streamlines performance, enhances privacy, and boosts gaming by offering modular options to remove bloatware, disable telemetry, tweak system settings, and execute custom commands|[![](https://img.shields.io/github/languages/top/devAlphaSystem/Alpha-System-OptiForge?color=pink&style=flat-square)](https://github.com/devAlphaSystem/Alpha-System-OptiForge/graphs/contributors)|[![](https://flat.badgen.net/github/license/devAlphaSystem/Alpha-System-OptiForge?label=)](https://github.com/devAlphaSystem/Alpha-System-OptiForge/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/devAlphaSystem/Alpha-System-OptiForge?style=flat-square&label=)](https://github.com/devAlphaSystem/Alpha-System-OptiForge/graphs/code-frequency)| 103 | |[Windows](https://github.com/uk-dave/Windows#readme)|Various Windows OS tweaks and scripts|[![](https://img.shields.io/github/languages/top/uk-dave/Windows?color=pink&style=flat-square)](https://github.com/uk-dave/Windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/uk-dave/Windows?label=)](https://github.com/uk-dave/Windows/issues/1)|[![](https://img.shields.io/github/last-commit/uk-dave/Windows?style=flat-square&label=)](https://github.com/uk-dave/Windows/graphs/code-frequency)| 104 | |[Operating System Optimizer](https://github.com/hotaanshuman4/OS_Optimizer#readme)|An advanced tool designed to improve the speed, efficiency and overall performance of your Windows system|[![](https://img.shields.io/github/languages/top/hotaanshuman4/OS_Optimizer?color=pink&style=flat-square)](https://github.com/hotaanshuman4/OS_Optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/hotaanshuman4/OS_Optimizer?label=)](https://github.com/hotaanshuman4/OS_Optimizer/issues/1)|[![](https://img.shields.io/github/last-commit/hotaanshuman4/OS_Optimizer?style=flat-square&label=)](https://github.com/hotaanshuman4/OS_Optimizer/graphs/code-frequency)| 105 | |[GOS: Gaming Optimization Script](https://github.com/ltx0101/GOS#readme)|A comprehensive batch script created for Windows users to streamline their gaming setup, enhance network performance, repair the Windows environment, and revert changes to default settings when needed|[![](https://img.shields.io/github/languages/top/ltx0101/GOS?color=pink&style=flat-square)](https://github.com/ltx0101/GOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/ltx0101/GOS?label=)](https://github.com/ltx0101/GOS/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ltx0101/GOS?style=flat-square&label=)](https://github.com/ltx0101/GOS/graphs/code-frequency)| 106 | |[Windows Optimisation Pack](https://github.com/Marvin700/Windows_Optimisation_Pack#readme)|Debloat & Optimise your Windows|[![](https://img.shields.io/github/languages/top/Marvin700/Windows_Optimisation_Pack?color=pink&style=flat-square)](https://github.com/Marvin700/Windows_Optimisation_Pack/graphs/contributors)|[![](https://flat.badgen.net/github/license/Marvin700/Windows_Optimisation_Pack?label=)](https://github.com/Marvin700/Windows_Optimisation_Pack/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Marvin700/Windows_Optimisation_Pack?style=flat-square&label=)](https://github.com/Marvin700/Windows_Optimisation_Pack/graphs/code-frequency)| 107 | |[AIO_Optimizer](https://github.com/as2648as/AIO_Optimizer#readme)|Windows 11 (All-In-One) Optimization Script|[![](https://img.shields.io/github/languages/top/as2648as/AIO_Optimizer?color=pink&style=flat-square)](https://github.com/as2648as/AIO_Optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/as2648as/AIO_Optimizer?label=)](https://github.com/as2648as/AIO_Optimizer/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/as2648as/AIO_Optimizer?style=flat-square&label=)](https://github.com/as2648as/AIO_Optimizer/graphs/code-frequency)| 108 | |[All-win-1](https://github.com/filipelperes/All-win-1#readme)|A PowerShell-based tool designed to simplify your Windows experience|[![](https://img.shields.io/github/languages/top/filipelperes/All-win-1?color=pink&style=flat-square)](https://github.com/filipelperes/All-win-1/graphs/contributors)|[![](https://flat.badgen.net/github/license/filipelperes/All-win-1?label=)](https://github.com/filipelperes/All-win-1/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/filipelperes/All-win-1?style=flat-square&label=)](https://github.com/filipelperes/All-win-1/graphs/code-frequency)| 109 | |[Better Windows](https://github.com/HardcodeCoder/BetterWindows#readme)|A comprehensive set of tweaks to make Windows Better|[![](https://img.shields.io/github/languages/top/HardcodeCoder/BetterWindows?color=pink&style=flat-square)](https://github.com/HardcodeCoder/BetterWindows/graphs/contributors)|[![](https://flat.badgen.net/github/license/HardcodeCoder/BetterWindows?label=)](https://github.com/HardcodeCoder/BetterWindows/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/HardcodeCoder/BetterWindows?style=flat-square&label=)](https://github.com/HardcodeCoder/BetterWindows/graphs/code-frequency)| 110 | |[FixOs](https://github.com/deadproject/FixOs#readme)|A PowerShell script designed to optimize and customize your Windows experience|[![](https://img.shields.io/github/languages/top/deadproject/FixOs?color=pink&style=flat-square)](https://github.com/deadproject/FixOs/graphs/contributors)|[![](https://flat.badgen.net/github/license/deadproject/FixOs?label=)](https://github.com/deadproject/FixOs/blob/main/LICENSE.md)|[![](https://img.shields.io/github/last-commit/deadproject/FixOs?style=flat-square&label=)](https://github.com/deadproject/FixOs/graphs/code-frequency)| 111 | |[Fresh-Script](https://github.com/YurinDoctrine/Fresh-Script#readme)|A tuner script works on Windows 10 and Windows 11|[![](https://img.shields.io/github/languages/top/YurinDoctrine/Fresh-Script?color=pink&style=flat-square)](https://github.com/YurinDoctrine/Fresh-Script/graphs/contributors)|[![](https://flat.badgen.net/github/license/YurinDoctrine/Fresh-Script?label=)](https://github.com/YurinDoctrine/Fresh-Script/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/YurinDoctrine/Fresh-Script?style=flat-square&label=)](https://github.com/YurinDoctrine/Fresh-Script/graphs/code-frequency)| 112 | |[PCTurboBoost](https://github.com/SoahCeruP/PCTurboBoost#readme)|A PowerShell script designed to optimize and turbocharge your Windows PC by improving performance, removing unnecessary applications, and repairing system issues|[![](https://img.shields.io/github/languages/top/SoahCeruP/PCTurboBoost?color=pink&style=flat-square)](https://github.com/SoahCeruP/PCTurboBoost/graphs/contributors)|[![](https://flat.badgen.net/github/license/SoahCeruP/PCTurboBoost?label=)](https://github.com/SoahCeruP/PCTurboBoost/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/SoahCeruP/PCTurboBoost?style=flat-square&label=)](https://github.com/SoahCeruP/PCTurboBoost/graphs/code-frequency)| 113 | |[Sophia Script for Windows](https://github.com/farag2/Sophia-Script-for-Windows#readme)|The most powerful PowerShell module for fine-tuning Windows|[![](https://img.shields.io/github/languages/top/farag2/Sophia-Script-for-Windows?color=pink&style=flat-square)](https://github.com/farag2/Sophia-Script-for-Windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/farag2/Sophia-Script-for-Windows?label=)](https://github.com/farag2/Sophia-Script-for-Windows/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/farag2/Sophia-Script-for-Windows?style=flat-square&label=)](https://github.com/farag2/Sophia-Script-for-Windows/graphs/code-frequency)| 114 | |[windows-tools](https://github.com/jebofponderworthy/windows-tools#readme)|A toolset for improvement of performance of Windows desktop and server operating systems|[![](https://img.shields.io/github/languages/top/jebofponderworthy/windows-tools?color=pink&style=flat-square)](https://github.com/jebofponderworthy/windows-tools/graphs/contributors)|[![](https://flat.badgen.net/github/license/jebofponderworthy/windows-tools?label=)](https://github.com/jebofponderworthy/windows-tools/issues/7)|[![](https://img.shields.io/github/last-commit/jebofponderworthy/windows-tools?style=flat-square&label=)](https://github.com/jebofponderworthy/windows-tools/graphs/code-frequency)| 115 | |[Tweak Windows](https://github.com/danielfrade/windows#readme)|Optimizing Windows with PowerShell|[![](https://img.shields.io/github/languages/top/danielfrade/windows?color=pink&style=flat-square)](https://github.com/danielfrade/windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/danielfrade/windows?label=)](https://github.com/danielfrade/windows/issues/1)|[![](https://img.shields.io/github/last-commit/danielfrade/windows?style=flat-square&label=)](https://github.com/danielfrade/windows/graphs/code-frequency)| 116 | |[WinOptimizer](https://github.com/sergiob32/WinOptimizer#readme)|It is an advanced tool written in PowerShell that allows you to optimize, clean and strengthen the privacy and security of Windows 7, 10 and 11 operating systems|[![](https://img.shields.io/github/languages/top/sergiob32/WinOptimizer?color=pink&style=flat-square)](https://github.com/sergiob32/WinOptimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/sergiob32/WinOptimizer?label=)](https://github.com/sergiob32/WinOptimizer/issues/1)|[![](https://img.shields.io/github/last-commit/sergiob32/WinOptimizer?style=flat-square&label=)](https://github.com/sergiob32/WinOptimizer/graphs/code-frequency)| 117 | |[Windows Tweak & Backup Script](https://github.com/paimmauricio/WindowsTweak#readme)|A script developed to optimize and adjust Windows settings, ensuring better performance and user experience|[![](https://img.shields.io/github/languages/top/paimmauricio/WindowsTweak?color=pink&style=flat-square)](https://github.com/paimmauricio/WindowsTweak/graphs/contributors)|[![](https://flat.badgen.net/github/license/paimmauricio/WindowsTweak?label=)](https://github.com/paimmauricio/WindowsTweak/issues/1)|[![](https://img.shields.io/github/last-commit/paimmauricio/WindowsTweak?style=flat-square&label=)](https://github.com/paimmauricio/WindowsTweak/graphs/code-frequency)| 118 | |[WindowsX](https://github.com/orafaelmiguel/WindowsX#readme)|Aims to automate the configuration and optimization of Windows 10 to obtain maximum performance, seeking a cleaner and faster operating system|[![](https://img.shields.io/github/languages/top/orafaelmiguel/WindowsX?color=pink&style=flat-square)](https://github.com/orafaelmiguel/WindowsX/graphs/contributors)|[![](https://flat.badgen.net/github/license/orafaelmiguel/WindowsX?label=)](https://github.com/orafaelmiguel/WindowsX/issues/1)|[![](https://img.shields.io/github/last-commit/orafaelmiguel/WindowsX?style=flat-square&label=)](https://github.com/orafaelmiguel/WindowsX/graphs/code-frequency)| 119 | |[windows-ltsc-by-prp](https://github.com/puripong1st/windows-ltsc-by-prp#readme)|windows optimize for gamming by prp|[![](https://img.shields.io/github/languages/top/puripong1st/windows-ltsc-by-prp?color=pink&style=flat-square)](https://github.com/puripong1st/windows-ltsc-by-prp/graphs/contributors)|[![](https://flat.badgen.net/github/license/puripong1st/windows-ltsc-by-prp?label=)](https://github.com/puripong1st/windows-ltsc-by-prp/issues/1)|[![](https://img.shields.io/github/last-commit/puripong1st/windows-ltsc-by-prp?style=flat-square&label=)](https://github.com/puripong1st/windows-ltsc-by-prp/graphs/code-frequency)| 120 | |[Windows_Optimizer](https://github.com/AndrewAxys/Windows_Optimizer#readme)|Boosts fps, removes delay in games and boosts Windows|[![](https://img.shields.io/github/languages/top/AndrewAxys/Windows_Optimizer?color=pink&style=flat-square)](https://github.com/AndrewAxys/Windows_Optimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/AndrewAxys/Windows_Optimizer?label=)](https://github.com/AndrewAxys/Windows_Optimizer/issues/1)|[![](https://img.shields.io/github/last-commit/AndrewAxys/Windows_Optimizer?style=flat-square&label=)](https://github.com/AndrewAxys/Windows_Optimizer/graphs/code-frequency)| 121 | |[Jurmik Tweaks](https://github.com/TheJurmikDev/Jurmik-Tweaks#readme)|A powerful Windows optimization tool that helps you improve performance, disable unnecessary services, and tweak system settings|[![](https://img.shields.io/github/languages/top/TheJurmikDev/Jurmik-Tweaks?color=pink&style=flat-square)](https://github.com/TheJurmikDev/Jurmik-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/TheJurmikDev/Jurmik-Tweaks?label=)](https://github.com/TheJurmikDev/Jurmik-Tweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/TheJurmikDev/Jurmik-Tweaks?style=flat-square&label=)](https://github.com/TheJurmikDev/Jurmik-Tweaks/graphs/code-frequency)| 122 | |[ApthyTweaks](https://github.com/Apathyy322/ApthyTweaks#readme)|A modern optimization tool for Windows 10/11|[![](https://img.shields.io/github/languages/top/Apathyy322/ApthyTweaks?color=pink&style=flat-square)](https://github.com/Apathyy322/ApthyTweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/Apathyy322/ApthyTweaks?label=)](https://github.com/Apathyy322/ApthyTweaks/issues/1)|[![](https://img.shields.io/github/last-commit/Apathyy322/ApthyTweaks?style=flat-square&label=)](https://github.com/Apathyy322/ApthyTweaks/graphs/code-frequency)| 123 | |[FPS-TWEAKER-0.1](https://github.com/konatoFPS/FPS-TWEAKER-0.1#readme)|Easy Windows, registry and Nvidia panel optimizer|[![](https://img.shields.io/github/languages/top/konatoFPS/FPS-TWEAKER-0.1?color=pink&style=flat-square)](https://github.com/konatoFPS/FPS-TWEAKER-0.1/graphs/contributors)|[![](https://flat.badgen.net/github/license/konatoFPS/FPS-TWEAKER-0.1?label=)](https://github.com/konatoFPS/FPS-TWEAKER-0.1/issues/1)|[![](https://img.shields.io/github/last-commit/konatoFPS/FPS-TWEAKER-0.1?style=flat-square&label=)](https://github.com/konatoFPS/FPS-TWEAKER-0.1/graphs/code-frequency)| 124 | |[optimization-panel](https://github.com/Murillopl/optimization-panel#readme)|This project aims to provide a Windows optimization panel, featuring executable files and registry edits designed to enhance the performance and fluidity of the Windows operating system|[![](https://img.shields.io/github/languages/top/Murillopl/optimization-panel?color=pink&style=flat-square)](https://github.com/Murillopl/optimization-panel/graphs/contributors)|[![](https://flat.badgen.net/github/license/Murillopl/optimization-panel?label=)](https://github.com/Murillopl/optimization-panel/issues/1)|[![](https://img.shields.io/github/last-commit/Murillopl/optimization-panel?style=flat-square&label=)](https://github.com/Murillopl/optimization-panel/graphs/code-frequency)| 125 | |[Windows 11 Performance Application](https://github.com/Mr123keelos/Win11PerformanceApp-Python#readme)|Windows 11 optimization software coded in Python|[![](https://img.shields.io/github/languages/top/Mr123keelos/Win11PerformanceApp-Python?color=pink&style=flat-square)](https://github.com/Mr123keelos/Win11PerformanceApp-Python/graphs/contributors)|[![](https://flat.badgen.net/github/license/Mr123keelos/Win11PerformanceApp-Python?label=)](https://github.com/Mr123keelos/Win11PerformanceApp-Python/issues/2)|[![](https://img.shields.io/github/last-commit/Mr123keelos/Win11PerformanceApp-Python?style=flat-square&label=)](https://github.com/Mr123keelos/Win11PerformanceApp-Python/graphs/code-frequency)| 126 | |[W11Boost](https://github.com/felikcat/W11Boost#readme)|Multi-choice Windows optimizer that prioritizes breaking nothing|[![](https://img.shields.io/github/languages/top/felikcat/W11Boost?color=pink&style=flat-square)](https://github.com/felikcat/W11Boost/graphs/contributors)|[![](https://flat.badgen.net/github/license/felikcat/W11Boost?label=)](https://github.com/felikcat/W11Boost/blob/master/LICENSE)|[![](https://flat.badgen.net/static/status/Archived/624711?label=)](https://github.com/felikcat/W11Boost/graphs/code-frequency)| 127 | |[QuickRapidX](https://github.com/Good4Fox/QuickRapidX#readme)|Offers a wide range of features to help manage and optimize Windows 10 and 11 operating systems|[![](https://img.shields.io/github/languages/top/Good4Fox/QuickRapidX?color=pink&style=flat-square)](https://github.com/Good4Fox/QuickRapidX/graphs/contributors)|[![](https://flat.badgen.net/github/license/Good4Fox/QuickRapidX?label=)](https://github.com/Good4Fox/QuickRapidX/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Good4Fox/QuickRapidX?style=flat-square&label=)](https://github.com/Good4Fox/QuickRapidX/graphs/code-frequency)| 128 | |[Mani Windows Tweaks](https://github.com/Imran817/Windows-Tweaks#readme)|Personalize Windows with cool Tweaks|[![](https://img.shields.io/github/languages/top/Imran817/Windows-Tweaks?color=pink&style=flat-square)](https://github.com/Imran817/Windows-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/Imran817/Windows-Tweaks?label=)](https://github.com/Imran817/Windows-Tweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Imran817/Windows-Tweaks?style=flat-square&label=)](https://github.com/Imran817/Windows-Tweaks/graphs/code-frequency)| 129 | |[Windows 11 Tweaker "Союз"](https://github.com/yoshinolalala/tweaker-soyuz#readme)|A powerful and easy-to-use tool to both improve the performance and personalize Windows 11 appearance|[![](https://img.shields.io/github/languages/top/yoshinolalala/tweaker-soyuz?color=pink&style=flat-square)](https://github.com/yoshinolalala/tweaker-soyuz/graphs/contributors)|[![](https://flat.badgen.net/github/license/yoshinolalala/tweaker-soyuz?label=)](https://github.com/yoshinolalala/tweaker-soyuz/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/yoshinolalala/tweaker-soyuz?style=flat-square&label=)](https://github.com/yoshinolalala/tweaker-soyuz/graphs/code-frequency)| 130 | |[Registry Tweaker](https://github.com/RedMooner/w11t#readme)|An application for tweaking and optimizing Windows through editing the registry|[![](https://img.shields.io/github/languages/top/RedMooner/w11t?color=pink&style=flat-square)](https://github.com/RedMooner/w11t/graphs/contributors)|[![](https://flat.badgen.net/github/license/RedMooner/w11t?label=)](https://github.com/RedMooner/w11t/issues/1)|[![](https://img.shields.io/github/last-commit/RedMooner/w11t?style=flat-square&label=)](https://github.com/RedMooner/w11t/graphs/code-frequency)| 131 | |[Registry-Tweaks-Refresh.bat](https://github.com/smo0ths/Registry-Tweaks-Refresh.bat#readme)|Windows 11 Registry Tweaks|[![](https://img.shields.io/github/languages/top/smo0ths/Registry-Tweaks-Refresh.bat?color=pink&style=flat-square)](https://github.com/smo0ths/Registry-Tweaks-Refresh.bat/graphs/contributors)|[![](https://flat.badgen.net/github/license/smo0ths/Registry-Tweaks-Refresh.bat?label=)](https://github.com/smo0ths/Registry-Tweaks-Refresh.bat/issues/1)|[![](https://img.shields.io/github/last-commit/smo0ths/Registry-Tweaks-Refresh.bat?style=flat-square&label=)](https://github.com/smo0ths/Registry-Tweaks-Refresh.bat/graphs/code-frequency)| 132 | |[Windows_TweakerPro](https://github.com/saltypepper18/Windows_Tweaker#readme)|A small-sized but highly powerful program that allows you to fully optimize Windows 10-11|[![](https://img.shields.io/github/languages/top/saltypepper18/Windows_Tweaker?color=pink&style=flat-square)](https://github.com/saltypepper18/Windows_Tweaker/graphs/contributors)|[![](https://flat.badgen.net/github/license/saltypepper18/Windows_Tweaker?label=)](https://github.com/saltypepper18/Windows_Tweaker/issues/1)|[![](https://img.shields.io/github/last-commit/saltypepper18/Windows_Tweaker?style=flat-square&label=)](https://github.com/saltypepper18/Windows_Tweaker/graphs/code-frequency)| 133 | |[WOTBO](https://github.com/oixro/WOTBO#readme)|Windows optimization tool|[![](https://img.shields.io/github/languages/top/oixro/WOTBO?color=pink&style=flat-square)](https://github.com/oixro/WOTBO/graphs/contributors)|[![](https://flat.badgen.net/github/license/oixro/WOTBO?label=)](https://github.com/oixro/WOTBO/issues/1)|[![](https://img.shields.io/github/last-commit/oixro/WOTBO?style=flat-square&label=)](https://github.com/oixro/WOTBO/graphs/code-frequency)| 134 | 135 | 136 | ### Debloaters [⌂](#-) 137 | |Repository|Short description|Language|License|Last commit| 138 | |:-:|:-:|:-:|:-:|:-:| 139 | |[Debloat Windows11](https://github.com/cramaboule/Debloat_Windows11#readme)|Remove, uninstall unnecessary Windows 11 default programs, uninstall preinstalled apps|[![](https://img.shields.io/github/languages/top/cramaboule/Debloat_Windows11?color=pink&style=flat-square)](https://github.com/cramaboule/Debloat_Windows11/graphs/contributors)|[![](https://flat.badgen.net/github/license/cramaboule/Debloat_Windows11?label=)](https://github.com/cramaboule/Debloat_Windows11/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/cramaboule/Debloat_Windows11?style=flat-square&label=)](https://github.com/cramaboule/Debloat_Windows11/graphs/code-frequency)| 140 | |[Orange Booster](https://github.com/adasjusk/Orange-Booster#readme)|It's for debloating, increasing privacy and enabling some tweaks on Windows 10/11|[![](https://img.shields.io/github/languages/top/adasjusk/Orange-Booster?color=pink&style=flat-square)](https://github.com/adasjusk/Orange-Booster/graphs/contributors)|[![](https://flat.badgen.net/github/license/adasjusk/Orange-Booster?label=)](https://github.com/adasjusk/Orange-Booster/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/adasjusk/Orange-Booster?style=flat-square&label=)](https://github.com/adasjusk/Orange-Booster/graphs/code-frequency)| 141 | |[Windows Cleaner](https://github.com/codehacker47/Windows-Debloater#readme)|A script that optimizes and debloats Windows|[![](https://img.shields.io/github/languages/top/codehacker47/Windows-Debloater?color=pink&style=flat-square)](https://github.com/codehacker47/Windows-Debloater/graphs/contributors)|[![](https://flat.badgen.net/github/license/codehacker47/Windows-Debloater?label=)](https://github.com/codehacker47/Windows-Debloater/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/codehacker47/Windows-Debloater?style=flat-square&label=)](https://github.com/codehacker47/Windows-Debloater/graphs/code-frequency)| 142 | |[Ag3ISO](https://github.com/Ag3NtK/Ag3Debloat#readme)|Debloat, Basic programs install and uninstall + mouse acceleration disable + WindowsBasicLanServer|[![](https://img.shields.io/github/languages/top/Ag3NtK/Ag3Debloat?color=pink&style=flat-square)](https://github.com/Ag3NtK/Ag3Debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/Ag3NtK/Ag3Debloat?label=)](https://github.com/Ag3NtK/Ag3Debloat/issues/1)|[![](https://img.shields.io/github/last-commit/Ag3NtK/Ag3Debloat?style=flat-square&label=)](https://github.com/Ag3NtK/Ag3Debloat/graphs/code-frequency)| 143 | |[debloat-windows](https://github.com/7rodrigxs/debloat-windows#readme)|-|[![](https://img.shields.io/github/languages/top/7rodrigxs/debloat-windows?color=pink&style=flat-square)](https://github.com/7rodrigxs/debloat-windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/7rodrigxs/debloat-windows?label=)](https://github.com/7rodrigxs/debloat-windows/issues/1)|[![](https://img.shields.io/github/last-commit/7rodrigxs/debloat-windows?style=flat-square&label=)](https://github.com/7rodrigxs/debloat-windows/graphs/code-frequency)| 144 | |[Bloatynosy Nue](https://github.com/builtbybel/Bloatynosy#readme)|Tool for cleaning up and debloating Windows|[![](https://img.shields.io/github/languages/top/builtbybel/Bloatynosy?color=pink&style=flat-square)](https://github.com/builtbybel/Bloatynosy/graphs/contributors)|[![](https://flat.badgen.net/github/license/builtbybel/Bloatynosy?label=)](https://github.com/builtbybel/Bloatynosy/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/builtbybel/Bloatynosy?style=flat-square&label=)](https://github.com/builtbybel/Bloatynosy/graphs/code-frequency)| 145 | |[DebloaterTool](https://github.com/megsystem/DebloaterTool#readme)|A powerful yet lightweight Windows debloater designed to help users remove unnecessary bloatware, disable unwanted services, and optimize system performance with ease|[![](https://img.shields.io/github/languages/top/megsystem/DebloaterTool?color=pink&style=flat-square)](https://github.com/megsystem/DebloaterTool/graphs/contributors)|[![](https://flat.badgen.net/github/license/megsystem/DebloaterTool?label=)](https://github.com/megsystem/DebloaterTool/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/megsystem/DebloaterTool?style=flat-square&label=)](https://github.com/megsystem/DebloaterTool/graphs/code-frequency)| 146 | |[WinDebloat](https://github.com/SimonCropp/WinDebloat#readme)|A dotnet tool that removes the bloat in Windows|[![](https://img.shields.io/github/languages/top/SimonCropp/WinDebloat?color=pink&style=flat-square)](https://github.com/SimonCropp/WinDebloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/SimonCropp/WinDebloat?label=)](https://github.com/SimonCropp/WinDebloat/blob/main/license.txt)|[![](https://img.shields.io/github/last-commit/SimonCropp/WinDebloat?style=flat-square&label=)](https://github.com/SimonCropp/WinDebloat/graphs/code-frequency)| 147 | |[WinScript](https://github.com/flick9000/winscript#readme)|Open-source tool to build your Windows 10/11 script from scratch|[![](https://img.shields.io/github/languages/top/flick9000/winscript?color=pink&style=flat-square)](https://github.com/flick9000/winscript/graphs/contributors)|[![](https://flat.badgen.net/github/license/flick9000/winscript?label=)](https://github.com/flick9000/winscript/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/flick9000/winscript?style=flat-square&label=)](https://github.com/flick9000/winscript/graphs/code-frequency)| 148 | |[Rectify11](https://github.com/Rectify11/Installer#readme)|A Windows 11 modification which makes it more consistent|[![](https://img.shields.io/github/languages/top/Rectify11/Installer?color=pink&style=flat-square)](https://github.com/Rectify11/Installer/graphs/contributors)|[![](https://flat.badgen.net/github/license/Rectify11/Installer?label=)](https://github.com/Rectify11/Installer/blob/legacy-installer/LICENSE)|[![](https://img.shields.io/github/last-commit/Rectify11/Installer?style=flat-square&label=)](https://github.com/Rectify11/Installer/graphs/code-frequency)| 149 | |[DavwynsDebloater](https://github.com/Davwyn/DavwynsDebloater#readme)|A project to debloat Windows 10 and 11 as well as remove telemetry/spyware and other bloat that makes Windows slow and annoying|[![](https://img.shields.io/github/languages/top/Davwyn/DavwynsDebloater?color=pink&style=flat-square)](https://github.com/Davwyn/DavwynsDebloater/graphs/contributors)|[![](https://flat.badgen.net/github/license/Davwyn/DavwynsDebloater?label=)](https://github.com/Davwyn/DavwynsDebloater/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Davwyn/DavwynsDebloater?style=flat-square&label=)](https://github.com/Davwyn/DavwynsDebloater/graphs/code-frequency)| 150 | |[Windows-ISO-Debloater](https://github.com/itsNileshHere/Windows-ISO-Debloater#readme)|A PowerShell script to automate the debloating process for Windows ISO images|[![](https://img.shields.io/github/languages/top/itsNileshHere/Windows-ISO-Debloater?color=pink&style=flat-square)](https://github.com/itsNileshHere/Windows-ISO-Debloater/graphs/contributors)|[![](https://flat.badgen.net/github/license/itsNileshHere/Windows-ISO-Debloater?label=)](https://github.com/itsNileshHere/Windows-ISO-Debloater/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/itsNileshHere/Windows-ISO-Debloater?style=flat-square&label=)](https://github.com/itsNileshHere/Windows-ISO-Debloater/graphs/code-frequency)| 151 | |[WinTools](https://github.com/levicm/win-tools#readme)|This is the a set of Windows 10/11 tool scripts, from a creation of multiple debloat scripts and gists from github|[![](https://img.shields.io/github/languages/top/levicm/win-tools?color=pink&style=flat-square)](https://github.com/levicm/win-tools/graphs/contributors)|[![](https://flat.badgen.net/github/license/levicm/win-tools?label=)](https://github.com/levicm/win-tools/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/levicm/win-tools?style=flat-square&label=)](https://github.com/levicm/win-tools/graphs/code-frequency)| 152 | |[Windows_Toolz](https://github.com/Exploitacious/Windows_Toolz#readme)|Automated Windows 10 System Debloat Script to get machines ready for business deployment|[![](https://img.shields.io/github/languages/top/Exploitacious/Windows_Toolz?color=pink&style=flat-square)](https://github.com/Exploitacious/Windows_Toolz/graphs/contributors)|[![](https://flat.badgen.net/github/license/Exploitacious/Windows_Toolz?label=)](https://github.com/Exploitacious/Windows_Toolz/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Exploitacious/Windows_Toolz?style=flat-square&label=)](https://github.com/Exploitacious/Windows_Toolz/graphs/code-frequency)| 153 | |[Auto Win10 Tweaker](https://github.com/vinioliveiras/Win10Tweaker#readme)|Remove all bloatware and tune your Windows 10|[![](https://img.shields.io/github/languages/top/vinioliveiras/Win10Tweaker?color=pink&style=flat-square)](https://github.com/vinioliveiras/Win10Tweaker/graphs/contributors)|[![](https://flat.badgen.net/github/license/vinioliveiras/Win10Tweaker?label=)](https://github.com/vinioliveiras/Win10Tweaker/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/vinioliveiras/Win10Tweaker?style=flat-square&label=)](https://github.com/vinioliveiras/Win10Tweaker/graphs/code-frequency)| 154 | |[Debloat Windows 11](https://github.com/rivaed/Windows11-Debloat#readme)|Script to remove bloatware and optimize Windows 11|[![](https://img.shields.io/github/languages/top/rivaed/Windows11-Debloat?color=pink&style=flat-square)](https://github.com/rivaed/Windows11-Debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/rivaed/Windows11-Debloat?label=)](https://github.com/rivaed/Windows11-Debloat/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/rivaed/Windows11-Debloat?style=flat-square&label=)](https://github.com/rivaed/Windows11-Debloat/graphs/code-frequency)| 155 | |[ITT (Install Tweaks Tool)](https://github.com/emadadel4/itt#-itt-install-tweaks-tool--)|Includes all useful Windows 10/11 Software and Windows Tweaks & Remove Bloatwares & Windows activation|[![](https://img.shields.io/github/languages/top/emadadel4/itt?color=pink&style=flat-square)](https://github.com/emadadel4/itt/graphs/contributors)|[![](https://flat.badgen.net/github/license/emadadel4/itt?label=)](https://github.com/emadadel4/itt/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/emadadel4/itt?style=flat-square&label=)](https://github.com/emadadel4/itt/graphs/code-frequency)| 156 | |[Pure11](https://github.com/Orfeous/Pure11#readme)|Windows 11, minus the junk they thought you needed|[![](https://img.shields.io/github/languages/top/Orfeous/Pure11?color=pink&style=flat-square)](https://github.com/Orfeous/Pure11/graphs/contributors)|[![](https://flat.badgen.net/github/license/Orfeous/Pure11?label=)](https://github.com/Orfeous/Pure11/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Orfeous/Pure11?style=flat-square&label=)](https://github.com/Orfeous/Pure11/graphs/code-frequency)| 157 | |[W11 Debloat & W10](https://github.com/RobertDevD/W11-W10-Debloater-Now#readme)|A simple, easy to use PowerShell script to remove pre-installed apps from Windows, disable telemetry, remove Bing from Windows search as well as perform various other changes to declutter and improve your Windows experience|[![](https://img.shields.io/github/languages/top/RobertDevD/W11-W10-Debloater-Now?color=pink&style=flat-square)](https://github.com/RobertDevD/W11-W10-Debloater-Now/graphs/contributors)|[![](https://flat.badgen.net/github/license/RobertDevD/W11-W10-Debloater-Now?label=)](https://github.com/RobertDevD/W11-W10-Debloater-Now/blob/main/LICENSE.txt)|[![](https://img.shields.io/github/last-commit/RobertDevD/W11-W10-Debloater-Now?style=flat-square&label=)](https://github.com/RobertDevD/W11-W10-Debloater-Now/graphs/code-frequency)| 158 | |[Win Debloat Tools](https://github.com/LeDragoX/Win-Debloat-Tools#readme)|Re-imagining Windows like a minimal OS install, already debloated with minimal impact for most functionality.|[![](https://img.shields.io/github/languages/top/LeDragoX/Win-Debloat-Tools?color=pink&style=flat-square)](https://github.com/LeDragoX/Win-Debloat-Tools/graphs/contributors)|[![](https://flat.badgen.net/github/license/LeDragoX/Win-Debloat-Tools?label=)](https://github.com/LeDragoX/Win-Debloat-Tools/blob/main/LICENSE.txt)|[![](https://img.shields.io/github/last-commit/LeDragoX/Win-Debloat-Tools?style=flat-square&label=)](https://github.com/LeDragoX/Win-Debloat-Tools/graphs/code-frequency)| 159 | |[Win11 Post Install PowerShell Script](https://github.com/vinod-unny-eit/Win11PostInstallPS#readme)|A Windows 11 (24H2) Post Install Script in PowerShell to customize your working environment|[![](https://img.shields.io/github/languages/top/vinod-unny-eit/Win11PostInstallPS?color=pink&style=flat-square)](https://github.com/vinod-unny-eit/Win11PostInstallPS/graphs/contributors)|[![](https://flat.badgen.net/github/license/vinod-unny-eit/Win11PostInstallPS?label=)](https://github.com/vinod-unny-eit/Win11PostInstallPS/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/vinod-unny-eit/Win11PostInstallPS?style=flat-square&label=)](https://github.com/vinod-unny-eit/Win11PostInstallPS/graphs/code-frequency)| 160 | |[Win11Debloat](https://github.com/Raphire/Win11Debloat#readme)|A simple, easy to use and lightweight PowerShell script that can remove pre-installed Windows bloatware apps, disable telemetry and declutter the experience by disabling or removing intrusive interface elements, ads and more|[![](https://img.shields.io/github/languages/top/Raphire/Win11Debloat?color=pink&style=flat-square)](https://github.com/Raphire/Win11Debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/Raphire/Win11Debloat?label=)](https://github.com/Raphire/Win11Debloat/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/Raphire/Win11Debloat?style=flat-square&label=)](https://github.com/Raphire/Win11Debloat/graphs/code-frequency)| 161 | |[Windows 10 Debloat Script](https://github.com/rivaed/Windows10-Debloat#readme)|Script to remove bloatware and optimize Windows 10|[![](https://img.shields.io/github/languages/top/rivaed/Windows10-Debloat?color=pink&style=flat-square)](https://github.com/rivaed/Windows10-Debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/rivaed/Windows10-Debloat?label=)](https://github.com/rivaed/Windows10-Debloat/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/rivaed/Windows10-Debloat?style=flat-square&label=)](https://github.com/rivaed/Windows10-Debloat/graphs/code-frequency)| 162 | |[Windows10SuperCharger](https://github.com/MilesFarber/Windows10SuperCharger#readme)|A (deprecated) debloat script that doesn't actually remove important system functionality unlike other scripts|[![](https://img.shields.io/github/languages/top/MilesFarber/Windows10SuperCharger?color=pink&style=flat-square)](https://github.com/MilesFarber/Windows10SuperCharger/graphs/contributors)|[![](https://flat.badgen.net/github/license/MilesFarber/Windows10SuperCharger?label=)](https://github.com/MilesFarber/Windows10SuperCharger/blob/trainer/LICENSE)|[![](https://img.shields.io/github/last-commit/MilesFarber/Windows10SuperCharger?style=flat-square&label=)](https://github.com/MilesFarber/Windows10SuperCharger/graphs/code-frequency)| 163 | |[Windows-Debloater](https://github.com/BobbyBoy709/Windows-Debloater#readme)|-|[![](https://img.shields.io/github/languages/top/BobbyBoy709/Windows-Debloater?color=pink&style=flat-square)](https://github.com/BobbyBoy709/Windows-Debloater/graphs/contributors)|[![](https://flat.badgen.net/github/license/BobbyBoy709/Windows-Debloater?label=)](https://github.com/BobbyBoy709/Windows-Debloater/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/BobbyBoy709/Windows-Debloater?style=flat-square&label=)](https://github.com/BobbyBoy709/Windows-Debloater/graphs/code-frequency)| 164 | |[Debloat Windows 10](https://github.com/W4RH4WK/Debloat-Windows-10#readme)|A Collection of Scripts Which Disable / Remove Windows 10 Features and Apps|[![](https://img.shields.io/github/languages/top/W4RH4WK/Debloat-Windows-10?color=pink&style=flat-square)](https://github.com/W4RH4WK/Debloat-Windows-10/graphs/contributors)|[![](https://flat.badgen.net/badge/license/Other/blue?label=)](https://github.com/W4RH4WK/Debloat-Windows-10/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/W4RH4WK/Debloat-Windows-10?style=flat-square&label=)](https://github.com/W4RH4WK/Debloat-Windows-10/graphs/code-frequency)| 165 | |[Debonk-Windows-11](https://github.com/Mugane/Debonk-Windows-11#readme)|Removes Garbage Apps & Settings on Windows 11|[![](https://img.shields.io/github/languages/top/Mugane/Debonk-Windows-11?color=pink&style=flat-square)](https://github.com/Mugane/Debonk-Windows-11/graphs/contributors)|[![](https://flat.badgen.net/badge/license/Other/blue?label=)](https://github.com/Mugane/Debonk-Windows-11/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Mugane/Debonk-Windows-11?style=flat-square&label=)](https://github.com/Mugane/Debonk-Windows-11/graphs/code-frequency)| 166 | |[W1X Debloat](https://github.com/AdminVin/W1X-Debloat#readme)|A one click trick to cleaning up Windows 10 & Windows 11|[![](https://img.shields.io/github/languages/top/AdminVin/W1X-Debloat?color=pink&style=flat-square)](https://github.com/AdminVin/W1X-Debloat/graphs/contributors)|[![](https://flat.badgen.net/badge/license/Other/blue?label=)](https://github.com/AdminVin/W1X-Debloat/blob/main/LICENSE.txt)|[![](https://img.shields.io/github/last-commit/AdminVin/W1X-Debloat?style=flat-square&label=)](https://github.com/AdminVin/W1X-Debloat/graphs/code-frequency)| 167 | |[KYZR-Debloat-Windows11](https://github.com/kyzr-dev/KYZR.Debloat-Windows11#readme)|A simple, robust powershell script that removes bloatware from Windows 11 and makes a few QOL customizations|[![](https://img.shields.io/github/languages/top/kyzr-dev/KYZR.Debloat-Windows11?color=pink&style=flat-square)](https://github.com/kyzr-dev/KYZR.Debloat-Windows11/graphs/contributors)|[![](https://flat.badgen.net/github/license/kyzr-dev/KYZR.Debloat-Windows11?label=)](https://github.com/kyzr-dev/KYZR.Debloat-Windows11/issues/1)|[![](https://img.shields.io/github/last-commit/kyzr-dev/KYZR.Debloat-Windows11?style=flat-square&label=)](https://github.com/kyzr-dev/KYZR.Debloat-Windows11/graphs/code-frequency)| 168 | |[Windows 10 Debloat Script for IT Centre](https://github.com/itcentrenz/win10debloat#readme)|Windows 10 Debloat Script|[![](https://img.shields.io/github/languages/top/itcentrenz/win10debloat?color=pink&style=flat-square)](https://github.com/itcentrenz/win10debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/itcentrenz/win10debloat?label=)](https://github.com/itcentrenz/win10debloat/issues/1)|[![](https://img.shields.io/github/last-commit/itcentrenz/win10debloat?style=flat-square&label=)](https://github.com/itcentrenz/win10debloat/graphs/code-frequency)| 169 | |[Windows-Debloat-Script](https://github.com/GoodBuysShop/Windows-Debloat-Script#readme)|PowerShell script to remove bloatware and enhance Windows privacy|[![](https://img.shields.io/github/languages/top/GoodBuysShop/Windows-Debloat-Script?color=pink&style=flat-square)](https://github.com/GoodBuysShop/Windows-Debloat-Script/graphs/contributors)|[![](https://flat.badgen.net/github/license/GoodBuysShop/Windows-Debloat-Script?label=)](https://github.com/GoodBuysShop/Windows-Debloat-Script/issues/1)|[![](https://img.shields.io/github/last-commit/GoodBuysShop/Windows-Debloat-Script?style=flat-square&label=)](https://github.com/GoodBuysShop/Windows-Debloat-Script/graphs/code-frequency)| 170 | |[windows-debloat](https://github.com/reapex766/windows-debloat#readme)|Script to debloat and restore every unusued services in a windows 10 up to date install|[![](https://img.shields.io/github/languages/top/reapex766/windows-debloat?color=pink&style=flat-square)](https://github.com/reapex766/windows-debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/reapex766/windows-debloat?label=)](https://github.com/reapex766/windows-debloat/issues/1)|[![](https://img.shields.io/github/last-commit/reapex766/windows-debloat?style=flat-square&label=)](https://github.com/reapex766/windows-debloat/graphs/code-frequency)| 171 | |[OrangDebloat](https://github.com/adasjusk/OrangDebloat#readme)|A Program For Debloating Windows And Making Them Better|[![](https://img.shields.io/github/languages/top/adasjusk/OrangDebloat?color=pink&style=flat-square)](https://github.com/adasjusk/OrangDebloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/adasjusk/OrangDebloat?label=)](https://github.com/adasjusk/OrangDebloat/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/adasjusk/OrangDebloat?style=flat-square&label=)](https://github.com/adasjusk/OrangDebloat/graphs/code-frequency)| 172 | |[XToolbox](https://codeberg.org/nxr/xtoolbox#readme)|A collection of 150+ Windows 10/11 optimization and tweaking apps|[![](https://img.shields.io/github/languages/top/nyxiereal/XToolbox?color=pink&style=flat-square)](https://github.com/nyxiereal/XToolbox/graphs/contributors)|[![](https://flat.badgen.net/github/license/nyxiereal/XToolbox?label=)](https://github.com/nyxiereal/XToolbox/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/nyxiereal/XToolbox?style=flat-square&label=)](https://github.com/nyxiereal/XToolbox/graphs/code-frequency)| 173 | |[PC-Optimus](https://github.com/truelockmc/PC-Optimus#readme)|A multi use Python Tool for Windows that offers Features to clean, debloat, update, repair or get Infos about your PC|[![](https://img.shields.io/github/languages/top/truelockmc/PC-Optimus?color=pink&style=flat-square)](https://github.com/truelockmc/PC-Optimus/graphs/contributors)|[![](https://flat.badgen.net/github/license/truelockmc/PC-Optimus?label=)](https://github.com/truelockmc/PC-Optimus/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/truelockmc/PC-Optimus?style=flat-square&label=)](https://github.com/truelockmc/PC-Optimus/graphs/code-frequency)| 174 | |[Talon](https://github.com/ravendevteam/talon#readme)|Simple utility to debloat Windows in 2 clicks|[![](https://img.shields.io/github/languages/top/ravendevteam/talon?color=pink&style=flat-square)](https://github.com/ravendevteam/talon/graphs/contributors)|[![](https://flat.badgen.net/github/license/ravendevteam/talon?label=)](https://github.com/ravendevteam/talon/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ravendevteam/talon?style=flat-square&label=)](https://github.com/ravendevteam/talon/graphs/code-frequency)| 175 | |[ZTalon](https://github.com/sogik/ZTalon#readme)|Simple utility to debloat Windows in 2 clicks|[![](https://img.shields.io/github/languages/top/sogik/ZTalon?color=pink&style=flat-square)](https://github.com/sogik/ZTalon/graphs/contributors)|[![](https://flat.badgen.net/github/license/sogik/ZTalon?label=)](https://github.com/sogik/ZTalon/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/sogik/ZTalon?style=flat-square&label=)](https://github.com/sogik/ZTalon/graphs/code-frequency)| 176 | |[Xeno Debloater](https://github.com/Trinitysudo/Trinity-Debloater#readme)|The most Sleek Debloat Tool For windows 11|[![](https://img.shields.io/github/languages/top/Trinitysudo/Trinity-Debloater?color=pink&style=flat-square)](https://github.com/Trinitysudo/Trinity-Debloater/graphs/contributors)|[![](https://flat.badgen.net/github/license/Trinitysudo/Trinity-Debloater?label=)](https://github.com/Trinitysudo/Trinity-Debloater/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Trinitysudo/Trinity-Debloater?style=flat-square&label=)](https://github.com/Trinitysudo/Trinity-Debloater/graphs/code-frequency)| 177 | |[ccdc.debloat_windows](https://github.com/ccdc-opensource/ansible-role-debloat-windows#readme)|Remove some of the bloat on Windows|[![](https://img.shields.io/github/languages/top/ccdc-opensource/ansible-role-debloat-windows?color=pink&style=flat-square)](https://github.com/ccdc-opensource/ansible-role-debloat-windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/ccdc-opensource/ansible-role-debloat-windows?label=)](https://github.com/ccdc-opensource/ansible-role-debloat-windows/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ccdc-opensource/ansible-role-debloat-windows?style=flat-square&label=)](https://github.com/ccdc-opensource/ansible-role-debloat-windows/graphs/code-frequency)| 178 | |[Debloat-Windows](https://github.com/GayanthaBhagyaW/Debloat-Windows#readme)|Remove the bloatware from existing and new users in Windows 11|[![](https://img.shields.io/github/languages/top/GayanthaBhagyaW/Debloat-Windows?color=pink&style=flat-square)](https://github.com/GayanthaBhagyaW/Debloat-Windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/GayanthaBhagyaW/Debloat-Windows?label=)](https://github.com/GayanthaBhagyaW/Debloat-Windows/issues/1)|[![](https://img.shields.io/github/last-commit/GayanthaBhagyaW/Debloat-Windows?style=flat-square&label=)](https://github.com/GayanthaBhagyaW/Debloat-Windows/graphs/code-frequency)| 179 | 180 | 181 | ### Setupers [⌂](#-) 182 | |Repository|Short description|Language|License|Last commit| 183 | |:-:|:-:|:-:|:-:|:-:| 184 | |[00_WindowsTweaks](https://github.com/narayan6701/00_WindowsTweaks#readme)|Scripts and configuration files for automating and adding extra functionality to Windows|[![](https://img.shields.io/github/languages/top/narayan6701/00_WindowsTweaks?color=pink&style=flat-square)](https://github.com/narayan6701/00_WindowsTweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/narayan6701/00_WindowsTweaks?label=)](https://github.com/narayan6701/00_WindowsTweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/narayan6701/00_WindowsTweaks?style=flat-square&label=)](https://github.com/narayan6701/00_WindowsTweaks/graphs/code-frequency)| 185 | |[ASX-Hub](https://github.com/ALFiX01/ASX-Hub#readme)|Your all-in-one hub for optimizing, customizing, managing privacy, and fine-tuning Windows|[![](https://img.shields.io/github/languages/top/ALFiX01/ASX-Hub?color=pink&style=flat-square)](https://github.com/ALFiX01/ASX-Hub/graphs/contributors)|[![](https://flat.badgen.net/github/license/ALFiX01/ASX-Hub?label=)](https://github.com/ALFiX01/ASX-Hub/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ALFiX01/ASX-Hub?style=flat-square&label=)](https://github.com/ALFiX01/ASX-Hub/graphs/code-frequency)| 186 | |[Shades Toolkit Extended](https://github.com/khuza08/shadestoolkit#readme)|It customizes Windows ISO files and create personalized images with tweaks and settings needed|[![](https://img.shields.io/github/languages/top/khuza08/shadestoolkit?color=pink&style=flat-square)](https://github.com/khuza08/shadestoolkit/graphs/contributors)|[![](https://flat.badgen.net/github/license/khuza08/shadestoolkit?label=)](https://github.com/khuza08/shadestoolkit/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/khuza08/shadestoolkit?style=flat-square&label=)](https://github.com/khuza08/shadestoolkit/graphs/code-frequency)| 187 | |[WinConfigs](https://github.com/fr0st-iwnl/WinConfigs#readme)|A script to simplify Windows setup by automating software installation and system tweaks|[![](https://img.shields.io/github/languages/top/fr0st-iwnl/WinConfigs?color=pink&style=flat-square)](https://github.com/fr0st-iwnl/WinConfigs/graphs/contributors)|[![](https://flat.badgen.net/github/license/fr0st-iwnl/WinConfigs?label=)](https://github.com/fr0st-iwnl/WinConfigs/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/fr0st-iwnl/WinConfigs?style=flat-square&label=)](https://github.com/fr0st-iwnl/WinConfigs/graphs/code-frequency)| 188 | |[Yet Another Windows Toolbox](https://github.com/Yoshii64/YAWT-yet-another-windows-toolbox-#readme)|A Windows toolbox to help you with performance and getting you started with a Windows install|[![](https://img.shields.io/github/languages/top/Yoshii64/YAWT-yet-another-windows-toolbox-?color=pink&style=flat-square)](https://github.com/Yoshii64/YAWT-yet-another-windows-toolbox-/graphs/contributors)|[![](https://flat.badgen.net/github/license/Yoshii64/YAWT-yet-another-windows-toolbox-?label=)](https://github.com/Yoshii64/YAWT-yet-another-windows-toolbox-/blob/batch/LICENSE)|[![](https://img.shields.io/github/last-commit/Yoshii64/YAWT-yet-another-windows-toolbox-?style=flat-square&label=)](https://github.com/Yoshii64/YAWT-yet-another-windows-toolbox-/graphs/code-frequency)| 189 | |[Personal_Config_Files](https://github.com/nefari0nzz/Personal_Config_Files#readme)|Windows tweaks, config files etc.|[![](https://img.shields.io/github/languages/top/nefari0nzz/Personal_Config_Files?color=pink&style=flat-square)](https://github.com/nefari0nzz/Personal_Config_Files/graphs/contributors)|[![](https://flat.badgen.net/github/license/nefari0nzz/Personal_Config_Files?label=)](https://github.com/nefari0nzz/Personal_Config_Files/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/nefari0nzz/Personal_Config_Files?style=flat-square&label=)](https://github.com/nefari0nzz/Personal_Config_Files/graphs/code-frequency)| 190 | |[Simplify11](https://github.com/emylfy/simplify11#readme)|Simpler way to setup your Windows (Individual Perfomance & Privacy tweaks, Space cleaner, App Installer)|[![](https://img.shields.io/github/languages/top/emylfy/simplify11?color=pink&style=flat-square)](https://github.com/emylfy/simplify11/graphs/contributors)|[![](https://flat.badgen.net/github/license/emylfy/simplify11?label=)](https://github.com/emylfy/simplify11/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/emylfy/simplify11?style=flat-square&label=)](https://github.com/emylfy/simplify11/graphs/code-frequency)| 191 | |[Awesome Windows Tweaks](https://github.com/Zalexanninev15/awesome-windows-tweaks#readme)|An incredible amount of scripts, tweaks, programs and everything else for the initial setup of Windows.|[![](https://img.shields.io/github/languages/top/Zalexanninev15/awesome-windows-tweaks?color=pink&style=flat-square)](https://github.com/Zalexanninev15/awesome-windows-tweaks/graphs/contributors)|[![](https://flat.badgen.net/badge/license/Other/blue?label=)](https://github.com/Zalexanninev15/awesome-windows-tweaks/blob/main/LICENSE)|[![](https://flat.badgen.net/static/status/Archived/624711?label=)](https://github.com/Zalexanninev15/awesome-windows-tweaks/graphs/code-frequency)| 192 | |[TweakList](https://github.com/couleur-tweak-tips/TweakList#readme)|Versatile PowerShell module that automate various post-install jobs you waste time on|[![](https://img.shields.io/github/languages/top/couleur-tweak-tips/TweakList?color=pink&style=flat-square)](https://github.com/couleur-tweak-tips/TweakList/graphs/contributors)|[![](https://flat.badgen.net/github/license/couleur-tweak-tips/TweakList?label=)](https://github.com/couleur-tweak-tips/TweakList/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/couleur-tweak-tips/TweakList?style=flat-square&label=)](https://github.com/couleur-tweak-tips/TweakList/graphs/code-frequency)| 193 | |[Windows Panther](https://github.com/JamesMinoucha/WindowsPanther#readme)|A autounattend.xml made to debloat and optimize Windows|[![](https://img.shields.io/github/languages/top/JamesMinoucha/WindowsPanther?color=pink&style=flat-square)](https://github.com/JamesMinoucha/WindowsPanther/graphs/contributors)|[![](https://flat.badgen.net/github/license/JamesMinoucha/WindowsPanther?label=)](https://github.com/JamesMinoucha/WindowsPanther/blob/main/LICENSE)|[![](https://flat.badgen.net/static/status/Archived/624711?label=)](https://github.com/JamesMinoucha/WindowsPanther/graphs/code-frequency)| 194 | |[after-format](https://github.com/caglaryalcin/after-format#readme)|If you have just formatted your Windows 11 computer, you can run this script for a better Windows experience|[![](https://img.shields.io/github/languages/top/caglaryalcin/after-format?color=pink&style=flat-square)](https://github.com/caglaryalcin/after-format/graphs/contributors)|[![](https://flat.badgen.net/github/license/caglaryalcin/after-format?label=)](https://github.com/caglaryalcin/after-format/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/caglaryalcin/after-format?style=flat-square&label=)](https://github.com/caglaryalcin/after-format/graphs/code-frequency)| 195 | |[Windows10-Postinstall](https://github.com/r33int/Windows10-Postinstall#readme)|Scripts & programs to optimize and debloat new Windows 10 and Windows 11 installations|[![](https://img.shields.io/github/languages/top/r33int/Windows10-Postinstall?color=pink&style=flat-square)](https://github.com/r33int/Windows10-Postinstall/graphs/contributors)|[![](https://flat.badgen.net/github/license/r33int/Windows10-Postinstall?label=)](https://github.com/r33int/Windows10-Postinstall/blob/main/COPYING)|[![](https://img.shields.io/github/last-commit/r33int/Windows10-Postinstall?style=flat-square&label=)](https://github.com/r33int/Windows10-Postinstall/graphs/code-frequency)| 196 | |[Chris Titus Tech's Windows Utility](https://github.com/ChrisTitusTech/winutil#readme)|A compilation of tasks meant to streamline installs, debloat with tweaks, troubleshoot with config, and fix Windows updates|[![](https://img.shields.io/github/languages/top/ChrisTitusTech/winutil?color=pink&style=flat-square)](https://github.com/ChrisTitusTech/winutil/graphs/contributors)|[![](https://flat.badgen.net/github/license/ChrisTitusTech/winutil?label=)](https://github.com/ChrisTitusTech/winutil/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ChrisTitusTech/winutil?style=flat-square&label=)](https://github.com/ChrisTitusTech/winutil/graphs/code-frequency)| 197 | |[LazyBlaze](https://github.com/SuperBoots/lazyblaze#readme)|Built around PowerShell scripts for quickly getting a new Windows 11 machine populated with all your favorite programs and customized to your liking|[![](https://img.shields.io/github/languages/top/SuperBoots/lazyblaze?color=pink&style=flat-square)](https://github.com/SuperBoots/lazyblaze/graphs/contributors)|[![](https://flat.badgen.net/github/license/SuperBoots/lazyblaze?label=)](https://github.com/SuperBoots/lazyblaze/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/SuperBoots/lazyblaze?style=flat-square&label=)](https://github.com/SuperBoots/lazyblaze/graphs/code-frequency)| 198 | |[UnattendedWinstall](https://github.com/memstechtips/UnattendedWinstall#readme)|Personalized Unattended Answer Files that helps automatically debloat and customize Windows 10 & 11 during the installation process|[![](https://img.shields.io/github/languages/top/memstechtips/UnattendedWinstall?color=pink&style=flat-square)](https://github.com/memstechtips/UnattendedWinstall/graphs/contributors)|[![](https://flat.badgen.net/github/license/memstechtips/UnattendedWinstall?label=)](https://github.com/memstechtips/UnattendedWinstall/blob/main/LICENSE.md)|[![](https://img.shields.io/github/last-commit/memstechtips/UnattendedWinstall?style=flat-square&label=)](https://github.com/memstechtips/UnattendedWinstall/graphs/code-frequency)| 199 | |[Windows 11 Initialisation Tweaks](https://github.com/mmotti/Windows-11-Initialisation-Tweaks#readme)|This script is a user "initialisation" for a fresh Windows install.|[![](https://img.shields.io/github/languages/top/mmotti/Windows-11-Initialisation-Tweaks?color=pink&style=flat-square)](https://github.com/mmotti/Windows-11-Initialisation-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/mmotti/Windows-11-Initialisation-Tweaks?label=)](https://github.com/mmotti/Windows-11-Initialisation-Tweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/mmotti/Windows-11-Initialisation-Tweaks?style=flat-square&label=)](https://github.com/mmotti/Windows-11-Initialisation-Tweaks/graphs/code-frequency)| 200 | |[WindowsMize](https://github.com/agadiffe/WindowsMize#readme)|PowerShell script to automate and customize the configuration of Windows: Settings, apps uninstall/install/settings, minimize telemetry, disable services/scheduled tasks, RamDisk, and other tweaks|[![](https://img.shields.io/github/languages/top/agadiffe/WindowsMize?color=pink&style=flat-square)](https://github.com/agadiffe/WindowsMize/graphs/contributors)|[![](https://flat.badgen.net/github/license/agadiffe/WindowsMize?label=)](https://github.com/agadiffe/WindowsMize/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/agadiffe/WindowsMize?style=flat-square&label=)](https://github.com/agadiffe/WindowsMize/graphs/code-frequency)| 201 | |[windows_config_scripts](https://github.com/rondonit/windows_config_scripts#readme)|PowerShell scripts to automate configurations and optimize Windows settings|[![](https://img.shields.io/github/languages/top/rondonit/windows_config_scripts?color=pink&style=flat-square)](https://github.com/rondonit/windows_config_scripts/graphs/contributors)|[![](https://flat.badgen.net/github/license/rondonit/windows_config_scripts?label=)](https://github.com/rondonit/windows_config_scripts/blob/main/LICENSE.md)|[![](https://img.shields.io/github/last-commit/rondonit/windows_config_scripts?style=flat-square&label=)](https://github.com/rondonit/windows_config_scripts/graphs/code-frequency)| 202 | |[ZOICWARE](https://github.com/zoicware/ZOICWARE#readme)|A Powershell script to tweak and customize Windows 10 and 11|[![](https://img.shields.io/github/languages/top/zoicware/ZOICWARE?color=pink&style=flat-square)](https://github.com/zoicware/ZOICWARE/graphs/contributors)|[![](https://flat.badgen.net/github/license/zoicware/ZOICWARE?label=)](https://github.com/zoicware/ZOICWARE/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/zoicware/ZOICWARE?style=flat-square&label=)](https://github.com/zoicware/ZOICWARE/graphs/code-frequency)| 203 | |[NewLoads](https://github.com/circlol/NewLoads#readme)|A simple script that can boost device security, anonymity and performance in a quick and convenient package|[![](https://img.shields.io/github/languages/top/circlol/NewLoads?color=pink&style=flat-square)](https://github.com/circlol/NewLoads/graphs/contributors)|[![](https://flat.badgen.net/github/license/circlol/NewLoads?label=)](https://github.com/circlol/NewLoads/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/circlol/NewLoads?style=flat-square&label=)](https://github.com/circlol/NewLoads/graphs/code-frequency)| 204 | |[WinRep](https://github.com/PUXSY/WinRep#readme)|An all-in-one tool that simplifies Windows setup, installation, and optimization|[![](https://img.shields.io/github/languages/top/PUXSY/WinRep?color=pink&style=flat-square)](https://github.com/PUXSY/WinRep/graphs/contributors)|[![](https://flat.badgen.net/github/license/PUXSY/WinRep?label=)](https://github.com/PUXSY/WinRep/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/PUXSY/WinRep?style=flat-square&label=)](https://github.com/PUXSY/WinRep/graphs/code-frequency)| 205 | |[Clean Windows](https://github.com/MatiDEV-PL/Clean-Windows#readme)|Custom unattended answer file that debloats and makes Windows 10 and 11 feel like in Windows 7 days|[![](https://img.shields.io/github/languages/top/MatiDEV-PL/Clean-Windows?color=pink&style=flat-square)](https://github.com/MatiDEV-PL/Clean-Windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/MatiDEV-PL/Clean-Windows?label=)](https://github.com/MatiDEV-PL/Clean-Windows/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/MatiDEV-PL/Clean-Windows?style=flat-square&label=)](https://github.com/MatiDEV-PL/Clean-Windows/graphs/code-frequency)| 206 | |[AutoUnattend.xml: Your Ultimate Windows 11 Installation Automation Tool](https://github.com/Deffz-Finesse/Win11-Debloat#readme)|A streamlined and fully automated Windows 11 installation setup that removes bloatware, optimizes performance, and bypasses hardware requirements|[![](https://img.shields.io/github/languages/top/Deffz-Finesse/Win11-Debloat?color=pink&style=flat-square)](https://github.com/Deffz-Finesse/Win11-Debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/Deffz-Finesse/Win11-Debloat?label=)](https://github.com/Deffz-Finesse/Win11-Debloat/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Deffz-Finesse/Win11-Debloat?style=flat-square&label=)](https://github.com/Deffz-Finesse/Win11-Debloat/graphs/code-frequency)| 207 | 208 | 209 | 210 | ### Privacy [⌂](#-) 211 | |Repository|Short description|Language|License|Last commit| 212 | |:-:|:-:|:-:|:-:|:-:| 213 | |[Optimize, Harden, and Debloat Windows 10 and Windows 11 Deployments](https://github.com/simeononsecurity/Windows-Optimize-Harden-Debloat#readme)|Enhance the security and privacy of Windows 10 and Windows 11|[![](https://img.shields.io/github/languages/top/simeononsecurity/Windows-Optimize-Harden-Debloat?color=pink&style=flat-square)](https://github.com/simeononsecurity/Windows-Optimize-Harden-Debloat/graphs/contributors)|[![](https://flat.badgen.net/github/license/simeononsecurity/Windows-Optimize-Harden-Debloat?label=)](https://github.com/simeononsecurity/Windows-Optimize-Harden-Debloat/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/simeononsecurity/Windows-Optimize-Harden-Debloat?style=flat-square&label=)](https://github.com/simeononsecurity/Windows-Optimize-Harden-Debloat/graphs/code-frequency)| 214 | |[DebloatAndSecurizeW11](https://github.com/JulienVB/DebloatAndSecurizeW11#readme)|Windows 11 Hardening Script|[![](https://img.shields.io/github/languages/top/JulienVB/DebloatAndSecurizeW11?color=pink&style=flat-square)](https://github.com/JulienVB/DebloatAndSecurizeW11/graphs/contributors)|[![](https://flat.badgen.net/github/license/JulienVB/DebloatAndSecurizeW11?label=)](https://github.com/JulienVB/DebloatAndSecurizeW11/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/JulienVB/DebloatAndSecurizeW11?style=flat-square&label=)](https://github.com/JulienVB/DebloatAndSecurizeW11/graphs/code-frequency)| 215 | |[privacy.sexy](https://github.com/undergroundwires/privacy.sexy#readme)|Tool to enforce privacy & security best-practices on Windows, macOS and Linux|[![](https://img.shields.io/github/languages/top/undergroundwires/privacy.sexy?color=pink&style=flat-square)](https://github.com/undergroundwires/privacy.sexy/graphs/contributors)|[![](https://flat.badgen.net/github/license/undergroundwires/privacy.sexy?label=)](https://github.com/undergroundwires/privacy.sexy/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/undergroundwires/privacy.sexy?style=flat-square&label=)](https://github.com/undergroundwires/privacy.sexy/graphs/code-frequency)| 216 | 217 | 218 | ### Specific [⌂](#-) 219 | |Repository|Short description|Language|License|Last commit| 220 | |:-:|:-:|:-:|:-:|:-:| 221 | |[FPS-Boost](https://github.com/JitRRky/FPS-Boost#readme)|A powerful tool designed to enhance frame rates and optimize graphics settings seamlessly|[![](https://img.shields.io/github/languages/top/JitRRky/FPS-Boost?color=pink&style=flat-square)](https://github.com/JitRRky/FPS-Boost/graphs/contributors)|[![](https://flat.badgen.net/github/license/JitRRky/FPS-Boost?label=)](https://github.com/JitRRky/FPS-Boost/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/JitRRky/FPS-Boost?style=flat-square&label=)](https://github.com/JitRRky/FPS-Boost/graphs/code-frequency)| 222 | |[WindowsOptimizer](https://github.com/Jomaxsoec/WindowsOptimizer#readme)|Cleans temporary files (Temp, Prefetch, Recycle Bin),Clears Windows Update cache,Flushes DNS cache,Optionally restarts Explorer for changes to take effect|[![](https://img.shields.io/github/languages/top/Jomaxsoec/WindowsOptimizer?color=pink&style=flat-square)](https://github.com/Jomaxsoec/WindowsOptimizer/graphs/contributors)|[![](https://flat.badgen.net/github/license/Jomaxsoec/WindowsOptimizer?label=)](https://github.com/Jomaxsoec/WindowsOptimizer/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Jomaxsoec/WindowsOptimizer?style=flat-square&label=)](https://github.com/Jomaxsoec/WindowsOptimizer/graphs/code-frequency)| 223 | |[windows-dev-box-setup-scripts](https://github.com/microsoft/windows-dev-box-setup-scripts#readme)|Scripts to simplify setting up a Windows developer box|[![](https://img.shields.io/github/languages/top/microsoft/windows-dev-box-setup-scripts?color=pink&style=flat-square)](https://github.com/microsoft/windows-dev-box-setup-scripts/graphs/contributors)|[![](https://flat.badgen.net/github/license/microsoft/windows-dev-box-setup-scripts?label=)](https://github.com/microsoft/windows-dev-box-setup-scripts/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/microsoft/windows-dev-box-setup-scripts?style=flat-square&label=)](https://github.com/microsoft/windows-dev-box-setup-scripts/graphs/code-frequency)| 224 | |[Microsoft Edge Uninstallers](https://github.com/ShadowWhisperer/Remove-MS-Edge#readme)|Uninstall Microsoft Edge silently, through an executable or batch script.|[![](https://img.shields.io/github/languages/top/ShadowWhisperer/Remove-MS-Edge?color=pink&style=flat-square)](https://github.com/ShadowWhisperer/Remove-MS-Edge/graphs/contributors)|[![](https://flat.badgen.net/github/license/ShadowWhisperer/Remove-MS-Edge?label=)](https://github.com/ShadowWhisperer/Remove-MS-Edge/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/ShadowWhisperer/Remove-MS-Edge?style=flat-square&label=)](https://github.com/ShadowWhisperer/Remove-MS-Edge/graphs/code-frequency)| 225 | |[Windows-Optimizer-Project](https://github.com/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER#readme)|Adapts the different Windows caches (i.e. memory areas and the size of the paging file) automatically to the integrated hardware such as the main memory|[![](https://img.shields.io/github/languages/top/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER?color=pink&style=flat-square)](https://github.com/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER/graphs/contributors)|[![](https://flat.badgen.net/github/license/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER?label=)](https://github.com/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER?style=flat-square&label=)](https://github.com/WINDOWS-OPTIMIZER-PROJECT/WINDOWS-OPTIMIZER/graphs/code-frequency)| 226 | 227 | 228 | ### Other [⌂](#-) 229 | |Repository|Short description|Language|License|Last commit| 230 | |:-:|:-:|:-:|:-:|:-:| 231 | |[Windows 10/11 Simplifier](https://github.com/mattreecebentley/Windows-10-11-Simplifier#readme)|A script for automating simplifications and maintenance|[![](https://img.shields.io/github/languages/top/mattreecebentley/Windows-10-11-Simplifier?color=pink&style=flat-square)](https://github.com/mattreecebentley/Windows-10-11-Simplifier/graphs/contributors)|[](https://github.com/mattreecebentley/Windows-10-11-Simplifier/blob/master/license.md)|[![](https://img.shields.io/github/last-commit/mattreecebentley/Windows-10-11-Simplifier?style=flat-square&label=)](https://github.com/mattreecebentley/Windows-10-11-Simplifier/graphs/code-frequency)| 232 | |[BCDEdit Tweaks](https://github.com/dubbyOW/BCDEditTweaks#readme)|.cmd script for enhancing Windows performance through optimized [BCDEdit](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/bcdedit) parameters|[![](https://img.shields.io/github/languages/top/dubbyOW/BCDEditTweaks?color=pink&style=flat-square)](https://github.com/dubbyOW/BCDEditTweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/dubbyOW/BCDEditTweaks?label=)](https://github.com/dubbyOW/BCDEditTweaks/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/dubbyOW/BCDEditTweaks?style=flat-square&label=)](https://github.com/dubbyOW/BCDEditTweaks/graphs/code-frequency)| 233 | |[Windows Repair and Optimization Scripts](https://github.com/tboy1337/Repair-Windows#readme)|A collection of batch scripts to repair and optimize Windows systems|[![](https://img.shields.io/github/languages/top/tboy1337/Repair-Windows?color=pink&style=flat-square)](https://github.com/tboy1337/Repair-Windows/graphs/contributors)|[![](https://flat.badgen.net/github/license/tboy1337/Repair-Windows?label=)](https://github.com/tboy1337/Repair-Windows/blob/main/LICENSE.txt)|[![](https://img.shields.io/github/last-commit/tboy1337/Repair-Windows?style=flat-square&label=)](https://github.com/tboy1337/Repair-Windows/graphs/code-frequency)| 234 | |[Auto-Tune](https://github.com/RpJect/Auto-Tune#readme)|Program Uses Microsoft Windows Built-in Tools designed to optimize and fix various issues on a Windows system|[![](https://img.shields.io/github/languages/top/RpJect/Auto-Tune?color=pink&style=flat-square)](https://github.com/RpJect/Auto-Tune/graphs/contributors)|[![](https://flat.badgen.net/github/license/RpJect/Auto-Tune?label=)](https://github.com/RpJect/Auto-Tune/issues/1)|[![](https://img.shields.io/github/last-commit/RpJect/Auto-Tune?style=flat-square&label=)](https://github.com/RpJect/Auto-Tune/graphs/code-frequency)| 235 | |[Tweaks-Configurations-Troubleshooting](https://github.com/SecretlySpy/Tweaks-Configurations-Troubleshooting#readme)|These files are made for Windows and Linux to make the system run smoothly with customized changes|[![](https://img.shields.io/github/languages/top/SecretlySpy/Tweaks-Configurations-Troubleshooting?color=pink&style=flat-square)](https://github.com/SecretlySpy/Tweaks-Configurations-Troubleshooting/graphs/contributors)|[![](https://flat.badgen.net/github/license/SecretlySpy/Tweaks-Configurations-Troubleshooting?label=)](https://github.com/SecretlySpy/Tweaks-Configurations-Troubleshooting/issues/1)|[![](https://img.shields.io/github/last-commit/SecretlySpy/Tweaks-Configurations-Troubleshooting?style=flat-square&label=)](https://github.com/SecretlySpy/Tweaks-Configurations-Troubleshooting/graphs/code-frequency)| 236 | |[W11-Helpers](https://github.com/ABWEBIT/w11-helpers#readme)|Collection of useful system tweaking batch files|[![](https://img.shields.io/github/languages/top/ABWEBIT/w11-helpers?color=pink&style=flat-square)](https://github.com/ABWEBIT/w11-helpers/graphs/contributors)|[![](https://flat.badgen.net/github/license/ABWEBIT/w11-helpers?label=)](https://github.com/ABWEBIT/w11-helpers)|[![](https://img.shields.io/github/last-commit/ABWEBIT/w11-helpers?style=flat-square&label=)](https://github.com/ABWEBIT/w11-helpers/graphs/code-frequency)| 237 | |[PASPAS](https://github.com/berkaygediz/PASPAS#readme)|A fast and efficient multi-threaded analysis and cleanup tool designed to accelerate system maintenance tasks|[![](https://img.shields.io/github/languages/top/berkaygediz/PASPAS?color=pink&style=flat-square)](https://github.com/berkaygediz/PASPAS/graphs/contributors)|[![](https://flat.badgen.net/github/license/berkaygediz/PASPAS?label=)](https://github.com/berkaygediz/PASPAS/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/berkaygediz/PASPAS/master?style=flat-square&label=)](https://github.com/berkaygediz/PASPAS/graphs/code-frequency)| 238 | |[Win11Tweaker](https://github.com/iandiv/Win11Tweaker#readme)|Powerful Tool for Personalizing and Enhancing Windows 11|[![](https://img.shields.io/github/languages/top/iandiv/Win11Tweaker?color=pink&style=flat-square)](https://github.com/iandiv/Win11Tweaker/graphs/contributors)|[![](https://flat.badgen.net/github/license/iandiv/Win11Tweaker?label=)](https://github.com/iandiv/Win11Tweaker/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/iandiv/Win11Tweaker?style=flat-square&label=)](https://github.com/iandiv/Win11Tweaker/graphs/code-frequency)| 239 | |[Windows Tweaks](https://github.com/rabatson/Windows-Tweaks#readme)|Messing around with Windows to customize how it looks and functions|[![](https://img.shields.io/github/languages/top/rabatson/Windows-Tweaks?color=pink&style=flat-square)](https://github.com/rabatson/Windows-Tweaks/graphs/contributors)|[![](https://flat.badgen.net/github/license/rabatson/Windows-Tweaks?label=)](https://github.com/rabatson/Windows-Tweaks/issues/1)|[![](https://img.shields.io/github/last-commit/rabatson/Windows-Tweaks?style=flat-square&label=)](https://github.com/rabatson/Windows-Tweaks/graphs/code-frequency)| 240 | |[Windows.Tweaks.OS](https://github.com/eplord/Windows.Tweaks.OS#readme)|Collection of registry, shortcuts, PowerShell, and batch file tweaks for Windows 10 & 11|[![](https://img.shields.io/github/languages/top/eplord/Windows.Tweaks.OS?color=pink&style=flat-square)](https://github.com/eplord/Windows.Tweaks.OS/graphs/contributors)|[![](https://flat.badgen.net/github/license/eplord/Windows.Tweaks.OS?label=)](https://github.com/eplord/Windows.Tweaks.OS/issues/1)|[![](https://img.shields.io/github/last-commit/eplord/Windows.Tweaks.OS?style=flat-square&label=)](https://github.com/eplord/Windows.Tweaks.OS/graphs/code-frequency)| 241 | |[Ultimate-Windows-ISO-and-Optimizations](https://github.com/gex581990/Ultimate-Windows-ISO-and-Optimizations#readme)|Scripts, Reg Files, and NTLite configs to debloat, fix, and optimize Windows into the Ultimate operating system for gaming while maintaining compatibility and useful features|[![](https://img.shields.io/github/languages/top/gex581990/Ultimate-Windows-ISO-and-Optimizations?color=pink&style=flat-square)](https://github.com/gex581990/Ultimate-Windows-ISO-and-Optimizations/graphs/contributors)|[![](https://flat.badgen.net/github/license/gex581990/Ultimate-Windows-ISO-and-Optimizations?label=)](https://github.com/gex581990/Ultimate-Windows-ISO-and-Optimizations/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/gex581990/Ultimate-Windows-ISO-and-Optimizations?style=flat-square&label=)](https://github.com/gex581990/Ultimate-Windows-ISO-and-Optimizations/graphs/code-frequency)| 242 | |[Public Scripts and Apps](https://github.com/andrew-s-taylor/public#readme)|A selection of applications, powershell scripts and batch scripts for device management including WVD and App-V|[![](https://img.shields.io/github/languages/top/andrew-s-taylor/public?color=pink&style=flat-square)](https://github.com/andrew-s-taylor/public/graphs/contributors)|[![](https://flat.badgen.net/github/license/andrew-s-taylor/public?label=)](https://github.com/andrew-s-taylor/public/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/andrew-s-taylor/public?style=flat-square&label=)](https://github.com/andrew-s-taylor/public/graphs/code-frequency)| 243 | |[WinHubX](https://github.com/OpenDevCore/WinHubX#readme)|Activator,Debloter all in one tool|[![](https://img.shields.io/github/languages/top/OpenDevCore/WinHubX?color=pink&style=flat-square)](https://github.com/OpenDevCore/WinHubX/graphs/contributors)|[![](https://flat.badgen.net/github/license/OpenDevCore/WinHubX?label=)](https://github.com/OpenDevCore/WinHubX/blob/main/LICENSE)|[![](https://flat.badgen.net/static/status/Archived/624711?label=)](https://github.com/OpenDevCore/WinHubX/graphs/code-frequency)| 244 | |[virusremoval](https://github.com/Activekingdom/virusremoval#readme)|This is to download virus removal tools from web sites for windows 10 , 11 and debloat Windows|[![](https://img.shields.io/github/languages/top/Activekingdom/virusremoval?color=pink&style=flat-square)](https://github.com/Activekingdom/virusremoval/graphs/contributors)|[![](https://flat.badgen.net/github/license/Activekingdom/virusremoval?label=)](https://github.com/Activekingdom/virusremoval/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Activekingdom/virusremoval?style=flat-square&label=)](https://github.com/Activekingdom/virusremoval/graphs/code-frequency)| 245 | |[From Zero to Hero - PowerShell](https://github.com/aflaviarv/fromzero-tohero-powershell#readme)|A curated collection of PowerShell scripts and knowledge to automate Windows tasks, improve performance, and troubleshoot common issues|[![](https://img.shields.io/github/languages/top/aflaviarv/fromzero-tohero-powershell?color=pink&style=flat-square)](https://github.com/aflaviarv/fromzero-tohero-powershell/graphs/contributors)|[![](https://flat.badgen.net/github/license/aflaviarv/fromzero-tohero-powershell?label=)](https://github.com/aflaviarv/fromzero-tohero-powershell/issues/1)|[![](https://img.shields.io/github/last-commit/aflaviarv/fromzero-tohero-powershell?style=flat-square&label=)](https://github.com/aflaviarv/fromzero-tohero-powershell/graphs/code-frequency)| 246 | |[PowerShell](https://github.com/bonguides25/PowerShell#readme)|-|[![](https://img.shields.io/github/languages/top/bonguides25/PowerShell?color=pink&style=flat-square)](https://github.com/bonguides25/PowerShell/graphs/contributors)|[![](https://flat.badgen.net/github/license/bonguides25/PowerShell?label=)](https://github.com/bonguides25/PowerShell/issues/2)|[![](https://img.shields.io/github/last-commit/bonguides25/PowerShell?style=flat-square&label=)](https://github.com/bonguides25/PowerShell/graphs/code-frequency)| 247 | |[recovery](https://github.com/kh0st/winrecovery#readme)|Recovery Installs for Windows and Linux Systems // Debloat|[![](https://img.shields.io/github/languages/top/kh0st/winrecovery?color=pink&style=flat-square)](https://github.com/kh0st/winrecovery/graphs/contributors)|[![](https://flat.badgen.net/github/license/kh0st/winrecovery?label=)](https://github.com/kh0st/winrecovery/issues/1)|[![](https://img.shields.io/github/last-commit/kh0st/winrecovery?style=flat-square&label=)](https://github.com/kh0st/winrecovery/graphs/code-frequency)| 248 | |[The Winny Jenkins - Windows Performance Toolkit](https://github.com/BekeAtGithub/Winny#readme)|A comprehensive tool to collect, monitor, and analyze detailed system performance metrics on Windows 11|[![](https://img.shields.io/github/languages/top/BekeAtGithub/Winny?color=pink&style=flat-square)](https://github.com/BekeAtGithub/Winny/graphs/contributors)|[![](https://flat.badgen.net/github/license/BekeAtGithub/Winny?label=)](https://github.com/BekeAtGithub/Winny/issues/1)|[![](https://img.shields.io/github/last-commit/BekeAtGithub/Winny?style=flat-square&label=)](https://github.com/BekeAtGithub/Winny/graphs/code-frequency)| 249 | |[Windows-Tweaker-Resources](https://github.com/FyumiSownz/Windows-Tweaker-Resources#readme)|-|[![](https://img.shields.io/github/languages/top/FyumiSownz/Windows-Tweaker-Resources?color=pink&style=flat-square)](https://github.com/FyumiSownz/Windows-Tweaker-Resources/graphs/contributors)|[![](https://flat.badgen.net/github/license/FyumiSownz/Windows-Tweaker-Resources?label=)](https://github.com/FyumiSownz/Windows-Tweaker-Resources/issues/1)|[![](https://img.shields.io/github/last-commit/FyumiSownz/Windows-Tweaker-Resources?style=flat-square&label=)](https://github.com/FyumiSownz/Windows-Tweaker-Resources/graphs/code-frequency)| 250 | |[winify](https://github.com/Evren-os/winify#readme)|A curated stash of Windows dotfiles, tweaks, and custom settings|[![](https://img.shields.io/github/languages/top/Evren-os/winify?color=pink&style=flat-square)](https://github.com/Evren-os/winify/graphs/contributors)|[![](https://flat.badgen.net/github/license/Evren-os/winify?label=)](https://github.com/Evren-os/winify/issues/1)|[![](https://img.shields.io/github/last-commit/Evren-os/winify?style=flat-square&label=)](https://github.com/Evren-os/winify/graphs/code-frequency)| 251 | |[WinFixer Ultimate](https://github.com/FahadMAlsamiti/WinFixer-Ultimate#readme)|A powerful tool designed to repair, clean, and optimize your Windows system|[![](https://img.shields.io/github/languages/top/FahadMAlsamiti/WinFixer-Ultimate?color=pink&style=flat-square)](https://github.com/FahadMAlsamiti/WinFixer-Ultimate/graphs/contributors)|[![](https://flat.badgen.net/github/license/FahadMAlsamiti/WinFixer-Ultimate?label=)](https://github.com/FahadMAlsamiti/WinFixer-Ultimate/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/FahadMAlsamiti/WinFixer-Ultimate?style=flat-square&label=)](https://github.com/FahadMAlsamiti/WinFixer-Ultimate/graphs/code-frequency)| 252 | |[Joolae-Tweaks-Preferences](https://github.com/Joolae/Joolae-Tweaks-Preferences#readme)|Personal tweaks and preferences, currently mostly tested for Windows 10|[![](https://img.shields.io/github/languages/top/Joolae/Joolae-Tweaks-Preferences?color=pink&style=flat-square)](https://github.com/Joolae/Joolae-Tweaks-Preferences/graphs/contributors)|[![](https://flat.badgen.net/github/license/Joolae/Joolae-Tweaks-Preferences?label=)](https://github.com/Joolae/Joolae-Tweaks-Preferences/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Joolae/Joolae-Tweaks-Preferences?style=flat-square&label=)](https://github.com/Joolae/Joolae-Tweaks-Preferences/graphs/code-frequency)| 253 | |[Windows Tweaker Tool](https://github.com/xize/WSTT#readme)|A easy way to tweak windows and its security policies|[![](https://img.shields.io/github/languages/top/xize/WSTT?color=pink&style=flat-square)](https://github.com/xize/WSTT/graphs/contributors)|[![](https://flat.badgen.net/github/license/xize/WSTT?label=)](https://github.com/xize/WSTT/blob/master/LICENSE)|[![](https://img.shields.io/github/last-commit/xize/WSTT?style=flat-square&label=)](https://github.com/xize/WSTT/graphs/code-frequency)| 254 | |[Windows Optimizations & Adjustments](https://github.com/SD-ITLab/OptimizeWindows#windows-optimizations--adjustments)|Directory for Windows ISO-Tweaks|[![](https://img.shields.io/github/languages/top/SD-ITLab/OptimizeWindows?color=pink&style=flat-square)](https://github.com/SD-ITLab/OptimizeWindows/graphs/contributors)|[![](https://flat.badgen.net/github/license/SD-ITLab/OptimizeWindows?label=)](https://github.com/SD-ITLab/OptimizeWindows/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/SD-ITLab/OptimizeWindows?style=flat-square&label=)](https://github.com/SD-ITLab/OptimizeWindows/graphs/code-frequency)| 255 | |[Fixyfier](https://github.com/arisvardakas/Fixyfier#readme)|A user-friendly toolkit for PC maintenance, optimization, and troubleshooting|[![](https://img.shields.io/github/languages/top/arisvardakas/Fixyfier?color=pink&style=flat-square)](https://github.com/arisvardakas/Fixyfier/graphs/contributors)|[![](https://flat.badgen.net/badge/license/Other/blue?label=)](https://github.com/arisvardakas/Fixyfier/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/arisvardakas/Fixyfier?style=flat-square&label=)](https://github.com/arisvardakas/Fixyfier/graphs/code-frequency)| 256 | |[Windows-Customization](https://github.com/Uchiha-Itachi-21/Windows-Customization#readme)|A collection of tweaks, themes, and tools to personalize and enhance the Windows experience|[![](https://img.shields.io/github/languages/top/Uchiha-Itachi-21/Windows-Customization?color=pink&style=flat-square)](https://github.com/Uchiha-Itachi-21/Windows-Customization/graphs/contributors)|[![](https://flat.badgen.net/github/license/Uchiha-Itachi-21/Windows-Customization?label=)](https://github.com/Uchiha-Itachi-21/Windows-Customization/issues/1)|[![](https://img.shields.io/github/last-commit/Uchiha-Itachi-21/Windows-Customization?style=flat-square&label=)](https://github.com/Uchiha-Itachi-21/Windows-Customization/graphs/code-frequency)| 257 | |[Windows 11 system tuning settings](https://github.com/jash-git/Windows-11-system-tuning-settings#readme)|Windows 11 system tuning settings|[![](https://img.shields.io/github/languages/top/jash-git/Windows-11-system-tuning-settings?color=pink&style=flat-square)](https://github.com/jash-git/Windows-11-system-tuning-settings/graphs/contributors)|[![](https://flat.badgen.net/github/license/jash-git/Windows-11-system-tuning-settings?label=)](https://github.com/jash-git/Windows-11-system-tuning-settings/issues/1)|[![](https://img.shields.io/github/last-commit/jash-git/Windows-11-system-tuning-settings?style=flat-square&label=)](https://github.com/jash-git/Windows-11-system-tuning-settings/graphs/code-frequency)| 258 | 259 | 260 | 261 | 262 | ### ISOs/Playbooks [⌂](#-) 263 | |Repository|Short description|Language|License|Last commit| 264 | |:-:|:-:|:-:|:-:|:-:| 265 | |[Creosynth](https://github.com/Creosynth/Creosynth#readme)|Windows playbook for creators|[![](https://img.shields.io/github/languages/top/Creosynth/Creosynth?color=pink&style=flat-square)](https://github.com/Creosynth/Creosynth/graphs/contributors)|[![](https://flat.badgen.net/github/license/Creosynth/Creosynth?label=)](https://github.com/Creosynth/Creosynth/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Creosynth/Creosynth?style=flat-square&label=)](https://github.com/Creosynth/Creosynth/graphs/code-frequency)| 266 | |[TheOS](https://github.com/heitorrosa/TheOS#readme)|Custom Windows OS with a lot of debloats and optimizations, focusing on optimizing your DPC Latency and overall system stability|[![](https://img.shields.io/github/languages/top/heitorrosa/TheOS?color=pink&style=flat-square)](https://github.com/heitorrosa/TheOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/heitorrosa/TheOS?label=)](https://github.com/heitorrosa/TheOS/blob/theOS/LICENSE)|[![](https://img.shields.io/github/last-commit/heitorrosa/TheOS?style=flat-square&label=)](https://github.com/heitorrosa/TheOS/graphs/code-frequency)| 267 | |[KernelOS](https://github.com/Velytics/KernelOS#readme)|An efficient Windows modification with hundreds of services, devices and drivers disabled|[![](https://img.shields.io/github/languages/top/Velytics/KernelOS?color=pink&style=flat-square)](https://github.com/Velytics/KernelOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/Velytics/KernelOS?label=)](https://github.com/Velytics/KernelOS/issues/5)|[![](https://img.shields.io/github/last-commit/Velytics/KernelOS?style=flat-square&label=)](https://github.com/Velytics/KernelOS/graphs/code-frequency)| 268 | |[Atlas](https://github.com/Atlas-OS/Atlas#readme)|An open and lightweight modification to Windows, designed to optimize performance, privacy and usability|[![](https://img.shields.io/github/languages/top/Atlas-OS/Atlas?color=pink&style=flat-square)](https://github.com/Atlas-OS/Atlas/graphs/contributors)|[![](https://flat.badgen.net/github/license/Atlas-OS/Atlas?label=)](https://github.com/Atlas-OS/Atlas/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/Atlas-OS/Atlas?style=flat-square&label=)](https://github.com/Atlas-OS/Atlas/graphs/code-frequency)| 269 | |[RapidOS](https://github.com/rapid-community/RapidOS#readme)|A powerful modification for Windows 10/11 that radically transforms the OS through deep customization, while maintaining rock-solid stability through the [AME Wizard](https://ameliorated.io/) playbook system|[![](https://img.shields.io/github/languages/top/rapid-community/RapidOS?color=pink&style=flat-square)](https://github.com/rapid-community/RapidOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/rapid-community/RapidOS?label=)](https://github.com/rapid-community/RapidOS/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/rapid-community/RapidOS?style=flat-square&label=)](https://github.com/rapid-community/RapidOS/graphs/code-frequency)| 270 | |[ReviOS](https://github.com/meetrevision/playbook#readme)|A lightweight, stable, and performance-focused customized version of Windows that enhances privacy and compatibility|[![](https://img.shields.io/github/languages/top/meetrevision/playbook?color=pink&style=flat-square)](https://github.com/meetrevision/playbook/graphs/contributors)|[](https://github.com/meetrevision/playbook/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/meetrevision/playbook?style=flat-square&label=)](https://github.com/meetrevision/playbook/graphs/code-frequency)| 271 | |[NeptuneOS](https://github.com/NyneDZN/NeptuneOS#readme)|NeptuneOS is a windows modification that improves system performance|[![](https://img.shields.io/github/languages/top/NyneDZN/NeptuneOS?color=pink&style=flat-square)](https://github.com/NyneDZN/NeptuneOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/NyneDZN/NeptuneOS?label=)](https://github.com/NyneDZN/NeptuneOS/blob/main/LICENSE)|[![](https://img.shields.io/github/last-commit/NyneDZN/NeptuneOS?style=flat-square&label=)](https://github.com/NyneDZN/NeptuneOS/graphs/code-frequency)| 272 | |[RubenOS](https://github.com/WorldOFWindows/RubenOS#readme)|A custom Windows™ modification for gaming and home-use|[![](https://img.shields.io/github/languages/top/WorldOFWindows/RubenOS?color=pink&style=flat-square)](https://github.com/WorldOFWindows/RubenOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/WorldOFWindows/RubenOS?label=)](https://github.com/WorldOFWindows/RubenOS/blob/main/LICENSE.md)|[![](https://img.shields.io/github/last-commit/WorldOFWindows/RubenOS?style=flat-square&label=)](https://github.com/WorldOFWindows/RubenOS/graphs/code-frequency)| 273 | |[RekOS](https://github.com/Reknotic/RekOS#readme)|RekOS is a custom windows 10 ISO for Gaming purposes with tons of useful tweaks and integration in order to get you the best Performance!|[![](https://img.shields.io/github/languages/top/Reknotic/RekOS?color=pink&style=flat-square)](https://github.com/Reknotic/RekOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/Reknotic/RekOS?label=)](https://github.com/Reknotic/RekOS/issues/3)|[![](https://img.shields.io/github/last-commit/Reknotic/RekOS?style=flat-square&label=)](https://github.com/Reknotic/RekOS/graphs/code-frequency)| 274 | |[TobirOS](https://github.com/tobiasrepracek/TobirOS#readme)|Really powerfull Windows 10 Pro tweaked ISO|[![](https://img.shields.io/github/languages/top/tobiasrepracek/TobirOS?color=pink&style=flat-square)](https://github.com/tobiasrepracek/TobirOS/graphs/contributors)|[![](https://flat.badgen.net/github/license/tobiasrepracek/TobirOS?label=)](https://github.com/tobiasrepracek/TobirOS/issues/3)|[![](https://img.shields.io/github/last-commit/tobiasrepracek/TobirOS?style=flat-square&label=)](https://github.com/tobiasrepracek/TobirOS/graphs/code-frequency)| 275 | |[Windows 10 Awesome Edition](https://github.com/YetAnotherMorty/Windows-10-Awesome-Edition#readme)|A Custom ISO build for Windows 10 with all the crap removed|[![](https://img.shields.io/github/languages/top/YetAnotherMorty/Windows-10-Awesome-Edition?color=pink&style=flat-square)](https://github.com/YetAnotherMorty/Windows-10-Awesome-Edition/graphs/contributors)|[![](https://flat.badgen.net/github/license/YetAnotherMorty/Windows-10-Awesome-Edition?label=)](https://github.com/YetAnotherMorty/Windows-10-Awesome-Edition/issues/3)|[![](https://img.shields.io/github/last-commit/YetAnotherMorty/Windows-10-Awesome-Edition?style=flat-square&label=)](https://github.com/YetAnotherMorty/Windows-10-Awesome-Edition/graphs/code-frequency)| 276 | 277 | 278 | -------------------------------------------------------------------------------- /UserGUI.md: -------------------------------------------------------------------------------- 1 | # User interface 2 | 3 | |Component|Description|Open Replacement| 4 | |:-:|:-:|:-:| 5 | |[Command Prompt](https://en.wikipedia.org/wiki/Cmd.exe)|Text-based shell (command line interpreter) that provides a command line interface to the operating system|[Cmder](https://github.com/cmderdev/cmder)| 6 | |[PowerShell](https://en.wikipedia.org/wiki/PowerShell)|A task automation and configuration management program|[Hyper](https://hyper.is/)| 7 | |[Windows shell](https://en.wikipedia.org/wiki/Windows_shell)|The graphical user interface for the Windows operating system|[Cairo](https://cairodesktop.com/)| 8 | |[File Explorer](https://en.wikipedia.org/wiki/Windows_File_Explorer)|A file manager application|[Explorer++](https://explorerplusplus.com/)| 9 | -------------------------------------------------------------------------------- /app&utils.md: -------------------------------------------------------------------------------- 1 | # Applications and utilities 2 | 3 | |Component (Wikipedia)|Description|Open Replacement| 4 | |:-:|:-:|:-:| 5 | |[Alarms & Clock](https://en.wikipedia.org/wiki/Windows_Alarms_%26_Clock)|App that allows Windows users to set alarms, stopwatches, timers, and view a world clock|[Digital Clock 4](https://sourceforge.net/projects/digitalclock4/)| 6 | |[Camera](https://en.wikipedia.org/wiki/Windows_Camera)|Image and video capture utility|[videoInput](http://www.muonics.net/school/spring05/videoInput/)| 7 | |[Calculator](https://en.wikipedia.org/wiki/Windows_Calculator)|Calculation application|[SpeedCrunch](https://speedcrunch.org/)| 8 | |[Calendar](https://en.wikipedia.org/wiki/Calendar_(Windows))|Calendaring application|[qOrganizer](http://qorganizer.sourceforge.net/)| 9 | |[Contacts](https://en.wikipedia.org/wiki/Windows_Contacts)|Keeps a single list of contacts that can be shared by multiple apps|[contacts-manager](https://github.com/ArcTLK/contacts-manager#readme)| 10 | |[Character Map](https://en.wikipedia.org/wiki/Character_Map_(Windows))|Utility to view and search characters in a font, copy them to the clipboard and view their Windows Alt keycodes and Unicode names|[SymbSearch](https://leun4m.github.io/symbsearch/)| 11 | |[Cortana](https://en.wikipedia.org/wiki/Cortana_(virtual_assistant))|Digital personal assistant|[Kara](https://github.com/emileclarkb/Kara#readme)| 12 | |[Easy Transfer](https://en.wikipedia.org/wiki/Windows_Easy_Transfer)|Used to transfer many files at once from one computer to another|[User Data Transfer](https://github.com/andrew-metallinos/User-Data-Transfer-Windows-10-and-11#readme)| 13 | |[Edge](https://en.wikipedia.org/wiki/Microsoft_Edge)|Web browser|[Mypal](https://mypal-browser.org/)| 14 | |[Groove Music](https://en.wikipedia.org/wiki/Groove_Music)|Digital media player and media library application that is used for playing audio|[Dopamine](https://www.digimezzo.com/software/dopamine/)| 15 | |[Movies & TV](https://en.wikipedia.org/wiki/Microsoft_Movies_%26_TV)|Digital media player and media library application that is used for playing video. In addition to being a media player, Movies & TV lets users purchase or rent movies and TV episodes from the Windows Store|[Kodi](https://kodi.tv/)| 16 | |[OneDrive](https://en.wikipedia.org/wiki/OneDrive)|Freemium cloud storage folder and sync service|[Syncthing](https://syncthing.net/)| 17 | |[OneNote](https://en.wikipedia.org/wiki/Microsoft_OneNote)|Integrated note-taking app, based on the Microsoft Office product of the same name|[Standard Notes](https://standardnotes.com/)| 18 | |[On-Screen Keyboard]()|Virtual keyboard|[ReplaceOSK](https://github.com/Lulech23/ReplaceOSK#readme)| 19 | |[Paint 3D]()|Simple graphics painting app|[MyPaint](https://mypaint.app/)| 20 | |[Photos](https://en.wikipedia.org/wiki/Microsoft_Photos)|Simple image viewer|[PicView](https://picview.org/)| 21 | |[Steps Recorder]()|Utility that allows the user to capture steps they took to reproduce a problem|| 22 | |[Windows To Go]()|Utility to create bootable versions of Windows|[Windows To Go Assistant](https://github.com/nkc3g4/wtg-assistant#readme)| 23 | |[Notepad]()|Simple text editor|[NotepadEx](https://github.com/Air16/NotepadEx#readme)| 24 | |[Narrator]()|Screen reader utility that reads dialog boxes and window controls in a number of the more basic applications|[NVDA](https://github.com/nvaccess/nvda#readme)| 25 | |[Sound Recorder]()|Simple audio recording app|[HarddiskOgg](https://sourceforge.net/projects/harddiskogg/)| 26 | |[Skype]()|Messaging and calling service|[Jami](https://jami.net/)| 27 | |[Sticky Notes]()|Tool for jotting notes on the desktop|[Standard Notes](https://standardnotes.com/)| 28 | |[WordPad]()|Simple word processor|[WordPad-](https://github.com/blaze6950/WordPad-#readme)| 29 | |[Private Character Editor]()|Utility to create private use characters as defined under Unicode and various East Asian encoding schemes|[BIRDFONT](https://birdfont.org/)| 30 | |[Remote Desktop Connection]()|Allows a user to securely connect to a computer running Terminal Services and interact with a full desktop environment on that machine, including support for remoting of printers, audio, and drives|[mRemoteNG](https://mremoteng.org/)| 31 | |[Remote Assistance]()|Allows a user to temporarily take over a remote computer over a network or the internet to offer help with and resolve issues|[Aspia](https://aspia.org/)| 32 | |[Mobility Center]()|Allows a user to adjust settings related to mobile computing|| 33 | |[Speech Recognition]()|Allows a user to input voice commands|[CMUSphinx](https://cmusphinx.github.io/)| 34 | |[IExpress]()|Allows users to create self-extracting, self-installing INF installation-based packages|| 35 | |[Magnifier]()|Screen enlargement app|[Virtual Magnifying Glass](https://magnifier.sourceforge.net/)| 36 | |[Fax and Scan]()|Integrated faxing and image scanning application|[Scanner](https://simon-knuth.github.io/scanner/)| 37 | |[Photo Viewer]()|Simple image viewer that can play a simple slideshow|[nomacs](https://nomacs.org/)| 38 | |[Mail]()|Email aggregator|[Thunderbird](https://www.thunderbird.net/)| 39 | |[Maps]()|Map viewer that allows users to look for locations, plan routes, and store offline maps|[NAVIT](https://www.navit-project.org/)| 40 | |[Media Center]()|Designed to serve as a home-entertainment hub. Lets users browse and view pictures, videos, and music|[Kodi](https://kodi.tv/)| 41 | |[Task Manager]()|Provides information about computer performance and displays details about running applications, processes, network activity, logged-in users, and system services|[TaskExplorer](https://github.com/DavidXanatos/TaskExplorer)| 42 | |[Disk Cleanup]()|Utility for compacting rarely used files and removing files that are no longer required|[BleachBit](https://www.bleachbit.org/)| 43 | |[Snipping Tool]()|Screen-capture tool that allows for taking screenshots (called snips)|[Snipping Tool++](https://github.com/SnippingToolPlusPlus/SnippingToolPlusPlus#readme)| 44 | |[Windows Security]()|Used to transfer many files at once from one computer to another|| 45 | |[Solitaire Collection]()|Set of solitaire card games|[PySolFC](https://pysolfc.sourceforge.io/)| 46 | -------------------------------------------------------------------------------- /conf_&_mant.md: -------------------------------------------------------------------------------- 1 | # Configuration and maintenance 2 | Subsections: [Control Panel](#control-panel-) - [Administrative Tools](#administrative-tools-) - [Software installation and deployment](#software-installation-and-deployment-) 3 | 4 | ## Control Panel [«](#configuration-and-maintenance) 5 | |Component|Description|Open Replacement| 6 | |:-:|:-:|:-:| 7 | |[Control Panel](https://en.wikipedia.org/wiki/Control_Panel_(Windows))|Allows users to view and change basic system settings and controls, such as adding hardware, adding and removing software, controlling user accounts, and changing accessibility options|[SimpPanel](https://sourceforge.net/projects/simppanel/)| 8 | |[Device Manager](https://en.wikipedia.org/wiki/Device_Manager)|Allows the user to display and control the hardware attached to the computer, and control what device drivers are used|[VrtuleTree](https://github.com/MartinDrab/VrtuleTree#readme) 9 | 10 | 11 | ## Administrative Tools [«](#configuration-and-maintenance) 12 | |Component|Description|Open Replacement| 13 | |:-:|:-:|:-:| 14 | |[Microsoft Drive Optimizer](https://en.wikipedia.org/wiki/Microsoft_Drive_Optimizer)|Rearranges files stored on a hard disk to occupy contiguous storage locations in order to optimize computer performance|[UltraDefrag](https://ultradefrag.net/)| 15 | |[Registry Editor](https://en.wikipedia.org/wiki/Windows_Registry#Editing)|Allows users to browse and edit the Windows registry|[Registry Explorer](https://github.com/zodiacon/RegExp#readme)| 16 | |[Task Scheduler](https://en.wikipedia.org/wiki/Windows_Task_Scheduler)|Allows users to script tasks for running during scheduled intervals|[Process Hacker](https://processhacker.sourceforge.io/)| 17 | |[Event Viewer](https://en.wikipedia.org/wiki/Event_Viewer)|Lets administrators and users view the event logs on a local or remote machine|[EventLook](https://github.com/kmaki565/EventLook#readme)| 18 | 19 | ## Software installation and deployment [«](#configuration-and-maintenance) 20 | |Component|Description|Open Replacement| 21 | |:-:|:-:|:-:| 22 | |[Windows Update](https://en.wikipedia.org/wiki/Windows_Update)|An online service providing updates such as service packs, critical updates and device drivers. A variation called Microsoft Update also provides software updates for other Microsoft products|[Legacy Update](https://github.com/LegacyUpdate/LegacyUpdate#readme) / [WSUS Offline Update](https://gitlab.com/wsusoffline/wsusoffline)| 23 | |[Windows Installer](https://en.wikipedia.org/wiki/Windows_Installer)|An engine for the management of software installation. Includes a GUI framework, automatic generation of the uninstallation sequence and deployment capabilities for corporate networks|[NSIS](https://nsis.sourceforge.io/)| 24 | 25 | ...do you know better replacements ? Share them [here](https://github.com/forart/Opendows/discussions/1) ! 26 | -------------------------------------------------------------------------------- /note.md: -------------------------------------------------------------------------------- 1 | 🚧 **TODO** 🚧 2 | 3 | - https://github.com/JHRobotics?tab=repositories 4 | - https://github.com/IsaacSchemm/GrantManager 5 | - https://github.com/Lenicore/Grant-Permission-on-Windows 6 | - https://github.com/DmitrijVC/ElevationRS 7 | - https://github.com/ozdeadmeat/Discord_SecretKnock 8 | - https://github.com/tylertian123/Ctrl 9 | - https://github.com/lithnet/access-manager 10 | - https://github.com/bongochong/CWP-Utilities 11 | - https://github.com/SMSAgentSoftware/System-Explorer-for-Windows 12 | - https://github.com/raste/PermissionsManager 13 | - https://github.com/valinet/ExplorerPatcher 14 | - https://github.com/MegaphatNetworks?tab=repositories 15 | - https://reactos.org/wiki/Fonts 16 | - https://github.com/twonth/winning-at-windows 17 | - https://github.com/AxtMueller/Windows-Kernel-Explorer 18 | - https://github.com/GeorgeK1ng/GenAHCI 19 | - https://github.com/vxiiduu/NotepadEx 20 | - https://github.com/windows-experience/eXPerienceBar 21 | - https://github.com/ntdevlabs/tiny11builder 22 | - https://github.com/Skulltrail192/One-Core-API-Binaries 23 | - https://github.com/Upinel/BetterRDP 24 | - https://github.com/elishacloud/dxwrapper 25 | -------------------------------------------------------------------------------- /script&cmd.md: -------------------------------------------------------------------------------- 1 | # Scripting and command-line 2 | 3 | |Component|Description|Open Replacement| 4 | |:-:|:-:|:-:| 5 | |[Batch file](https://en.wikipedia.org/wiki/Batch_file)||| 6 | |[CHKDSK](https://en.wikipedia.org/wiki/CHKDSK)||| 7 | |[Cmd.exe](https://en.wikipedia.org/wiki/Cmd.exe)||[HorizonOS](https://github.com/openlight-team/HorizonOS)| 8 | |[ComSpec](https://en.wikipedia.org/wiki/ComSpec)||| 9 | |[Ipconfig](https://en.wikipedia.org/wiki/Ipconfig)||[Simple IP Config](https://github.com/KurtisLiggett/Simple-IP-Config#readme)| 10 | |[Net](https://en.wikipedia.org/wiki/Net_(command)) / [Net Send](https://en.wikipedia.org/wiki/Net_Send)||| 11 | |Netdom.exe: Windows Domain Manager||| 12 | |[Netsh](https://en.wikipedia.org/wiki/Netsh)||| 13 | |[Netstat](https://en.wikipedia.org/wiki/Netstat)||| 14 | |[QBasic](https://en.wikipedia.org/wiki/QBasic)||| 15 | |[Regsvr32](https://en.wikipedia.org/wiki/Regsvr32)||| 16 | |[Robocopy](https://en.wikipedia.org/wiki/Robocopy)||| 17 | |[Win32 console](https://en.wikipedia.org/wiki/Win32_console)||| 18 | |[Windows Script Host](https://en.wikipedia.org/wiki/Windows_Script_Host)||| 19 | |[Windows PowerShell](https://en.wikipedia.org/wiki/Windows_PowerShell)||| 20 | |[XCOPY](https://en.wikipedia.org/wiki/XCOPY)||| 21 | --------------------------------------------------------------------------------