How To Decrapify Windows 10
Windows 10 Decrapifier, 18XX/19XX/2XXX
!PLEASE READ THIS AND THE SCRIPT ITSELF Before RUNNING It!
This way, no surprises!
--------------------------------------------------------
Windows 10 Decrapifier for 18XX/19XX/2XXX
--------------------------------------------------------
A cleanup script for Windows 10 18XX/19XX/2XXX aiming to go a decluttered default experience on regular Pro or Enterprise installs. Also sets nigh privacy settings to "opt-in" by default.
Not recommended for 1709 and earlier - although it will work, some settings volition not. Version 2 is still available and works smashing on those older Windows builds.
Editable variables are most the top of the script. There are 2: one for the apps you want to keep, and custom XML for a beginning menu layout.
If run with no switches, the script disables some unnecessary services and scheduled tasks. Removes all UWP apps except for some useful ones and ones you specify. Disables Cortana, OneDrive, restricts default privacy settings and cleans up the default start menu (not the start menu of the account it is run from though). Creates a transcript at SYSTEMDRIVE\WindowsDCtranscript.txt.
Tested and works great in 1809 - 2004.
Switches:
-------------
-allapps: Removes ALL apps including the store. Make certain this is what you want before you do it. It tin exist tough to get the store back.
-leavetasks: Leaves scheduled tasks alone.
-leaveservices: Leaves services alone.
-appaccess: Leaves privacy/access options lonely - depending on your usage, some problems tin can exist prevented by leaving them with default (unrestricted) permissions. They are set to restricted by default in this script.
-clearstart: Empties the start bill of fare completely leaving you with just the apps list.
-onedrive: Leaves all OneDrive content fully functional.
-tablet: Use this for tablets or 2-in-1s to leave location and sensors enabled.
-cortana: Leave Cortana and web enabled search on.
-xbox: Leave xbox apps and related items.
-nolog: Prevents transcript from being created at SYSTEMDRIVE\WindowsDCtranscript.txt.
-appsonly: Only removes apps, doesn't bear upon privacy settings, services, and scheduled tasks. Cannot be used with -settingsonly switch. Can be used with all the others.
-settingsonly: Only adjusts privacy settings, services, and scheduled tasks. Leaves apps. Cannot be used with -appsonly switch. Tin be used with all others (-allapps won't do anything in that case).
If you lot take whatever questions or issues to report please come up to the user group! It is the best place to exercise so as I don't check the comments department hither that often.
Links:
--------
Decrapifier user group:
https://community.spiceworks.com/user-groups/windows-decrapifier-grouping
Single motorcar how-to:
https://community.spiceworks.com/how_to/148624-how-to-clean-up-a-unmarried-windows-10-machine-image-using-decrapifier
Common questions/issues:
https://community.spiceworks.com/topic/2149611-common-questions-and-problems?page=ane#entry-7850320
Onetime Links:
--------------
MDT how-to (old, no longer supporting this although information technology will work):
https://community.spiceworks.com/how_to/150455-shoehorn-decrapifier-into-your-mdt-job
Previous version of Decrapifier (for 1709 and before, also no longer supporting):
https://community.spiceworks.com/scripts/bear witness/3977-windows-10-decrapifier-version-2
Source Lawmaking
one
ii
3
4
5
vi
7
8
9
10
11
12
13
xiv
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
xxx
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
fifty
51
52
53
54
55
56
57
58
59
sixty
61
62
63
64
65
66
67
68
69
lxx
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
#Windows 10 Decrapifier 18XX/19XX/20XX #By CSAND #Jan half dozen 2022 # # #PURPOSE: Eliminate much of the bloat that comes with Windows 10. Change many privacy settings to be off by default. Remove congenital-in advertising, Cortana, OneDrive, Cortana stuff (all optional). Disable some data drove. # Clean up the start menu for new user accounts. Remove a bunch of pre-installed apps, or all of them (including the store). Create a more than professional looking W10 experience. Changes some settings no longer # available via GPO for Professional edition. All of this without breaking Windows. # #DISCLAIMER: Most of the changes are easily undone, but some like removing the store are hard to undo. You lot should use local/grouping policy to remove the shop if you want. # The -allapps switch is there merely I do not recommend well-nigh people use it. # I encourage yous to research these changes beforehand, and read through the script. # Each section is described with comments, to make information technology easier to encounter what's going on. # # #INSTRUCTIONS: For best results utilise the following how-tos. Running from an existing contour on an "in-apply" automobile won't affect any already-existing user profiles and won't give the best results. # Read through the script to come across what is disabled, and comment out annihilation you want to proceed. Past default a transcript is saved at SYSTEMDRIVE\WindowsDCtranscript.txt. # #Single machine how-to: #https://community.spiceworks.com/how_to/148624-how-to-make clean-up-a-single-windows-10-machine-image-using-decrapifier # #Basic MDT how-to: #https://community.spiceworks.com/how_to/150455-shoehorn-decrapifier-into-your-mdt-task # # #Join the Spiceworks Decrapifier customs group on Spiceworks! #https://community.spiceworks.com/user-groups/windows-decrapifier-group # #Common questions/issues: #https://community.spiceworks.com/topic/2149611-common-questions-and-problems?page=1#entry-7850320 # # #OFFICIAL DOWNLOAD: #https://community.spiceworks.com/scripts/show/4378-windows-10-decrapifier-1803 #This is the but place I mail any updates to this script. # #Changelog: #https://community.spiceworks.com/topic/2162951-changelog # #Previous versions: #https://customs.spiceworks.com/scripts/show/3977-windows-ten-decrapifier-1709 #https://community.spiceworks.com/scripts/show/3298-windows-10-decrapifier-version-ane # # # #***Switches*** # #Switch Function #--------------------------- #No switches Disables unnecessary services and scheduled tasks. Removes all UWP apps except for some useful ones. Disables Cortana, OneDrive, restricts default privacy settings and cleans up the default outset menu. #-AllApps Removes ALL apps including the store. Make sure this is what you want before you exercise information technology. It can be tough to get the store back. Seriously, don't practise this unless you are 100% certain. #-LeaveTasks Leaves scheduled tasks solitary. #-LeaveServices Leaves services solitary. #-AppAccess Past default this script volition restrict almost all the permissions in Settings -> Privacy. This will prevent that from happening. #-ClearStart Empties the start menu completely leaving you with just the apps list. #-OneDrive Leaves OneDrive and Onedrive for Business concern fully functional. #-Tablet Use this for tablets or 2-in-1s to leave location and sensors enabled. #-Cortana Leave Cortana and web enabled search intact... if that's what you really want. #-Xbox Leave xBox apps and related items. #-NoLog Don't copy transcript to systemdrive\WindowsDCtranscript.txt. #-AppsOnly Simply removes apps, doesn't affect privacy settings, services, and scheduled tasks. Cannot exist used with -SettingsOnly switch. Tin can exist used with all the others. #-SettingsOnly Just adjusts privacy settings, services, and scheduled tasks. Leaves apps. Cannot be used with -AppsOnly switch. Can be used with all others (-AllApps won't exercise anything in that example, patently). [cmdletbinding(DefaultParameterSetName="Decrapifier")] param ( [switch]$AllApps, [switch]$LeaveTasks, [switch]$LeaveServices, [switch]$AppAccess, [switch]$OneDrive, [switch]$Xbox, [switch]$Tablet, [switch]$Cortana, [switch]$ClearStart, [switch]$NoLog, [Parameter(ParameterSetName="AppsOnly")] [switch]$AppsOnly, [Parameter(ParameterSetName="SettingsOnly")] [switch]$SettingsOnly ) #------USER EDITABLE VARIABLES - change these to your tastes!------ #Apps to proceed. Wildcard is implied so try to exist specific enough to not overlap with apps yous practice want removed. #Make sure not brainstorm or stop with a "|". ex: "app|app2" - skilful. "|app|app2|" - bad. $GoodApps = "calculator|camera|viscid|shop|windows.photos|soundrecorder|mspaint|microsoft.paint|windowsnotepad|screensketch" #Start Menu XML. If you run the script without -ClearStart, the XML beneath will exist used for a custom commencement layout. By default it just leaves File Explorer, classic Control Panel, and Snipping Tool tiles. #Place your XML like so: # $StartLayourStr = @" # <**YOUR START LAYOUT XML**> # "@ $StartLayoutStr = @" <LayoutModificationTemplate Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"> <LayoutOptions StartTileGroupCellWidth="6" /> <DefaultLayoutOverride> <StartLayoutCollection> <defaultlayout:StartLayout GroupCellWidth="vi" xmlns:defaultlayout="http://schemas.microsoft.com/Starting time/2014/FullDefaultLayout"> <start:Group Name="" xmlns:start="http://schemas.microsoft.com/Starting time/2014/StartLayout"> <beginning:DesktopApplicationTile Size="2x2" Column="0" Row="0" DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Commencement Menu\Programs\System Tools\File Explorer.lnk" /> <beginning:DesktopApplicationTile Size="2x2" Cavalcade="2" Row="0" DesktopApplicationLinkPath="%ALLUSERSPROFILE%\Microsoft\Windows\Start Card\Programs\Accessories\Snipping Tool.lnk" /> <start:DesktopApplicationTile Size="2x2" Column="0" Row="2" DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Showtime Menu\Programs\Organization Tools\Control Panel.lnk" /> </starting time:Group> </defaultlayout:StartLayout> </StartLayoutCollection> </DefaultLayoutOverride> </LayoutModificationTemplate> "@ #------Cease editable variables------ #---Functions--- #Appx removal #Removes all apps or some apps depending on switches used. Function RemoveApps { #SafeApps contains apps that shouldn't be removed, or only can't and crusade errors $SafeApps = "AAD.brokerplugin|accountscontrol|apprep.chxapp|assignedaccess|asynctext|bioenrollment|capturepicker|cloudexperience|contentdelivery|desktopappinstaller|ecapp|edge|extension|getstarted|immersivecontrolpanel|lockapp|net.native|oobenet|parentalcontrols|PPIProjection|search|sechealth|secureas|shellexperience|startmenuexperience|last|vclibs|xaml|XGpuEject" If ($Xbox) { $SafeApps = "$SafeApps|Xbox" } If ($Allapps) { $RemoveApps = Get-AppxPackage -allusers | where-object {$_.name -notmatch $SafeApps} $RemovePrApps = Become-AppxProvisionedPackage -online | where-object {$_.displayname -notmatch $SafeApps} ForEach ($RemovedApp in $RemoveApps) { Write-Host Removing app package: $RemovedApp.proper noun Remove-AppxPackage -package $RemovedApp -erroraction silentlycontinue } ForEach ($RemovedPrApp in $RemovePrApps) { Write-Host Removing provisioned app $RemovedPrApp.displayname Remove-AppxProvisionedPackage -online -packagename $RemovedPrApp.packagename -erroraction silentlycontinue } } Else { $SafeApps = "$SafeApps|$GoodApps" $RemoveApps = Get-AppxPackage -allusers | where-object {$_.proper noun -notmatch $SafeApps} $RemovePrApps = Get-AppxProvisionedPackage -online | where-object {$_.displayname -notmatch $SafeApps} ForEach ($RemovedApp in $RemoveApps) { Write-Host Removing app package: $RemovedApp.name Remove-AppxPackage -parcel $RemovedApp -erroraction silentlycontinue } ForEach ($RemovedPrApp in $RemovePrApps) { Write-Host Removing provisioned app $RemovedPrApp.displayname Remove-AppxProvisionedPackage -online -packagename $RemovedPrApp.packagename -erroraction silentlycontinue } } } #End Function RemoveApps #Disable scheduled tasks #Tasks: Various CEIP and information gathering/sending tasks. Office DisableTasks { If ($LeaveTasks) { Write-Host "***Leavetasks switch fix - leaving scheduled tasks lonely...***" } Else { Write-Host "***Disabling some unecessary scheduled tasks...***" Get-Scheduledtask "Microsoft Compatibility Appraiser","ProgramDataUpdater","Consolidator","KernelCeipTask","UsbCeip","Microsoft-Windows-DiskDiagnosticDataCollector","GatherNetworkInfo","QueueReporting" -erroraction silentlycontinue | Disable-scheduledtask } } #Disable services Function DisableServices { If ($LeaveServices) { Write-Host "***Leaveservices switch set - leaving services alone...***" } Else { Write-Host "***Stopping and disabling some services...***" #Diagnostics tracking WMP Network Sharing Go-Service Diagtrack,WMPNetworkSvc -erroraction silentlycontinue | cease-service -passthru | set-service -startuptype disabled #WAP Push Bulletin Routing Notation Sysprep due west/ Generalize Will Neglect if you disable the DmwApPushService. Commented out by default. #Get-Service DmwApPushService -erroraction silentlycontinue | stop-service -passthru | set-service -startuptype disabled #Disable OneSync service - Used to sync various apps and settings if you enable that (contacts, etc). Commented out by default to not suspension functionality. #Go-Service OneSyncSvc | finish-service -passthru | set-service -startuptype disabled #xBox services If ($Xbox){ } Else { #Disable xBox services - "xBox Game Monitoring Service" - XBGM - Can't exist disabled (access denied) Get-Service XblAuthManager,XblGameSave,XboxNetApiSvc -erroraction silentlycontinue | stop-service -passthru | set-service -startuptype disabled } } } #Registry change functions #Load default user hive Function loaddefaulthive { $matjazp72 = (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' Default).Default reg load "$reglocation" $matjazp72\ntuser.dat } #Unload default user hive Function unloaddefaulthive { [gc]::collect() reg unload "$reglocation" } #Cycle registry locations - 1st pass HKCU, 2nd pass default NTUSER.dat Function RegChange { Write-Host "***Applying registry items to HKCU...***" $reglocation = "HKCU" regsetuser $reglocation = "HKLM\AllProfile" Write-Host "***Applying registry items to default NTUSER.DAT...***" loaddefaulthive; regsetuser; unloaddefaulthive $reglocation = $cipher Write-Host "***Applying registry items to HKLM...***" regsetmachine Write-Host "***Registry prepare current user and default user, and policies set for local automobile!***" } #Set electric current and default user registry settings Role RegSetUser { #Get-go menu suggestions Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SystemPaneSuggestionsEnabled" /D 0 /F #Show suggested content in settings Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SubscribedContent-338393Enabled" /D 0 /F Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SubscribedContent-353694Enabled" /D 0 /F #Show suggestions occasionally Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SubscribedContent-338388Enabled" /D 0 /F #Multitasking - Show suggestions in timeline Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SubscribedContent-353698Enabled" /D 0 /F #Lockscreen suggestions, rotating pictures Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SoftLandingEnabled" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /Five "RotatingLockScreenEnabled" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "RotatingLockScreenOverlayEnabled" /D 0 /F #Preinstalled apps, Minecraft Twitter etc all that - still need a clean default first menu to fully eliminate Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "PreInstalledAppsEnabled" /D 0 /F Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /Five "PreInstalledAppsEverEnabled" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "OEMPreInstalledAppsEnabled" /D 0 /F #MS shoehorning apps quietly into your contour Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /5 "SilentInstalledAppsEnabled" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /5 "ContentDeliveryAllowed" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /Five "SubscribedContentEnabled" /D 0 /F #Ads in File Explorer Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /T REG_DWORD /V "ShowSyncProviderNotifications" /D 0 /F #Prove me the Windows welcome feel after updates and occasionally Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SubscribedContent-310093Enabled" /D 0 /F #Go tips, tricks, suggestions as you use Windows Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /V "SubscribedContent-338389Enabled" /D 0 /F #Privacy Settings #Let websites provide local content by accessing language list - appears to reset during OOBE. #Reg Add together "$reglocation\Command Console\International\User Contour" /T REG_DWORD /V "HttpAcceptLanguageOptOut" /D 1 /F #Ask for feedback Reg Add "$reglocation\SOFTWARE\Microsoft\Siuf\Rules" /T REG_DWORD /Five "NumberOfSIUFInPeriod" /D 0 /F Reg Add together "$reglocation\SOFTWARE\Microsoft\Siuf\Rules" /T REG_DWORD /V "PeriodInNanoSeconds" /D 0 /F #Let apps utilize advertising ID Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /T REG_DWORD /5 "Enabled" /D 0 /F #Allow Windows track app launches to improve offset and search results - includes run history #Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /T REG_DWORD /V "Start_TrackProgs" /D 0 /F #Tailored experiences - Diagnostics & Feedback settings Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Privacy" /T REG_DWORD /V "TailoredExperiencesWithDiagnosticDataEnabled" /D 0 /F #Let apps on other devices open messages and apps on this device - Shared Experiences settings Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CDP" /T REG_DWORD /V "RomeSdkChannelUserAuthzPolicy" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CDP" /T REG_DWORD /V "CdpSessionUserAuthzPolicy" /D 0 /F #Speech Inking & Typing - comment out if you lot utilize the pen\stylus a lot Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\SettingSync\Groups\Linguistic communication" /T REG_DWORD /V "Enabled" /D 0 /F Reg Add together "$reglocation\SOFTWARE\Microsoft\InputPersonalization" /T REG_DWORD /V "RestrictImplicitTextCollection" /D 1 /F Reg Add "$reglocation\SOFTWARE\Microsoft\InputPersonalization" /T REG_DWORD /Five "RestrictImplicitInkCollection" /D 1 /F Reg Add "$reglocation\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore" /T REG_DWORD /Five "HarvestContacts" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Personalization\Settings" /T REG_DWORD /5 "AcceptedPrivacyPolicy" /D 0 /F #Improve inking & typing recognition Reg Add "$reglocation\SOFTWARE\Microsoft\Input\TIPC" /T REG_DWORD /V "Enabled" /D 0 /F #Pen & Windows Ink - Show recommended app suggestions Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\PenWorkspace" /T REG_DWORD /V "PenWorkspaceAppSuggestionsEnabled" /D 0 /F #People + Feeds #Bear witness My People notifications Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People\ShoulderTap" /T REG_DWORD /V "ShoulderTap" /D 0 /F #Bear witness My People app suggestions Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /T REG_DWORD /5 "SubscribedContent-314563Enabled" /D 0 /F #People on Taskbar Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" /T REG_DWORD /V "PeopleBand" /D 0 /F #News/Feeds taskbar item Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds" /T REG_DWORD /V "ShellFeedsTaskbarViewMode" /D two /F #Other Settings #Use Autoplay for all media and devices Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers" /T REG_DWORD /V "DisableAutoplay" /D 1 /F #Taskbar search, personal preference. 0 = no search, 1 = search icon, 2 = search bar Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /Five "SearchboxTaskbarMode" /D 0 /F #Allow search to apply location if it'due south enabled Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /Five "AllowSearchToUseLocation" /D 0 /F #Do not track - Edge Reg Add "$reglocation\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Master" /T REG_DWORD /V "DoNotTrack" /D i /F #Practice non rail - IE Reg Add "$reglocation\SOFTWARE\Microsoft\Internet Explorer\Main" /T REG_DWORD /5 "DoNotTrack" /D 1 /F #--Optional User Settings-- #App permissions user settings, these are all bachelor from the settings menu If ($AppAccess) { } Else{ #App permissions #Location - see tablet settings #Camera Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\webcam" /T REG_SZ /5 "Value" /D Deny /F #Microphone Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\microphone" /T REG_SZ /V "Value" /D Deny /F #Notifications - doesn't appear to work in 1803, setting hasn't been moved as of 1803 like nearly of the others #Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{52079E78-A92B-413F-B213-E8FE35712E72}" /T REG_SZ /V "Value" /D Deny /F #Account Info Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\userAccountInformation" /T REG_SZ /V "Value" /D Deny /F #Contacts Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\contacts" /T REG_SZ /V "Value" /D Deny /F #Agenda Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\appointments" /T REG_SZ /V "Value" /D Deny /F #Call history Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\phoneCallHistory" /T REG_SZ /5 "Value" /D Deny /F #Email Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\email" /T REG_SZ /V "Value" /D Deny /F #Tasks Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\userDataTasks" /T REG_SZ /5 "Value" /D Deny /F #TXT/MMS Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\chat" /T REG_SZ /5 "Value" /D Deny /F #Radios - doesn't appear to work in 1803, setting hasn't been moved as of 1803 like almost of the others #Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{A8804298-2D5F-42E3-9531-9C8C39EB29CE}" /T REG_SZ /V "Value" /D Deny /F #Other Devices - reset during OOBE #Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\LooselyCoupled" /T REG_SZ /V "Value" /D Deny /F #Cellular Data Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\cellularData" /T REG_SZ /Five "Value" /D Deny /F #Allow apps to run in background global setting - seems to reset during OOBE Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications" /T REG_DWORD /V "GlobalUserDisabled" /D i /F Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /V "BackgroundAppGlobalToggle" /D 0 /F #App Diagnostics - doesn't announced to piece of work in 1803, setting hasn't been moved as of 1803 like nearly of the others #Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{2297E4E2-5DBE-466D-A12B-0F8286F0D9CA}" /T REG_SZ /V "Value" /D Deny /F #My Documents Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\documentsLibrary" /T REG_SZ /V "Value" /D Deny /F #My Pictures Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\picturesLibrary" /T REG_SZ /Five "Value" /D Deny /F #My Videos Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\videosLibrary" /T REG_SZ /V "Value" /D Deny /F #File System Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\broadFileSystemAccess" /T REG_SZ /V "Value" /D Deny /F #Tablet Settings - use -Tablet switch to leave these on If ($Tablet) { } Else { #Deny access to location and sensors Reg Add "$reglocation\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Permissions\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}" /T REG_DWORD /V "SensorPermissionState" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}" /T REG_SZ /Five "Value" /D Deny /F Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{E6AD100E-5F4E-44CD-BE0F-2265D88D14F5}" /T REG_SZ /Five "Value" /D Deny /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" /T REG_SZ /Five "Value" /D Deny /F } } #Disable Cortana - utilize -Cortana to leave it on If ($Cortana){ } Else{ #Disable Cortana and Bing search user settings Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /V "CortanaEnabled" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /V "CanCortanaBeEnabled" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /V "DeviceHistoryEnabled" /D 0 /F Reg Add together "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /V "CortanaConsent" /D 0 /F Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /Five "CortanaInAmbientMode" /D 0 /F #Disable Bing search from kickoff menu/search bar Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /5 "BingSearchEnabled" /D 0 /F #Disable Cortana on lock screen Reg Add "$reglocation\SOFTWARE\Microsoft\Speech_OneCore\Preferences" /T REG_DWORD /V "VoiceActivationEnableAboveLockscreen" /D 0 /F #Disable Cortana search history Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /T REG_DWORD /5 "HistoryViewEnabled" /D 0 /F } #Game settings - use -Xbox to get out these on If ($Xbox) { } Else { #Disable Game DVR Reg Add "$reglocation\System\GameConfigStore" /T REG_DWORD /V "GameDVR_Enabled" /D 0 /F } #OneDrive settings - employ -OneDrive switch to leave these on If ($OneDrive) { } Else { #Disable OneDrive startup run user settings Reg Add "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /T REG_BINARY /Five "OneDrive" /D 0300000021B9DEB396D7D001 /F #Disable automatic OneDrive desktop setup for new accounts If ($reglocation -ne "HKCU") { Reg Delete "$reglocation\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /V "OneDriveSetup" /F } } #Cease user registry settings } #Set local motorcar settings and local group policies Function RegSetMachine { #--Local GP settings-- CONVERT THESE TO HKCU / DEFAULT / HKLM WHERE POSSIBLE #Can exist adjusted in GPedit.msc in Pro+ editions. #Local Policy\Estimator Config\Admin Templates\Windows Components #/Application Compatibility #Turn off Application Telemetry Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /T REG_DWORD /V "AITEnable" /D 0 /F #Turn off inventory collector Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /T REG_DWORD /5 "DisableInventory" /D 1 /F #/Deject Content #Turn off Consumer Experiences - Enterprise only (for Pro, HKCU settings and outset menu cleanup achieve aforementioned result) Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /T REG_DWORD /V "DisableWindowsConsumerFeatures" /D ane /F #Turn off all spotlight features #Reg Add together "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /T REG_DWORD /Five "DisableWindowsSpotlightFeatures" /D ane /F #/Information Drove and Preview Builds #Gear up Telemetry to off (switches to ane:basic for W10Pro and lower) Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /T REG_DWORD /V "AllowTelemetry" /D 0 /F #Disable pre-release features and settings #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\PreviewBuilds" /T REG_DWORD /V "EnableConfigFlighting" /D 0 /F #Do not bear witness feedback notifications Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /T REG_DWORD /V "DoNotShowFeedbackNotifications" /D 1 /F #/Store #Disable all apps from store, commented out by default equally it will break the store #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /T REG_DWORD /5 "DisableStoreApps" /D i /F #Turn off Shop, left disabled by default #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /T REG_DWORD /V "RemoveWindowsStore" /D 1 /F #/Sync your settings - commented out by default to keep functionality of sync service #Do not sync (anything) #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\SettingSync" /T REG_DWORD /5 "DisableSettingSync" /D 2 /F #Disallow users to override this #Reg Add together "HKLM\SOFTWARE\Policies\Microsoft\Windows\SettingSync" /T REG_DWORD /5 "DisableSettingSyncUserOverride" /D i /F #Add "Run as different user" to context menu Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /T REG_DWORD /Five "ShowRunasDifferentuserinStart" /D 1 /F #Disable "Run across Now" taskbar button Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /T REG_DWORD /V "HideSCAMeetNow" /D i /F #!!!None of these constructive anymore in 1803!!! Now handled by HKCU settings #Disallow web search from desktop search #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /T REG_DWORD /5 "DisableWebSearch" /D 1 /F #Don't search the web or display spider web results in search #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /T REG_DWORD /V "ConnectedSearchUseWeb" /D 0 /F #Don't allow search to utilise location #Reg Add together "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /T REG_DWORD /5 "AllowSearchToUseLocation" /D 0 /F #/Windows Update #Turn off featured SOFTWARE notifications through Windows Update Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /T REG_DWORD /5 "EnableFeaturedSoftware" /D 0 /F #--Non Local GP Settings-- #Commitment Optimization settings - sets to 1 for LAN only, change to 0 for off Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /T REG_DWORD /V "DownloadMode" /D 1 /F Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /T REG_DWORD /V "DODownloadMode" /D 1 /F Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Settings" /T REG_DWORD /V "DownloadMode" /D i /F #Disabling advertizement info and device metadata drove for this automobile Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /T REG_DWORD /V "Enabled" /D 0 /F Reg Add together "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /5 "PreventDeviceMetadataFromNetwork" /T REG_DWORD /D 1 /F #Disable CEIP. GP setting at: Estimator Config\Admin Templates\System\Internet Communication Managemen\Cyberspace Advice settings Reg Add "HKLM\SOFTWARE\Microsoft\SQMClient\Windows" /T REG_DWORD /V "CEIPEnable" /D 0 /F #Turn off automatic download/install of store app updates #Reg Add together "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\WindowsUpdate" /T REG_DWORD /V "AutoDownload" /D 2 /F #Prevent using sign-in info to automatically finish setting upward later an update Reg Add together "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /T REG_DWORD /V "ARSOUserConsent" /D 0 /F #Prevent apps on other devices from opening apps on this i - disables telephone pairing #Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\SmartGlass" /T REG_DWORD /V "UserAuthPolicy" /D 0 /F #Enable diagnostic data viewer Reg Add together "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack\EventTranscriptKey" /T REG_DWORD /Five "EnableEventTranscript" /D 1 /F #Disable Edge desktop shortcut Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /T REG_DWORD /V "DisableEdgeDesktopShortcutCreation" /D 1 /F #Filter web content through smartscreen. Left enabled by default. #Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost" /T REG_DWORD /V "EnableWebContentEvaluation" /D 0 /F #--Optional Machine Settings-- #Disable Cortana - utilise -Cortana to get out it on If ($Cortana){ } Else{ #Cortana local GP - Estimator Config\Admin Templates\Windows Components\Search #Disallow Cortana Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /T REG_DWORD /V "AllowCortana" /D 0 /F #Disallow Cortana on lock screen - seems pointless with higher up setting, may be deprecated, covered past HKCU anyways #Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /T REG_DWORD /V "AllowCortanaAboveLock" /D 0 /F } #Tablet Settings - use -Tablet switch to leave these on If ($Tablet) { } Else { #Plough off location - global Reg Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" /T REG_SZ /5 "Value" /D Deny /F } #Game settings - use -Xbox to leave these on If ($Xbox) { } Else { #Disable Game Monitoring Service Reg Add "HKLM\SYSTEM\CurrentControlSet\Services\xbgm" /T REG_DWORD /V "Start" /D 4 /F #GameDVR local GP - Figurer Config\Admin Templates\Windows Components\Windows Game Recording and Dissemination Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /T REG_DWORD /5 "AllowGameDVR" /D 0 /F } #OneDrive settings - use -OneDrive switch to go out these on If ($OneDrive) { } Else { #Forestall usage of OneDrive local GP - Computer Config\Admin Templates\Windows Components\OneDrive Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /T REG_DWORD /5 "DisableFileSyncNGSC" /D 1 /F Reg Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /T REG_DWORD /V "DisableFileSync" /D 1 /F #Remove OneDrive from File Explorer Reg Add "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /T REG_DWORD /Five "System.IsPinnedToNameSpaceTree" /D 0 /F Reg Add together "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /T REG_DWORD /V "Organisation.IsPinnedToNameSpaceTree" /D 0 /F } #End machine registry settings } #Clean up the default kickoff menu Office ClearStartMenu { If ($ClearStart) { Write-Host "***Setting empty start menu for new profiles...***" #Don't edit this. Creates empty start menu if -ClearStart is used. $StartLayoutStr = @" <LayoutModificationTemplate Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Beginning/2014/StartLayout" xmlns:taskbar="http://schemas.microsoft.com/Showtime/2014/TaskbarLayout"> <LayoutOptions StartTileGroupCellWidth="6" /> <DefaultLayoutOverride> <StartLayoutCollection> <defaultlayout:StartLayout GroupCellWidth="6" xmlns:defaultlayout="http://schemas.microsoft.com/Commencement/2014/FullDefaultLayout"> </defaultlayout:StartLayout> </StartLayoutCollection> </DefaultLayoutOverride> </LayoutModificationTemplate> "@ add-content $Env:TEMP\startlayout.xml $StartLayoutStr import-startlayout -layoutpath $Env:TEMP\startlayout.xml -mountpath $Env:SYSTEMDRIVE\ remove-detail $Env:TEMP\startlayout.xml } Else { Write-Host "***Setting clean start bill of fare for new profiles...***" #Custom start layout XML near the top of the script. add-content $Env:TEMP\startlayout.xml $StartLayoutStr import-startlayout -layoutpath $Env:TEMP\startlayout.xml -mountpath $Env:SYSTEMDRIVE\ remove-detail $Env:TEMP\startlayout.xml } } #Goodbye Message Function Function Farewell { Write-Host "*******Decrapification complete.*******" Write-Host "*******Retrieve to gear up your execution policy back! Prepare-Executionpolicy restricted is the Windows 10 default.*******" Write-Host "*******Reboot your computer at present!*******" } #---End of functions--- #Decrapify If ($NoLog) { }Else { Start-Transcript $ENV:SYSTEMDRIVE\WindowsDCtranscript.txt } Write-Host "******Decrapifying Windows 10...******" If ($AppsOnly) { RemoveApps ClearStartMenu Bye }Elseif ($SettingsOnly) { DisableTasks DisableServices RegChange ClearStartMenu Cheerio }Else { RemoveApps DisableTasks DisableServices RegChange ClearStartMenu Goodbye } If ($NoLog) { }Else { End-Transcript }
- Jul 16, 2018 at 19:41 UTC
- Jul 17, 2018 at 13:56 UTC
I want to remove the all apps only leave the store, calc, paint. So the -allapps isn't an choice. Does the appsonly include those 3 likewise? How would I exclude certain apps?
-
Awesome Job. I've been trying to do something similar this myself, you've saved me many hours of fourth dimension. Thanks
-
-allapps removes all apps. skipping -allapps leaves the following; $GoodApps = "camera|microphone|store|calculator|sticky|windows.photos|soundrecorder|mspaint" You can add to this listing, for instance, Camera and Microphone were added by me.
-
So I remember this may have broken my mic input, but I really don't know how. If anyone has a like issue I would dearest a push in the right direction. It sees my audio device, however it no longer shows any signs of a signal, neither in the standard windows audio device menus, or discord, which is primarily where I utilise my mic. I used an audio exam website that somehow was able to see the audio just fine, which I thought was foreign. Yes, I've uninstalled and reinstalled drivers for my sound interface, disabled devices etc. etc. Basically anything I could mess around with in settings I did to no avail. Last ditch effort to post here just incase at that place was some sort of functionality that this could take removed that I was not aware of.
- Jul 18, 2018 at 03:fifty UTC
Should be able to just go start->settings->privacy and plough on permissions for the mic. The script makes them off by default. The - appaccess switch volition bypass this behaviour. Remember people read the script through before you run it folks, information technology's all commented and might save y'all some surprises :)
- Jul 18, 2018 at sixteen:25 UTC
Thanks for the GRAET script! what happened to the -allusers switch? how do i run information technology for all users?
- Jul eighteen, 2018 at 16:42 UTC
Allusers is unsaid now all the fourth dimension, then no need for the switch :)
-
Thank you lot m8 for your excellent up-to-engagement script. Awesome Chore! There is only one problem. The scripts seems to be not working with Windows ten Pro from the latest MSDN ISO: en_windows_10_consumer_edition_version_1803_updated_jul_2018_x64_dvd The script volition complete but with the error below. Consequence not all the APPS are removed. I can't meet whether it besides applies to settings. Running the script twice will result in the same mistake but it seems that all the APPS are removed. Simulation: Download en_windows_10_consumer_edition_version_1803_updated_jul_2018_x64_dvd Running fine on en_windows_10_consumer_editions_version_1803_updated_march_2018_x64_dvd. Same script, same settings: "Run with no switches". Error: ***Removing many apps and provisioned appx packages for this car...*** Remove-AppxProvisionedPackage : Unspecified error At C:\image\test3.ps1:128 char:98 + ... goodapps} | Remove-AppxProvisionedPackage -online -erroraction silent ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Remove-AppxProvisionedPackage], COMException + FullyQualifiedErrorId : Microsoft.Dism.Commands.RemoveAppxProvisionedPackageCommand ***Disabling some unecessary scheduled tasks...***
-
Honey the script. I issue I am having is apps like Xbox Microsoft soltiare are remaining. Whatever estimate?
-
Is at that place a way with in this script to gear up IE11 as default for all users and pin it to the taskbar?
-
This script ROCKS!! Question about the showtime menu layout. I would like to add the post-obit that customized the task bar pin list. How can I contain the post-obit with your script? Thank you in advance! I really exercise appreciate what you practice! Tony
-
Testing.... . . You rock! ... Well washed... Great job . .
-
Nevermind... Poor copy and paste on my part lol. It was the link that was added at the bottom.
Source: https://community.spiceworks.com/scripts/show/4378-windows-10-decrapifier-18xx-19xx-2xxx
Posted by: bemisincentoll.blogspot.com
EXCELLENT! I've been waiting for this! Although I've made some edits to the Decrapifier V2, I tin can hands add together those in hither. And I love how you made the Start Card XML customization most the peak, manifestly and easily found and editable. I'll throw this script on a VM and exam it out. Thanks again for all your piece of work!