├── TODO ├── CHANGELOG ├── README.md ├── LICENSE └── WindowsConfig.ps1 /TODO: -------------------------------------------------------------------------------- 1 | #TODO 2 | # New features to be added 3 | 4 | Remove section where it sets Windows update to auto download and installed [X] 5 | 6 | Remove Windows update install / dism section (may add later) [X] 7 | 8 | remove pre-installed apps (links to get-appxprovisionedpackage) [X] 9 | 10 | in addition to get-appxpackage | remove-appxpackage, 11 | add: get-appxprovisionedpackage -online | where-object {$_.packagename -like "*packageName*"} | Remove-appxprovisionedpackage -online [X] -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | # File contains all changes from one release to the other 3 | 4 | Added inital Licensing and copyrights 5 | 6 | Removed section where Windows updates set to auto-install, Windows updates will now notify for Download and install 7 | 8 | Removed section for Windows update, program will not install updates 9 | 10 | Removed Windows update and image management section 11 | 12 | Updated bloatware removal section, added code to remove new apps when new profile is created -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WindowsConfig 2 | PowerShell configuration script for post-install 3 | 4 | WindowsConfig is a powershell script for post-install configuration of a system running Windows 10 5 | Anniversary update or above, this script will, among other things: 6 | 7 | Modifiy the system's privicy settings to ensure maximum security and privicy, these include: 8 | disabling telemetry 9 | disabling Wi-Fi Sence 10 | Enabling the Windows SmartScreen filter 11 | Increase the UAC to it's highest level 12 | Disable the feedback and advertising ID 13 | Disable Cortana 14 | Disable and remove the auto-logger 15 | Disable the Windows consumer features 16 | 17 | Modify the system's security settings to ensure maximum system security, these include: 18 | Enabling the system firewall 19 | Configure Windows Defender (saves settings to: C:\WindowsDefenderSettings.txt) 20 | Disables Windows Automatic update restart 21 | Removes system bloatware and OneDrive (removes pre-installed apps also, in next release, will also remove apps 22 | created during new profile creation) 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /WindowsConfig.ps1: -------------------------------------------------------------------------------- 1 | ######################################################################################################################################################## 2 | # # 3 | # WindowsConfig.sp1 # 4 | # (c) 2017, Darius Anderson, All rights reserved # 5 | # This program is provided "as-is" and must be modified for your envrionment # 6 | # The orriginal designer cannon be held accontable for any issues that may arrise because of your failure to read the small print # 7 | # NOTE: This program containes highly optional choices, some choices may not be aplicable for your envrionment # 8 | # As such, it much be modified. # 9 | # # 10 | ######################################################################################################################################################### 11 | 12 | # Contains code from /u/Synex's Windows10Debloater script, specifically, the removal of the mixed reality portal, removal of the people icon, and the unnecessary scheduled tasks 13 | 14 | # Ask for elevated permission 15 | ## 16 | If (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]"Administrator")) { 17 | Start-Process powershell.exe "-noProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs 18 | Exit 19 | } 20 | 21 | ## 22 | # Privicy Settings 23 | ## 24 | 25 | Write-Host 26 | Write-Host "##" 27 | Write-Host "# Modifing Privicy Settings #" 28 | Write-Host "##" 29 | Write-Host 30 | 31 | # Disable Telemetry 32 | ## 33 | Write-Host "Disabling Telemetry" 34 | 35 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0 -ErrorAction SilentlyContinue 36 | If ((Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection")) { 37 | New-item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Force -ErrorAction SilentlyContinue | Out-Null 38 | } 39 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0 -Force -ErrorAction SilentlyContinue 40 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0 -ErrorAction SilentlyContinue 41 | 42 | # Disable Wi-Fi Sense 43 | ## 44 | Write-Host "Disabling WiFi Sense" 45 | 46 | If (!(Test-Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting")) { 47 | New-Item -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting" -Force -ErrorAction SilentlyContinue | Out-Null 48 | } 49 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting" -Name "Value" -Type DWord -Value 0 -ErrorAction SilentlyContinue 50 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\default\WiFi\AllowAutoConnectToWiFiSenseHotspots" -Name "Value" -Type DWord -Value 0 -ErrorAction SilentlyContinue 51 | 52 | # Enable Windows SmartScreen Filter 53 | ## 54 | Write-Host "Enabling Windows SmartScreen Filter" 55 | 56 | Set-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Explorer" -Name "SmartScreenEnabled" -Type String -Value "RequireAdmin" -ErrorAction SilentlyContinue 57 | 58 | # Raise UAC Level and admin approval mode 59 | ## 60 | Write-host "Rasing UAC Level and enabling admin approval mode" 61 | 62 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "ConcentPromptBehaviorAdmin" -Type DWord -Value 1 -ErrorAction SilentlyContinue 63 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "ConcentPromptBehaviorUser" -Type DWord -Value 1 -ErrorAction SilentlyContinue 64 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableInstallerDetection" -Type DWord -Value 1 -ErrorAction SilentlyContinue 65 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLUA" -Type DWord -Value 1 -ErrorAction SilentlyContinue 66 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableVirtulization" -Type DWord -Value 1 -ErrorAction SilentlyContinue 67 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "PromptOnSecureDesktop" -Type DWord -Value 1 -ErrorAction SilentlyContinue 68 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "ValidateAdminCodeSignatures" -Type DWord -Value 0 -ErrorAction SilentlyContinue 69 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableSecureUAIPaths" -Type DWord -Value 1 -ErrorAction SilentlyContinue 70 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "FilterAdministratorToken" -Type DWord -Value 1 -ErrorAction SilentlyContinue 71 | 72 | # Disable Bing Search in Start Menu 73 | ## 74 | Write-Host "Disabling Bing Search in Start Menu" 75 | 76 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -Type Dword -Value 0 -ErrorAction SilentlyContinue 77 | 78 | # Disable Start Menu Suggestions 79 | ## 80 | Write-Host "Disabling Start Menu Suggestions" 81 | 82 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SystemPaneSuggestionsEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 83 | 84 | # Disable Pre-Installed Apps 85 | ## 86 | Write-Host "Disabling and removing Pre-Installed/OEM apps" 87 | 88 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "ContentDeliveryAllowed" -Type DWord -Value 0 -ErrorAction SilentlyContinue 89 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "OemPreInstalledAppsEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 90 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "PreInstalledAppsEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 91 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "PreInstalledAppsEverEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 92 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SlientInstalledAppsEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 93 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContentEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 94 | Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SuggestedApps" -Force -ErrorAction SilentlyContinue 95 | 96 | # Allowing uninstall of mixed reality portal 97 | ## 98 | Write-Host "Allow uninstall of mixed reality portal" 99 | 100 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Holographic" -Name "FirstRunSucceeded" -Type DWord -Value 0 -ErrorAction SilentlyContinue 101 | 102 | # Remove people icon on taskbar 103 | ## 104 | Write-Host "Removing people icon on taskbar" 105 | 106 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People")) { 107 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" -Force -ErrorAction SilentlyContinue | Out-Null 108 | } 109 | New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" -Name "PeopleBand" -Type DWord -Value 0 -ErrorAction SilentlyContinue 110 | 111 | # Disable Location Tracking 112 | ## 113 | Write-Host "Disabling Location Tracking" 114 | 115 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}" -Name "SensorPermissionState" -Type DWord -Value 0 -ErrorAction SilentlyContinue 116 | Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\lfsvc\Service\Configuration" -Name "Status" -Type DWord -Value 0 -ErrorAction SilentlyContinue 117 | 118 | # Disable Feedback 119 | ## 120 | Write-Host "Disabling Feedback" 121 | 122 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules")) { 123 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules" -Force -ErrorAction SilentlyContinue | Out-Null 124 | } 125 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules" -Name "NumberOfSIUFInPeriod" -Type DWord -Value 0 -ErrorAction SilentlyContinue 126 | 127 | # Disable Advertising ID 128 | ## 129 | Write-Host "Disabling Advertising ID" 130 | 131 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo")) { 132 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -ErrorAction SilentlyContinue | Out-Null 133 | } 134 | Set-ItemProperty "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -Name "Enabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 135 | 136 | # Disable Cortana 137 | ## 138 | Write-Host "Disabling Cortana" 139 | 140 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Personalization\Settings")) { 141 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\Personalization\Settings" -Force -ErrorAction SilentlyContinue | Out-Null 142 | } 143 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Personalization\Settings" -Name "AcceptedPrivicyPolicy" -Type DWord -Value 0 -ErrorAction SilentlyContinue 144 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization")) { 145 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization" -Force -ErrorAction SilentlyContinue | Out-Null 146 | } 147 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization" -Name "RestrictImplicitTextCollection" -Type DWord -Value 1 -ErrorAction SilentlyContinue 148 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization" -Name "RestrictImplicitInkCollection" -Type DWord -Value 1 -ErrorAction SilentlyContinue 149 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore")) { 150 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore" -Force -ErrorAction SilentlyContinue | Out-Null 151 | } 152 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore" -Name "HarvestContacts" -Type DWord -Value 0 -ErrorAction SilentlyContinue 153 | If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search")) { 154 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Force -ErrorAction SilentlyContinue | Out-Null 155 | } 156 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "AllowCortana" -PropertyType DWord -Value 0 -Force -ErrorAction SilentlyContinue 157 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "AllowContanaAboveLock" -PropertyType DWord -Value 0 -Force -ErrorAction SilentlyContinue 158 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "AllowSearchToUseLocation" -PropertyType DWord -Value 0 -Force -ErrorAction SilentlyContinue 159 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "ConnectedSearchUseWeb" -PropertyType DWord -Value 0 -Force -ErrorAction SilentlyContinue 160 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name "DisableWebSearch" -PropertyType DWord -Value 0 -Force -ErrorAction SilentlyContinue 161 | 162 | # Restrict Windows Update to Internet Download only 163 | ## 164 | Write-Host "Restricting Windows Update to Internet Download only" 165 | 166 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" -Name "DODownloadMode" -Type DWord -Value 0 -ErrorAction SilentlyContinue 167 | If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization")) { 168 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization" -ErrorAction SilentlyContinue | Out-Null 169 | } 170 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization" -Name "SystemSettingsDownloadMode" -Type DWord -Value 0 -ErrorAction SilentlyContinue 171 | 172 | # Set Windows Update to Ask for permission to download and install updates 173 | ## 174 | Write-Host "Setting Windows Update to Notify" 175 | 176 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate")) { 177 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -ErrorAction SilentlyContinue | Out-Null 178 | } 179 | if (!(Test-Path -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU")) { 180 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -ErrorAction SilentlyContinue | Out-Null 181 | } 182 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "AUOptions" -PropertyType DWord -Value 2 -ErrorAction SilentlyContinue 183 | 184 | # Remove AutoLogger and restrict directory 185 | ## 186 | Write-Host "Removing AutoLogger and restrict directoy" 187 | 188 | $autoLoggerDir = "$env:PROGRAMDATA\Microsoft\Diagnosis\ETLLogs\AutoLogger" 189 | If (Test-Path "$autoLoggerDir\AutoLogger-Diagtrack-Listener.etl") { 190 | Remove-Item "$autoLoggerDir\AutoLogger-Diagtrack-Listener.etl" -ErrorAction SilentlyContinue 191 | } 192 | icacls $autoLoggerDir /deny SYSTEM:`(OI`)`(CI`)F -ErrorAction SilentlyContinue | Out-Null 193 | 194 | # Stop and disable Diagnostics Tracking 195 | ## 196 | Write-Host "Disabling Diagnostics Tracking" 197 | 198 | Stop-Service "DiagTrack" -ErrorAction SilentlyContinue 199 | Set-Service "DiagTrack" -StartupType Disabled -ErrorAction SilentlyContinue 200 | 201 | # Stop and disable WAP Push Service 202 | ## 203 | Write-Host "Disabling WAP Push Service" 204 | 205 | Stop-Service "dmwappushservice" -ErrorAction SilentlyContinue 206 | Set-Service "dmwappushservice" -StartupType Disabled -ErrorAction SilentlyContinue 207 | 208 | # Disable Microsoft Suggested Apps 209 | ## 210 | Write-Host "Disabling Microsoft Suggested Apps" 211 | 212 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SystemPaneSuggestionsEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 213 | 214 | # Disable Windows Consumer Features 215 | ## 216 | Write-Host "Disabling Windows Consumer Features" 217 | 218 | If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent")) { 219 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -ErrorAction SilentlyContinue | Out-Null 220 | } 221 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Name "DisableWindowsConsumerFeatures" -Value 1 -PropertyType DWord -Force -ErrorAction SilentlyContinue 222 | 223 | # Disable Windows Tips and Feedback 224 | ## 225 | Write-Host "Disabling Windows Tips and feedback" 226 | 227 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SoftLandingEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 228 | 229 | # Disable Windows Lockscreen Spotlight 230 | ## 231 | Write-host "Disabling Windows Lockscreen Spotlight" 232 | 233 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "RotatingLockScreenEnabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 234 | 235 | # Disable Windows GameDVR 236 | ## 237 | Write-host "Disabling Windows GameDVR" 238 | 239 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR")) { 240 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR" -ErrorAction SilentlyContinue | Out-Null 241 | } 242 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\GameDVR" -Name "AllowGameDVR" -Value 0 -PropertyType DWord -Force -ErrorAction SilentlyContinue 243 | Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_Enabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 244 | New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR" -Name "AppCaptureEnabled" -Value 0 -PropertyType DWord -Force -ErrorAction SilentlyContinue 245 | 246 | # Disable AutoPlay 247 | ## 248 | Write-Host "Disabling AutoPlay" 249 | 250 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoPlayHandlers" -Name "DisableAutoPlay" -Type DWord -Value 1 -ErrorAction SilentlyContinue 251 | 252 | # Disable AutoRun for all drives 253 | ## 254 | Write-Host "Disabling AutoRun for all drives" 255 | 256 | if (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer")) { 257 | New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -ErrorAction SilentlyContinue | Out-Null 258 | } 259 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoDriveTypeAutoRun" -Type DWord -Value 255 -ErrorAction SilentlyContinue 260 | 261 | # Disable Windows Feedback Experience 262 | ## 263 | 264 | Write-Host "Disabling Windows Feedback Experience" 265 | 266 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -Name "Enabled" -Type DWord -Value 0 -ErrorAction SilentlyContinue 267 | 268 | ## 269 | # Configure Windows Defender 270 | ## 271 | 272 | # Note: this section isn't nessary for execution and thus, is purely optional, however if you are using Defender in your envrionmennt 273 | # this section will configure it - the same as can be done in group policy 274 | 275 | # Enable Block at first sight 276 | Write-Host "Enabling Block at first sight" 277 | 278 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection")) { 279 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" | Out-Null 280 | } 281 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet")) { 282 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" | Out-Null 283 | } 284 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableIOAVProtection" -Value 0 -PropertyType DWord -Force 285 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableRealtimeMonitoring" -Value 0 -PropertyType DWord -Force 286 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "DisableBlockAtFirstSeen" -Value 0 -PropertyType DWord -Force 287 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "SpynetReporting" -Value 2 -PropertyType DWord -Force 288 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" -Name "SubmitSamplesConsent" -Value 3 -PropertyType DWord -Force 289 | 290 | # Enable Behavior Monitoring 291 | Write-Host "Enabling Behavior Monitoring" 292 | 293 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection")) { 294 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" | Out-Null 295 | } 296 | New-ItemProperty -path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableBehaviorMonitoring" -Value 0 -PropertyType DWord -Force 297 | 298 | # Enable On-Access Protection 299 | Write-Host "Enabling On-Access Protection" 300 | 301 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection")) { 302 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" | Out-Null 303 | } 304 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableOnAccessProtection" -Value 0 -PropertyType DWord -Force 305 | 306 | # Enable Process Scanning 307 | Write-Host "Enabling Process Scanning" 308 | 309 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection")) { 310 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" | Out-Null 311 | } 312 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableScanOnRealtimeEnable" -Value 0 -PropertyType DWord -Force 313 | 314 | # Enable bi-direction file scaninng 315 | Write-Host "Enable bi-directional file scanning" 316 | 317 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection")) { 318 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" | Out-Null 319 | } 320 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "RealTimeScanDirection" -Value 0 -PropertyType DWord -Force 321 | 322 | # Enable Network Protection 323 | Write-Host "Enable Network Protection" 324 | 325 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection")) { 326 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" | Out-Null 327 | } 328 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -name "DisableIntrusionPreventionSystem" -Value 0 -PropertyType DWord -Force 329 | 330 | # Disable Watson Events 331 | Write-Host "Disable Watson Events" 332 | 333 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Reporting")) { 334 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Reporting" | Out-Null 335 | } 336 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Reporting" -Name "DisableGenericReports" -Value 1 -PropertyType DWord -Force 337 | 338 | # Enable Check for updates before scan 339 | Write-Host "Enable check for updates before scan" 340 | 341 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 342 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 343 | } 344 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "CheckForSignaturesBeforeRunningScan" -Value 1 -PropertyType DWord -Force 345 | 346 | # Enable Scan Archive files 347 | Write-Host "Enable Scan Archive files" 348 | 349 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 350 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 351 | } 352 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "DisableArchiveScanning" -Value 0 -PropertyType DWord -Force 353 | 354 | # Enable email scan 355 | Write-Host "Enable Email Scan" 356 | 357 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 358 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 359 | } 360 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "DisableEmailScanning" -Value 0 -PropertyType DWord -Force 361 | 362 | # Enable Heuristics 363 | Write-Host "Enable Heuristics" 364 | 365 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 366 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 367 | } 368 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "DissbleHeuristics" -Value 0 -PropertyType DWord -Force 369 | 370 | # Enable Packed executable scanning 371 | Write-Host "Enable packed executable scanning" 372 | 373 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 374 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 375 | } 376 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "DisablePackedExeScanning" -Value 0 -PropertyType DWord -Force 377 | 378 | # Enable Removable Drive Scanning 379 | Write-Host "Enable Removable Drive Scanning" 380 | 381 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 382 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 383 | } 384 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "DisableRemovableDriveScanning" -Value 0 -PropertyType DWord -Force 385 | 386 | # Enable Reparse Point Scanning 387 | Write-Host "Enable Reparse Point Scanning" 388 | 389 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 390 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 391 | } 392 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "DisableReparsePointScanning" -Value 0 -PropertyType DWord -Force 393 | 394 | # Setting default scan to quick 395 | Write-Host "Set default scan to quick" 396 | 397 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan")) { 398 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" | Out-Null 399 | } 400 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Scan" -Name "ScanParameters" -Value 0 -PropertyType DWord -Force 401 | 402 | # Setting update fallback order 403 | Write-Host "Setting update fallback order" 404 | 405 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates")) { 406 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates" | Out-Null 407 | } 408 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates" -Name "FallbackOrder" -Value "MMPC|MicrosoftUpdateServer" -PropertyType String -Force 409 | 410 | # Enable Real-item Definiton Updates 411 | Write-Host "Enabling real-time definiton updates" 412 | 413 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates")) { 414 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates" | Out-Null 415 | } 416 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates" -Name "RealTimeSigatureDelivery" -Value 1 -PropertyType DWord -Force 417 | 418 | # Setting update interval to every hour 419 | Write-Host "setting update interval to every hour" 420 | 421 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates")) { 422 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates" | Out-Null 423 | } 424 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates" -Name "SignatureUpdateInterval" -Value 1 -PropertyType DWord -Force 425 | 426 | # Setting antimalware service to normal priority startup 427 | Write-Host "Setting antimalware service to normal priority startup" 428 | 429 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "AllowFastServiceStartup" -Value 1 -PropertyType DWord -Force 430 | 431 | # Allow service to remain running always 432 | Write-Host "Allow service to remain running" 433 | 434 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "ServiceKeepAlive" -Value 1 -PropertyType DWord -Force 435 | 436 | # Enable Antivirus and antispyware 437 | Write-Host "Enable AntiVirus and AntiSpyware" 438 | 439 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "DisableAntiSpyware" -Value 0 -PropertyType DWord -Force 440 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "DisableAntiVirus" -Value 0 -PropertyType DWord -Force 441 | 442 | # Enable PUA detection 443 | Write-Host "Enable PUA Detection" 444 | 445 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine")) { 446 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" | Out-Null 447 | } 448 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" -Name "MpEnablePUS" -Value 1 -PropertyType DWord -Force 449 | 450 | # Enable Exploit Guard Network Protection 451 | Write-Host "Enable exploit guard network protection" 452 | 453 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard")) { 454 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard" | Out-Null 455 | } 456 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\Network Protection")) { 457 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\Network Protection" | Out-Null 458 | } 459 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Windows Defender Exploit Guard\Network Protection" -Name "EnableNetworkProtection" -Value 1 -PropertyType DWord -Force 460 | 461 | # Enable Controlled Folder Access 462 | Write-Host "Enable Controlled Folder Access" 463 | 464 | Set-MpPreference -EnableControlledFolderAccess Enabled 465 | 466 | # Enable Early Launch AntiMalware 467 | Write-Host "Enable early launch antimalware" 468 | 469 | if (!(Test-Path "HKLM:\SYSTEM\CurrentControlSet\Policies\EarlyLaunch")) { 470 | New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Policies\EarlyLaunch" | Out-Null 471 | } 472 | New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Policies\EarlyLaunch" -Name "DriverLoadPolicy" -Value 1 -PropertyType DWord -Force 473 | 474 | # Set Threat action to quarantine 475 | Write-Host "Set Threat action to quarantine" 476 | 477 | Set-MpPreference -HighThreatDefaultAction Quarantine 478 | Set-MpPreference -LowThreatDefaultAction Quarantine 479 | Set-MpPreference -ModerateThreatDefaultAction Quarantine 480 | Set-MpPreference -UnknownThreatDefaultAction Quarantine 481 | 482 | # Enable Extended cloud check 483 | Write-Host "Enable Extended Cloud Check" 484 | 485 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine")) { 486 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" | Out-Null 487 | } 488 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" -Name "MpBafsExtendedTimeout" -Value 50 -PropertyType DWord -Force 489 | 490 | # Set Defender Cloud Protection Level 491 | # Note: This may detect legitimate files, however, you have the options to unblock or dispute this action 492 | 493 | Write-Host "Setting Cloud Protection Level" 494 | 495 | if (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine")) { 496 | New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" | Out-Null 497 | } 498 | New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine" -Name "MpCloudBlockLevel" -Value 4 -PropertyType DWord -Force 499 | 500 | # Enable Defender ASR Rules 501 | 502 | Write-Host "Enable Defender ASR Rules" 503 | 504 | Set-MpPreference -AttackSurfaceReductionRules_Ids BE9BA2D9-53EA-4CDC-84E5-9B1EEEE46550 -AttackSurfaceReductionRules_Actions Enabled 505 | Set-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions Enabled 506 | Set-MpPreference -AttackSurfaceReductionRules_Ids 3B576869-A4EC-4529-8536-B80A7769E899 -AttackSurfaceReductionRules_Actions Enabled 507 | Set-MpPreference -AttackSurfaceReductionRules_Ids 75668C1F-73B5-4CF0-BB93-3ECF5CB7CC84 -AttackSurfaceReductionRules_Actions Enabled 508 | Set-MpPreference -AttackSurfaceReductionRules_Ids D3E037E1-3EB8-44C8-A917-57927947596D -AttackSurfaceReductionRules_Actions Enabled 509 | Set-MpPreference -AttackSurfaceReductionRules_Ids 5BEB7EFE-FD9A-4556-801D-275E5FFC04CC -AttackSurfaceReductionRules_Actions Enabled 510 | Set-MpPreference -AttackSurfaceReductionRules_Ids 92E97FA1-2EDF-4476-BDD6-9DD0B4DDDC7B -AttackSurfaceReductionRules_Actions Enabled 511 | 512 | ## 513 | # Service Tasks 514 | ## 515 | 516 | Write-Host 517 | Write-Host "##" 518 | Write-Host "# Modifing Service Tasks #" 519 | Write-Host "##" 520 | Write-Host 521 | 522 | # Enable Firewall 523 | ## 524 | Write-Host "Enabling Windows Firewall" 525 | 526 | Set-NetFirewallProfile -Profile * -Enabled True -ErrorAction SilentlyContinue 527 | 528 | # Disable Windows Update Automatic restart 529 | ## 530 | Write-Host "Disabling Window Update Automatic restart" 531 | 532 | Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "UxOption" -Type DWord -Value 1 -ErrorAction SilentlyContinue 533 | 534 | # Stop and disable Home Group services 535 | ## 536 | Write-Host "Disabling Home Group services" 537 | 538 | Stop-Service "HomeGroupListener" -ErrorAction SilentlyContinue 539 | Set-Service "HomeGroupListener" -StartupType Disabled -ErrorAction SilentlyContinue 540 | Stop-Service "HomeGroupProvider" -ErrorAction SilentlyContinue 541 | Set-Service "HomeGroupProvider" -StartupType Disabled -ErrorAction SilentlyContinue 542 | 543 | # Disable Lock Screen (Anniversary Update workaround) 544 | ## 545 | Write-Host "Disabling Lock Screen (Anniversary Update workaround)" 546 | 547 | If ([System.Environment]::OSVersion.Build -gt 14392) { 548 | $service = New-Object -com Schedule.Service 549 | $service.Connect() 550 | $task = $service.NewTask(0) 551 | $task.Settings.DisallowStartIfOnBatteries = $False 552 | $trigger = $task.Triggers.Create(9) 553 | $trigger = $task.Triggers.Create(11) 554 | $trigger.StateChange = 8 555 | $action = $task.Actions.Create(0) 556 | $action.Path = "reg.exe" 557 | $action.Arguments = "add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\SessionData /t REG_DWORD /v AllowLockScreen /d 0 /f" 558 | $service.GetFolder("\").RegisterTaskDevinition("Disable LockScreen", $task, 6, "NT AUTHORITY\SYSTEM", $null, 4) | Out-Null 559 | } 560 | 561 | # Removing unnecessary scheduled tasks 562 | ## 563 | 564 | Write-Host "Removing unnecessary scheduled tasks" 565 | 566 | Get-ScheduledTask -TaskName XblGameSaveTaskLogon -ErrorAction SilentlyContinue | Disable-ScheduledTask 567 | Get-ScheduledTask -TaskName XblGameSaveTask -ErrorAction SilentlyContinue | Disable-ScheduledTask 568 | Get-ScheduledTask -TaskName Consolidator -ErrorAction SilentlyContinue | Disable-ScheduledTask 569 | Get-ScheduledTask -TaskName UsbCeip -ErrorAction SilentlyContinue | Disable-ScheduledTask 570 | Get-ScheduledTask -TaskName DmClient -ErrorAction SilentlyContinue | Disable-ScheduledTask 571 | Get-ScheduledTask -TaskName DmClientOnScenarioDownload -ErrorAction SilentlyContinue | Disable-ScheduledTask 572 | 573 | # Removing unnecessary registry keys 574 | ## 575 | 576 | Write-Host "Removing unnecessary registry keys" 577 | 578 | #Background Tasks 579 | Remove-Item "HKCR:\Extensions\ContractId\Windows.BackgroundTasks\PackageId\46928bounde.EclipseManager_2.2.4.51_neutral__a5h4egax66k6y" -Recurse -ErrorAction SilentlyContinue 580 | Remove-Item "HKCR:\Extensions\ContractId\Windows.BackgroundTasks\PackageId\ActiproSoftwareLLC.562882FEEB491_2.6.18.18_neutral__24pqs290vpjk0" -Recurse -ErrorAction SilentlyContinue 581 | Remove-Item "HKCR:\Extensions\ContractId\Windows.BackgroundTasks\PackageId\Microsoft.MicrosoftOfficeHub_17.7909.7600.0_x64__8wekyb3d8bbwe" -Recurse -ErrorAction SilentlyContinue 582 | Remove-Item "HKCR:\Extensions\ContractId\Windows.BackgroundTasks\PackageId\Microsoft.PPIProjection_10.0.15063.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 583 | Remove-Item "HKCR:\Extensions\ContractId\Windows.BackgroundTasks\PackageId\Microsoft.XboxGameCallableUI_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 584 | Remove-Item "HKCR:\Extensions\ContractId\Windows.BackgroundTasks\PackageId\Microsoft.XboxGameCallableUI_1000.16299.15.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 585 | 586 | #Windows File 587 | Remove-Item "HKCR:\Extensions\ContractId\Windows.File\PackageId\ActiproSoftwareLLC.562882FEEB491_2.6.18.18_neutral__24pqs290vpjk0" -Recurse -ErrorAction SilentlyContinue 588 | 589 | #Keys to delete if not deleted by RemoveAppXPackage/RemoveAppXProvisionedPackage 590 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Launch\PackageId\46928bounde.EclipseManager_2.2.4.51_neutral__a5h4egax66k6y" -Recurse -ErrorAction SilentlyContinue 591 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Launch\PackageId\ActiproSoftwareLLC.562882FEEB491_2.6.18.18_neutral__24pqs290vpjk0" -Recurse -ErrorAction SilentlyContinue 592 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Launch\PackageId\Microsoft.PPIProjection_10.0.15063.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 593 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Launch\PackageId\Microsoft.PPIProjection_10.0.15063.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 594 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Launch\PackageId\Microsoft.XboxGameCallableUI_1000.16299.15.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 595 | 596 | #Sheduled Task 597 | Remove-Item "HKCR:\Extensions\ContractId\Windows.PreInstalledConfigTask\PackageId\Microsoft.MicrosoftOfficeHub_17.7909.7600.0_x64__8wekyb3d8bbwe" -Recurse -ErrorAction SilentlyContinue 598 | 599 | #Windows Protocols 600 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Protocol\PackageId\ActiproSoftwareLLC.562882FEEB491_2.6.18.18_neutral__24pqs290vpjk0" -Recurse -ErrorAction SilentlyContinue 601 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Protocol\PackageId\Microsoft.PPIProjection_10.0.15063.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 602 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Protocol\PackageId\Microsoft.XboxGameCallableUI_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 603 | Remove-Item "HKCR:\Extensions\ContractId\Windows.Protocol\PackageId\Microsoft.XboxGameCallableUI_1000.16299.15.0_neutral_neutral_cw5n1h2txyewy" -Recurse -ErrorAction SilentlyContinue 604 | 605 | #Windows Share Targets 606 | Remove-Item "HKCR:\Extensions\ContractId\Windows.ShareTarget\PackageId\ActiproSoftwareLLC.562882FEEB491_2.6.18.18_neutral__24pqs290vpjk0" -Recurse -ErrorAction SilentlyContinue 607 | 608 | ## 609 | # Remove Unwanted/unnecessary Windows Optional Features 610 | ## 611 | 612 | # NOTE: Some services/Optional feaures thus listed may not be unwanted, but for this envrionment, they can be, at best problematic 613 | # Example: optional feature 'print to PDF', may cause Windows Update to download printer drivers from 2006 614 | # for me, this causes problems when running the ZTIWindowsUpdate.wsf script - as this script will keep attempting to download updates and reboot 615 | # the presence of this service (and others) may cause an infinite install/reboot loop 616 | 617 | DISM /online /disable-feature /featurename:Microsoft-Windows-Printing-PrintToPDFServices-Package /norestart 618 | DISM /online /disable-feature /featurename:Microsoft-Windows-Printing-XPSServices-Package /norestart 619 | DISM /online /disable-feature /featurename:Xps-Foundation-Xps-Viewer /norestart 620 | 621 | # List not complete, will add more if required 622 | 623 | ## 624 | # Remove Unwanted Applications 625 | ## 626 | 627 | Write-Host 628 | Write-Host "##" 629 | Write-Host "# Removing Unwanted Applications #" 630 | Write-Host "##" 631 | Write-Host 632 | 633 | # Remove OneDrive 634 | ## 635 | Write-Host "Removing OneDrive" 636 | 637 | taskkill /f /im OneDrive.exe 638 | Stop-Process -Name OneDrive -ErrorAction SilentlyContinue 639 | Start-Sleep -s 3 640 | $oneDrive = "$env:SYSTEMROOT\SysWOW64\OneDriveSetup.exe" 641 | If (!(Test-Path $oneDrive)) { 642 | $oneDrive = "$env:SYSTEMROOT\System32\OneDriveSetup.exe" 643 | } 644 | Start-Process $oneDrive "/uninstall" -NoNewWindow -Wait -ErrorAction SilentlyContinue 645 | Start-Sleep -s 3 646 | Stop-Process -Name Explorer -ErrorAction SilentlyContinue 647 | Start-Sleep -s 3 648 | Remove-Item "$env:USERPROFILE\OneDrive" -Force -Recurse -ErrorAction SilentlyContinue 649 | Remove-Item "$env:LOCAPAPPDATA\Microsoft\OneDrive" -Force -Recurse -ErrorAction SilentlyContinue 650 | Remove-Item "$env:PROGRAMDATA\Microsoft\Microsoft Onedrive" -Force -Recurse -ErrorAction SilentlyContinue 651 | If (Test-Path "$env:SYSTEMDRIVE\OneDriveTemp") { 652 | Remove-item "$env:SYSTEMDRIVE\OneDriveTemp" -Force -Recurse -ErrorAction SilentlyContinue 653 | } 654 | If (!(Test-Path "HKCR:")) { 655 | New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT -ErrorAction SilentlyContinue | Out-Null 656 | } 657 | Remove-Item -Path "HKCR:\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" -Recurse -ErrorAction SilentlyContinue 658 | Remove-Item -Path "HKCR:\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" -Recurse -ErrorAction SilentlyContinue 659 | 660 | # Remove OneDrive ads being displayed in Explorer (Creators Update) 661 | ## 662 | Write-Host "Removing OneDrive ads being displayed in Explorer (Creators Update)" 663 | 664 | Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ -name ShowSyncProviderNotifications -Value 0 -ErrorAction SilentlyContinue 665 | 666 | # Remove Default bloatware 667 | ## 668 | Write-Host "Removing default bloatware" 669 | 670 | Get-AppxPackage -AllUsers | 671 | Where-Object {$_.name -notlike "*Microsoft.FreshPaint*"} | 672 | Where-Object {$_.Name -notlike "*Microsoft.WindowsCalculator*"} | 673 | Where-Object {$_.Name -notlike "*Microsoft.WindowsStore*"} | 674 | Where-Object {$_.Name -notlike "*Microsoft.Windows.Photos*"} | 675 | Remove-AppxPackage -ErrorAction SilentlyContinue 676 | 677 | Get-AppxProvisionedPackage -Online | 678 | Where-Object {$_.name -notlike "*Microsoft.FreshPaint*"} | 679 | Where-Object {$_.Name -notlike "*Microsoft.WindowsCalculator*"} | 680 | Where-Object {$_.Name -notlike "*Microsoft.WindowsStore*"} | 681 | Where-Object {$_.Name -notlike "*Microsoft.Windows.Photos*"} | 682 | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue 683 | 684 | # Remove New Microsoft Edge Button in IE 685 | ## 686 | Write-Host "Removing 'Open in Edge' button in IE" 687 | 688 | Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Internet Explorer\Main" -Name "HideNewEdgeButton" -Value 1 -Type DWord -Force -ErrorAction SilentlyContinue 689 | 690 | # Disable SMBv1 691 | ## 692 | Write-Host "Disabling SMBv1" 693 | 694 | Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol -NoRestart -ErrorAction SilentlyContinue 695 | 696 | ## 697 | # Windows End-of-script tasks 698 | ## 699 | 700 | Write-Host 701 | Write-Host "##" 702 | Write-Host "# End-of-script tasks #" 703 | Write-Host "##" 704 | Write-Host 705 | 706 | # Enable boot menu 707 | ## 708 | Write-Host "Enabling boot menu" 709 | 710 | bcdedit --% /set {bootmgr} displaybootmenu true 711 | bcdedit --% /set {bootmgr} timeout 7 712 | --------------------------------------------------------------------------------