readme.txt
Win11ToWin10UI PowerShell Module
================================ Version: 1.0.2 Author: Arksoft Bilisim Company: Arksoft Bilisim License: MIT Project: https://github.com/direnconen/Win11ToWin10UI DESCRIPTION ----------- This PowerShell module modifies Windows 11’s UI to resemble Windows 10 by applying registry and policy changes. It includes backup and restore functionality for affected registry keys. Changes apply to the current user by default, with an option to apply to all profiles (existing and future). FEATURES -------- - Taskbar alignment to the left, small icons, ungrouped buttons with labels - Classic context menu (Windows 10 style) - File Explorer compact view and "This PC" as default start - Disable Widgets, Chat, Copilot - Adjust taskbar search style - Classic compact Alt+Tab view - Backup and restore all modified registry keys CMDLETS ------- 1. Set-Win10StyleUI - Applies Windows 10-style UI tweaks. - Parameters: -AllUsers : Apply to all existing profiles and set defaults for new users. 2. Restore-Win10StyleUI - Restores backed-up registry settings and removes applied policies. - Parameters: -AllUsers : Restore for all existing profiles. 3. Backup-Win10StyleUI - Creates .reg backup files for all registry keys that will be changed. EXAMPLES -------- # Apply Windows 10 style to current user Set-Win10StyleUI # Apply Windows 10 style to all users (existing and future) Set-Win10StyleUI -AllUsers # Restore settings for current user Restore-Win10StyleUI # Restore settings for all users Restore-Win10StyleUI -AllUsers # Backup registry keys only Backup-Win10StyleUI NOTES ----- - Run the module as Administrator. - Some changes require logoff/login or Explorer restart to take effect. - The module creates backups in %PUBLIC%\Win11ToWin10UI_Backups. CHANGELOG --------- 1.0.2 - Added readme.txt for PowerShell Gallery help documentation - Updated manifest FileList to include readme.txt 1.0.0 - Initial release with Set, Restore, and Backup cmdlets |