Browse Source

Update README.md

pull/121/head
Dmitry Nefedov 4 years ago
committed by GitHub
parent
commit
0f9bbee7e1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 91
      README.md

91
README.md

@ -18,18 +18,22 @@
* Due to the fact that the script includes about 150 functions, you must read the entire script and comment out those sections that you do not want to be executed otherwise likely you will enable features that you do not want to be enabled. * Due to the fact that the script includes about 150 functions, you must read the entire script and comment out those sections that you do not want to be executed otherwise likely you will enable features that you do not want to be enabled.
* Running the script is best done on a fresh install because running it on tweaked system may result in errors occurring. * Running the script is best done on a fresh install because running it on tweaked system may result in errors occurring.
* Some third-party antiviruses flag this script or its' part as malicious one. This is a false positive due to [$EncodedScript](https://github.com/farag2/Windows-10-Setup-Script/blob/298307bafee70b55ea00d9cba7a9e14ea6e4f5a4/Win%2010%202004.ps1#L2689) variable. You can read more about in "Create a Windows cleaning up task in the Task Scheduler" section. You might need to disable tamper protection from your antivirus settings, re-enable it after running the script, and reboot. * Some third-party antiviruses flag this script or its' part as malicious one. This is a false positive due to [$EncodedScript](https://github.com/farag2/Windows-10-Setup-Script/blob/298307bafee70b55ea00d9cba7a9e14ea6e4f5a4/Win%2010%202004.ps1#L2689) variable. You can read more about in "Create a task to clean up unused files and Windows updates in the Task Scheduler" section. You might need to disable tamper protection from your antivirus settings, re-enable it after running the script, and reboot.
## Screenshots ## Screenshots
<details>
<summary>Screenshots</summary>
![Image](https://i.imgur.com/OjWeooZ.png) ![Image](https://i.imgur.com/OjWeooZ.png)
![Image](https://i.imgur.com/BDOoE4B.png) ![Image](https://i.imgur.com/BDOoE4B.png)
![Image](https://i.imgur.com/stEsBkN.png) ![Image](https://i.imgur.com/stEsBkN.png)
</details>
## Videos ## Videos
<details> <details>
<summary>YouTube videos</summary> <summary>Videos</summary>
[![Image](http://img.youtube.com/vi/8MzuDLNH9QU/0.jpg)](http://www.youtube.com/watch?v=8MzuDLNH9QU) [![Image](http://img.youtube.com/vi/8MzuDLNH9QU/0.jpg)](http://www.youtube.com/watch?v=8MzuDLNH9QU)
[![Image](http://img.youtube.com/vi/cjyi9nX8sFA/0.jpg)](http://www.youtube.com/watch?v=cjyi9nX8sFA) [![Image](http://img.youtube.com/vi/cjyi9nX8sFA/0.jpg)](http://www.youtube.com/watch?v=cjyi9nX8sFA)
@ -37,51 +41,51 @@
## Core features ## Core features
- Set up Privacy & Telemetry; * Set up Privacy & Telemetry;
- Turn off diagnostics tracking scheduled tasks; * Turn off diagnostics tracking scheduled tasks;
- Set up UI & Personalization; * Set up UI & Personalization;
- Uninstall OneDrive "correctly"; * Uninstall OneDrive "correctly";
- Interactive prompts; * Interactive prompts;
- Change %TEMP% environment variable path to %SystemDrive%\Temp * Change %TEMP% environment variable path to %SystemDrive%\Temp
- Change location of the user folders programmatically (without moving user files) within interactive menu using up/down arrows and Enter key to make a selection * Change location of the user folders programmatically (without moving user files) within interactive menu using up/down arrows and Enter key to make a selection
- "Desktop"; * "Desktop";
- "Documents"; * "Documents";
- "Downloads"; * "Downloads";
- "Music"; * "Music";
- "Pictures" * "Pictures"
- "Videos. * "Videos.
- Uninstall UWP apps from all accounts with exception apps list with pop-up form written in [WPF](#Screenshots); * Uninstall UWP apps from all accounts with exception apps list with pop-up form written in [WPF](#Screenshots);
- Turn off Windows features; * Turn off Windows features;
- Remove Windows capabilities with pop-up form written in [WPF](#Screenshots); * Remove Windows capabilities with pop-up form written in [WPF](#Screenshots);
- Create a Windows cleaning up task in the Task Scheduler; * Create a Windows cleaning up task in the Task Scheduler;
- A toast notification will pop up a minute before the task [starts](#Screenshots) * A toast notification will pop up a minute before the task [starts](#Screenshots)
- Create tasks in the Task Scheduler to clear * Create tasks in the Task Scheduler to clear
- %SystemRoot%\SoftwareDistribution\Download * %SystemRoot%\SoftwareDistribution\Download
- %TEMP% * %TEMP%
- Unpin all Start menu tiles; * Unpin all Start menu tiles;
- Pin shortcuts to Start menu using [syspin.exe](http://www.technosys.net/products/utils/pintotaskbar) * Pin shortcuts to Start menu using [syspin.exe](http://www.technosys.net/products/utils/pintotaskbar)
- Three shortcuts are preconfigured to be pinned: Control Panel, "old style" Devices and Printers, and Command Prompt * Three shortcuts are preconfigured to be pinned: Control Panel, "old style" Devices and Printers, and Command Prompt
- Turn on Controlled folder access and add protected folders using dialog menu; * Turn on Controlled folder access and add protected folders using dialog menu;
- Add exclusion folder from Microsoft Defender Antivirus scanning using dialog menu; * Add exclusion folder from Microsoft Defender Antivirus scanning using dialog menu;
- Add exclusion file from Microsoft Defender Antivirus scanning using dialog menu; * Add exclusion file from Microsoft Defender Antivirus scanning using dialog menu;
- Refresh desktop icons, environment variables and taskbar without restarting File Explorer; * Refresh desktop icons, environment variables and taskbar without restarting File Explorer;
- Many more File Explorer and context menu "deep" tweaks. * Many more File Explorer and context menu "deep" tweaks.
## Usage ## Usage
To run the script: To run the script:
- Download [up-to-date version](https://github.com/farag2/Setup-Windows-10/releases); * Download [up-to-date version](https://github.com/farag2/Setup-Windows-10/releases);
- Expand the archive; * Expand the archive;
- Check whether .ps1 is encoded in **UTF-8 with BOM**; * Check whether .ps1 is encoded in **UTF-8 with BOM**;
- Set execution policy to be able to run scripts only in the current PowerShell session * Set execution policy to be able to run scripts only in the current PowerShell session
```powershell ```powershell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
``` ```
- Run .ps1 file via powershell.exe with elevated privileges; * Run .ps1 file via powershell.exe with elevated privileges;
- or launch Start.cmd as Administrator. * or launch Start.cmd as Administrator.
## Supported Windows 10 versions ## Supported Windows 10 versions
@ -101,13 +105,12 @@ https://gist.github.com/farag2/5a6d9952247aefe42ba81a9d95507765
## Microsoft Docs ## Microsoft Docs
- [Release information](https://docs.microsoft.com/en-us/windows/release-information) * [Release information](https://docs.microsoft.com/en-us/windows/release-information)
- [Known issues for 1909](https://docs.microsoft.com/en-us/windows/release-information/status-windows-10-1909) * [Known issues for 2004](https://docs.microsoft.com/ru-ru/windows/release-information/status-windows-10-2004)
- [Known issues for 2004](https://docs.microsoft.com/ru-ru/windows/release-information/status-windows-10-2004)
## Ask a question on ## Ask a question on
- [Ru-Board](http://forum.ru-board.com/topic.cgi?forum=62&topic=30617#15) * [Ru-Board](http://forum.ru-board.com/topic.cgi?forum=62&topic=30617#15)
- [4PDA](https://4pda.ru/forum/index.php?s=&showtopic=523489&view=findpost&p=95909388) * [4PDA](https://4pda.ru/forum/index.php?s=&showtopic=523489&view=findpost&p=95909388)
- [My Digital Life](https://forums.mydigitallife.net/threads/powershell-script-setup-windows-10.81675/) * [My Digital Life](https://forums.mydigitallife.net/threads/powershell-script-setup-windows-10.81675/)
- [Reddit](https://www.reddit.com/r/PowerShell/comments/go2n5v/powershell_script_setup_windows_10/) * [Reddit](https://www.reddit.com/r/PowerShell/comments/go2n5v/powershell_script_setup_windows_10/)

Loading…
Cancel
Save