├── LICENSE ├── README.md └── scripts ├── clear_pagefile_activeprobing.bat ├── decrease_shutdown_time.bat ├── disable_download_install_blocking.bat ├── disable_lock_screen.bat ├── disable_remove_cortana.bat ├── disable_smartscreen.bat ├── disable_smbv1.bat ├── disable_stop_services.bat ├── disable_storage_sense.bat ├── disable_timeline.bat ├── disable_tracking_services.bat ├── disable_users_logon_screen.bat ├── disable_windows_update.bat ├── enable_all_folders_in_explorer.bat ├── fix_explorer.bat ├── install_chocolately.bat ├── modify_hosts_file.bat ├── new-control-panel-cleanup.bat ├── registry_edits.bat ├── remove-mypc-icon-folders.bat ├── remove_appx_packages.bat ├── remove_metadata_tracking.bat ├── remove_paint3d_context-menu.bat ├── remove_tasks.bat ├── set_time_utc.bat └── uninstall_onedrive.bat /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/README.md -------------------------------------------------------------------------------- /scripts/clear_pagefile_activeprobing.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/clear_pagefile_activeprobing.bat -------------------------------------------------------------------------------- /scripts/decrease_shutdown_time.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/decrease_shutdown_time.bat -------------------------------------------------------------------------------- /scripts/disable_download_install_blocking.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/disable_lock_screen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_lock_screen.bat -------------------------------------------------------------------------------- /scripts/disable_remove_cortana.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_remove_cortana.bat -------------------------------------------------------------------------------- /scripts/disable_smartscreen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_smartscreen.bat -------------------------------------------------------------------------------- /scripts/disable_smbv1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_smbv1.bat -------------------------------------------------------------------------------- /scripts/disable_stop_services.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_stop_services.bat -------------------------------------------------------------------------------- /scripts/disable_storage_sense.bat: -------------------------------------------------------------------------------- 1 | reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\StorageSense" /f > NUL 2>&1 2 | -------------------------------------------------------------------------------- /scripts/disable_timeline.bat: -------------------------------------------------------------------------------- 1 | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableActivityFeed" /t REG_DWORD /d 0 /f > NUL 2>&1 2 | -------------------------------------------------------------------------------- /scripts/disable_tracking_services.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_tracking_services.bat -------------------------------------------------------------------------------- /scripts/disable_users_logon_screen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_users_logon_screen.bat -------------------------------------------------------------------------------- /scripts/disable_windows_update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/disable_windows_update.bat -------------------------------------------------------------------------------- /scripts/enable_all_folders_in_explorer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/enable_all_folders_in_explorer.bat -------------------------------------------------------------------------------- /scripts/fix_explorer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/fix_explorer.bat -------------------------------------------------------------------------------- /scripts/install_chocolately.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/install_chocolately.bat -------------------------------------------------------------------------------- /scripts/modify_hosts_file.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/modify_hosts_file.bat -------------------------------------------------------------------------------- /scripts/new-control-panel-cleanup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/new-control-panel-cleanup.bat -------------------------------------------------------------------------------- /scripts/registry_edits.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/registry_edits.bat -------------------------------------------------------------------------------- /scripts/remove-mypc-icon-folders.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/remove-mypc-icon-folders.bat -------------------------------------------------------------------------------- /scripts/remove_appx_packages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/remove_appx_packages.bat -------------------------------------------------------------------------------- /scripts/remove_metadata_tracking.bat: -------------------------------------------------------------------------------- 1 | reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /f > NUL 2>&1 2 | -------------------------------------------------------------------------------- /scripts/remove_paint3d_context-menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/remove_paint3d_context-menu.bat -------------------------------------------------------------------------------- /scripts/remove_tasks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/remove_tasks.bat -------------------------------------------------------------------------------- /scripts/set_time_utc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/set_time_utc.bat -------------------------------------------------------------------------------- /scripts/uninstall_onedrive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonderbread/ame-scripts/HEAD/scripts/uninstall_onedrive.bat --------------------------------------------------------------------------------