1. traingreg

    traingreg MDL Novice

    Feb 13, 2019
    2
    0
    0
    Thanks _ I'll take a look. Why would it default to another sku? Does the Toolkit treat each SKU separately?
     
  2. Supern00b

    Supern00b MDL Addicted

    Dec 30, 2010
    728
    540
    30
    Yes, it only processes one index.
    You would have to delete the other indexes that you don't wan't to use, as enthousiast said.
    Personally I would first remove the unwanted indexes, rebuild and after that run MSMG on the only index left.
    That way you can't go wrong.

    Cheers.
     
  3. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,209
    1,539
    90
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. ranheta

    ranheta MDL Novice

    Feb 1, 2018
    4
    0
    0
    #9685 ranheta, Feb 14, 2019
    Last edited: Feb 14, 2019
    Enthousiast

    Good morning I would like the command for 7 and 8.1 and 10 rs5 I will create all the systems if it is not to ask very clear



    Good morning, I apologize for my letter because su de Portugal and I use google translate
     
  5. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. PsychedelicShaman

    PsychedelicShaman MDL Member

    Dec 4, 2017
    134
    318
    10
    I've noticed that some people on MDL forum will keep defending anything from Microsoft in general - no matter if it's something horrible or actually good, some people are kinda like on the leash of a corporation and will praise anything the said corporation does, afraid to criticize their horrible practices such as putting ads and sponsored apps in the Start Menu, or they always argument against chopping Windows components or even tweaking services, scheduled tasks and registry, they argument that it's the best to run Windows 10 the way Microsoft has "intended" it - aka. using Microsoft account, full level telemetry and syncing. :D
    The truth is that some components are 100% safe to remove, so "chopping" is not always bad, for example Defender can be removed in a clean way without breaking file integrity and without causing any problems with Cumulative Updates in the future, and also if chopping becomes more popular among noobs then it's also good, because the market will force Microsoft to turn Windows 10 into more "modular" OS, so the kernel and criticial components could update without bringing back useless bloatware. :)
     
  7. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,220
    94,598
    450
    Some people perhaps don't blindly copy the hype? When people kept to the facts, this was a different discussion.

    I hammer my systems daily and when i encounter an error i report it, i don't chop, disable or modify core systems, and guess what, no problems ever.
     
  9. westyles

    westyles MDL Novice

    Apr 27, 2010
    15
    14
    0
    If you could share this archive with everyone, many would be grateful.
    Imagine if MSMG always showed screenshots of its utility,
    and did not share the utility itself =)
     
  10. lovs2build

    lovs2build MDL Novice

    Jul 31, 2012
    15
    5
    0
    YES! Indeed It would be great!
     
  11. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    752
    60
    Then people would still be blindly chopping, and hacking their Windows. o_O
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Krager

    Krager MDL Senior Member

    Jan 9, 2017
    396
    233
    10
    Are we doing show and tell?

    Here's what I run after install. Still a work in progress, need to add a few more settings and audit all the scheduled tasks.

    Code:
    tweaks.cmd
    
    @echo off
    echo. & echo Configuring system . . .
    echo.
    schtasks /query /tn "\Microsoft\Windows\LanguageComponentsInstaller\Installation" >nul 2>&1 && schtasks /delete /f /tn "\Microsoft\Windows\LanguageComponentsInstaller\Installation"
    schtasks /query /tn "\Microsoft\Windows\LanguageComponentsInstaller\ReconcileLanguageResources" >nul 2>&1 && schtasks /delete /f /tn "\Microsoft\Windows\LanguageComponentsInstaller\ReconcileLanguageResources"
    schtasks /query /tn "\Microsoft\Windows\LanguageComponentsInstaller\Uninstallation" >nul 2>&1 && schtasks /delete /f /tn "\Microsoft\Windows\LanguageComponentsInstaller\Uninstallation"
    powercfg -h off
    attrib +s +h +r c:\intel
    attrib +s +h +r c:\perflogs
    rmdir /s /q "c:\users\craig\3D Objects" >nul 2>&1
    rmdir /s /q "c:\users\craig\contacts" >nul 2>&1
    rmdir /s /q "c:\users\craig\downloads" >nul 2>&1
    rmdir /s /q "c:\users\craig\favorites" >nul 2>&1
    rmdir /s /q "c:\users\craig\links" >nul 2>&1
    rmdir /s /q "c:\users\craig\music" >nul 2>&1
    rmdir /s /q "c:\users\craig\pictures" >nul 2>&1
    rmdir /s /q "c:\users\craig\saved games" >nul 2>&1
    rmdir /s /q "c:\users\craig\searches" >nul 2>&1
    rmdir /s /q "c:\users\craig\videos" >nul 2>&1
    wevtutil set-log "Microsoft-Windows-DeviceSetupManager/Admin" /enabled:false
    wevtutil set-log "Microsoft-Windows-LiveId/Operational" /ca:O:BAG:SYD:(A;;0x1;;;SY)(A;;0x5;;;BA)(A;;0x1;;;LA)
    wevtutil set-log "Microsoft-Windows-LiveId/Analytic" /ca:O:BAG:SYD:(A;;0x1;;;SY)(A;;0x5;;;BA)(A;;0x1;;;LA)
    wevtutil set-log "Microsoft-Windows-USBVideo/Analytic" /enabled:false
    wevtutil set-log "Microsoft-Windows-User Device Registration/Admin" /enabled:false
    SetACL -on "HKCR\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}" -ot reg -actn setowner -ownr "n:Administrators" -rec yes >nul
    SetACL -on "HKCR\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}" -ot reg -actn setprot -op "dacl:np" -actn clear -clr "dacl" -actn rstchldrn -rst "dacl" >nul
    SetACL -on "HKCR\WOW6432Node\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}" -ot reg -actn setowner -ownr "n:Administrators" -rec yes >nul
    SetACL -on "HKCR\WOW6432Node\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}" -ot reg -actn setprot -op "dacl:np" -actn clear -clr "dacl" -actn rstchldrn -rst "dacl" >nul
    SetACL -on "HKLM\SYSTEM\CurrentControlSet\Services\TrkWks" -ot reg -actn setowner -ownr "n:Administrators" -rec yes >nul
    SetACL -on "HKLM\SYSTEM\CurrentControlSet\Services\TrkWks" -ot reg -actn setprot -op "dacl:np" -actn clear -clr "dacl" -actn rstchldrn -rst "dacl" >nul
    regedit /s tweaks_hkcr.reg
    regedit /s tweaks_hkcu.reg
    regedit /s tweaks_hklm.reg
    echo. & echo done
    echo. & pause
    exit
    
    
    tweaks_hkcr.reg
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\InternetShortcut]
    "NeverShowExt"=-
    
    [HKEY_CLASSES_ROOT\piffile]
    "NeverShowExt"=-
    
    [HKEY_CLASSES_ROOT\SHCmdFile]
    "NeverShowExt"=-
    
    [HKEY_CLASSES_ROOT\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}\ShellFolder]
    "Attributes"=dword:a0900004
    
    [HKEY_CLASSES_ROOT\WOW6432Node\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}\ShellFolder]
    "Attributes"=dword:a0900004
    
    [-HKEY_CLASSES_ROOT\CABFolder\CLSID]
    
    [-HKEY_CLASSES_ROOT\CompressedFolder\CLSID]
    
    [-HKEY_CLASSES_ROOT\SystemFileAssociations\.cab\CLSID]
    
    [-HKEY_CLASSES_ROOT\SystemFileAssociations\.zip\CLSID]
    
    
    tweaks_hkcu.reg
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Control Panel\Accessibility]
    "DynamicScrollbars"=dword:00000000
    
    [HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response]
    "Flags"="122"
    
    [HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys]
    "Flags"="506"
    
    [HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys]
    "Flags"="58"
    
    [HKEY_CURRENT_USER\Control Panel\Colors]
    "Background"="100 128 164"
    
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "UserPreferencesMask"=hex:90,12,03,80,10,00,00,00
    "WallPaper"=""
    "WheelScrollLines"="1"
    "WindowArrangementActive"="0"
    
    [HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics]
    "MinAnimate"="0"
    
    [HKEY_CURRENT_USER\Control Panel\Keyboard]
    "PrintScreenKeyForSnippingEnabled"=dword:00000001
    
    [HKEY_CURRENT_USER\Control Panel\Quick Actions\Pinned]
    "0"="SystemSettings_Display_Brightness"
    "1"="SystemSettings_Device_BluetoothQuickAction"
    "2"="QuickActions_Launcher_ScreenClipping"
    "3"="SystemSettings_Notifications_DoNotDisturb_Toggle"
    "4"="SystemSettings_Display_IsRotationLockedQuickAction"
    "5"="SystemSettings_Display_QuickAction_ColorProfile"
    "6"="SystemSettings_Network_MB_QuickAction"
    "7"="SystemSettings_Notifications_DoNotDisturb_ToggleLegacy"
    "8"=-
    "9"=-
    "10"=-
    "11"=-
    "12"=-
    "13"=-
    "14"=-
    "15"=-
    "16"=-
    "17"=-
    "18"=-
    "19"=-
    "20"=-
    
    [HKEY_CURRENT_USER\Control Panel\Quick Actions\QuickActionsStateCapture]
    "PinnedQuickActions"="Microsoft.QuickAction.Brightness,Microsoft.QuickAction.Bluetooth,Microsoft.QuickAction.ScreenClipping,Microsoft.QuickAction.QuietHours"
    "ActiveStates"="false,false,false,false"
    
    [HKEY_CURRENT_USER\Environment]
    "TEMP"="C:\\Windows\\Temp"
    "TMP"="C:\\Windows\\Temp"
    "Path"=-
    
    [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell]
    "FolderType"="NotSpecified"
    
    [HKEY_CURRENT_USER\Software\Microsoft\GameBar]
    "AutoGameModeEnabled"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Personalization\Settings]
    "AcceptedPrivacyPolicy"=dword:00000000
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Siuf\Rules]
    "NumberOfSIUFInPeriod"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
    "EnableAutoTray"=dword:00000000
    "ShellState"=hex:24,00,00,00,37,28,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
      01,00,00,00,13,00,00,00,00,00,00,00,73,00,00,00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent]
    "AccentPalette"=hex:80,80,80,ff,80,80,80,ff,80,80,80,ff,80,80,80,ff,7f,7f,7f,\
      ff,7f,7f,7f,ff,7f,7f,7f,ff,88,17,98,00
    "StartColorMenu"=dword:ff7f7f7f
    "AccentColorMenu"=dword:ff808080
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
    "AlwaysShowMenus"=dword:00000001
    "ExtendedUIHoverTime"=dword:00040000
    "Hidden"=dword:00000001
    "HideDrivesWithNoMedia"=dword:00000000
    "HideFileExt"=dword:00000000
    "HideMergeConflicts"=dword:00000000
    "IconsOnly"=dword:00000001
    "LaunchTo"=dword:00000001
    "ListviewAlphaSelect"=dword:00000000
    "ListviewShadow"=dword:00000000
    "NavPaneExpandToCurrentFolder"=dword:00000001
    "NavPaneShowAllFolders"=dword:00000001
    "SeparateProcess"=dword:00000001
    "SharingWizardOn"=dword:00000000
    "ShowEncryptCompressedColor"=dword:00000001
    "ShowSyncProviderNotifications"=dword:00000000
    "ShowTaskViewButton"=dword:00000000
    "Start_TrackDocs"=dword:00000000
    "TaskbarAnimations"=dword:00000000
    "TaskbarGlomLevel"=dword:00000002
    "TaskbarSizeMove"=dword:00000001
    "TaskbarSmallIcons"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People]
    "PeopleBand"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers]
    "DisableAutoplay"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
    "Settings"=hex:0c,00,02,00,0b,01,00,00,60,00,00,00
    "FullPath"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
    "VisualFXSetting"=dword:00000003
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers]
    "BackgroundType"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR]
    "AppCaptureEnabled"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance]
    "Enabled"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "DisallowCpl"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\DisallowCpl]
    "Microsoft.AdministrativeTools"="Microsoft.AdministrativeTools"
    "Microsoft.AutoPlay"="Microsoft.AutoPlay"
    "Microsoft.BackupAndRestore"="Microsoft.BackupAndRestore"
    "Microsoft.BitLockerDriveEncryption"="Microsoft.BitLockerDriveEncryption"
    "Microsoft.ColorManagement"="Microsoft.ColorManagement"
    "Microsoft.FileHistory"="Microsoft.FileHistory"
    "Microsoft.Infrared"="Microsoft.Infrared"
    "Microsoft.PortableWorkspaceCreator"="Microsoft.PortableWorkspaceCreator"
    "Microsoft.RegionAndLanguage"="Microsoft.RegionAndLanguage"
    "Microsoft.RemoteAppAndDesktopConnections"="Microsoft.RemoteAppAndDesktopConnections"
    "Microsoft.StorageSpaces"="Microsoft.StorageSpaces"
    "Microsoft.SpeechRecognition"="Microsoft.SpeechRecognition"
    "Microsoft.SyncCenter"="Microsoft.SyncCenter"
    "Microsoft.Taskbar"="Microsoft.Taskbar"
    "Microsoft.Troubleshooting"="Microsoft.Troubleshooting"
    "Microsoft.UserAccounts"="Microsoft.UserAccounts"
    "Microsoft.MobilityCenter"="Microsoft.MobilityCenter"
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
    "SearchboxTaskbarMode"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize]
    "EnableTransparency"=dword:00000000
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM]
    "EnableAeroPeek"=dword:00000000
    "AccentColor"=dword:ff808080
    "ColorizationColor"=dword:c4808080
    "ColorizationAfterglow"=dword:c4808080
    "ColorPrevalence"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsMediaPlayer]
    "PreventCDDVDMetadataRetrieval"=dword:00000001
    "PreventMusicFileMetadataRetrieval"=dword:00000001
    "PreventRadioPresetsRetrieval"=dword:00000001
    "SetAndLockSkin"=dword:00000001
    
    [HKEY_CURRENT_USER\System\GameConfigStore]
    "GameDVR_Enabled"=dword:00000000
    
    
    tweaks_hklm.reg
    
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers]
    @="2"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata]
    "PreventDeviceMetadataFromNetwork"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
    "HubMode"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes\{7fde1a1e-8b31-49a5-93b8-6be14cfa4943}\TopViews\{bdbe736f-34f5-4829-abe8-b550e65146c4}]
    "ColumnList"="prop:0(30)System.ItemNameDisplay;0(50)System.ItemFolderPathDisplay"
    "LogicalViewMode"=dword:00000001
    "SortByList"="prop:System.ItemFolderPathDisplay;System.ItemNameDisplay"
    
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{031E4825-7B94-4dc3-B131-E946B44C8DD5}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}]
    
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
    
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{031E4825-7B94-4dc3-B131-E946B44C8DD5}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}]
    
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "SettingsPageVisibility"="hide:windowsupdate;datausage;sync"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
    "EnableLUA"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
    "SecurityHealth"=-
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\ScheduledDiagnostics]
    "EnabledExecution"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
    "AutoStartDelay"=dword:00004e20
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
    "AutoReboot"=dword:00000000
    "CrashDumpEnabled"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
    "Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,3a,00,00,00,00,00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Remote Assistance]
    "fAllowToGetHelp"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser\Parameters]
    "MaintainServerList"="No"
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
    "AutoShareWks"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters]
    "AllowInsecureGuestAuth"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\luafv]
    "Start"=dword:00000003
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile]
    "EnableFirewall"=dword:00000000
    
    ;---------- Services Set to Auto ----------
    
    ;Function Discovery Resource Publication
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FDResPub]
    "Start"=dword:00000002
    "DelayedAutostart"=dword:00000001
    
    ;---------- Services Set to Manual ----------
    
    ;AtherosSvc
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AtherosSvc]
    "Start"=dword:00000003
    
    ;Connected Devices Platform Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CDPSvc]
    "Start"=dword:00000003
    
    ;Data Usage
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DusmSvc]
    "Start"=dword:00000003
    
    ;Delivery Optimization
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DoSvc]
    "Start"=dword:00000003
    
    ;Device Management Wireless Application Protocol
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushservice]
    "Start"=dword:00000003
    
    ;Distributed Link Tracking Client
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TrkWks]
    "Start"=dword:00000003
    
    ;Downloaded Maps Manager
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MapsBroker]
    "Start"=dword:00000003
    
    ;Intel(R) Content Protection HDCP Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\cplspcon]
    "Start"=dword:00000003
    
    ;Intel(R) HD Graphics Control Panel Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\igfxCUIService2.0.0.0]
    "Start"=dword:00000003
    
    ;Qualcomm Atheros WLAN Driver Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\QcomWlanSrv]
    "Start"=dword:00000003
    
    ;RstMwService (Intel Rapid Storage Technology)
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RstMwService]
    "Start"=dword:00000003
    
    ;Security Center
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc]
    "Start"=dword:00000003
    
    ;System Guard Runtime Monitor Broker
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SgrmBroker]
    "Start"=dword:00000003
    
    ;Windows Push Notifications System Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WpnService]
    "Start"=dword:00000003
    
    ;---------- Services Set to Disabled ----------
    
    ;ActiveX Installer
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AxInstSV]
    "Start"=dword:00000004
    
    ;BitLocker Drive Encryption Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BDESVC]
    "Start"=dword:00000004
    
    ;Clipboard User Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\cbdhsvc]
    "Start"=dword:00000004
    
    ;Connected Devices Platform User Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CDPUserSvc]
    "Start"=dword:00000004
    
    ;Connected User Experiences and Telemetry
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack]
    "Start"=dword:00000004
    
    ;File History Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\fhsvc]
    "Start"=dword:00000004
    
    ;GameDVR and Broadcast User Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BcastDVRUserService]
    "Start"=dword:00000004
    
    ;IP Helper
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\iphlpsvc]
    "Start"=dword:00000004
    
    ;Network Connection Broker
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NcbService]
    "Start"=dword:00000004
    
    ;Network Connectivity Assistant
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NcaSvc]
    "Start"=dword:00000004
    
    ;Touch Keyboard and Handwriting Panel Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TabletInputService]
    "Start"=dword:00000004
    
    ;Update Orchestrator Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsoSvc]
    "Start"=dword:00000004
    
    ;Windows Biometric Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WbioSrvc]
    "Start"=dword:00000004
    
    ;Windows Camera Frame Server
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FrameServer]
    "Start"=dword:00000004
    
    ;Windows Search
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSearch]
    "Start"=dword:00000004
    
    ;Windows Update
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv]
    "Start"=dword:00000004
    
    ;WinHTTP Web Proxy Auto-Discovery Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WinHttpAutoProxySvc]
    "Start"=dword:00000004
    
    
     
  13. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    #9696 Super Spartan, Feb 14, 2019
    Last edited: Feb 17, 2019
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. miketunes

    miketunes MDL Novice

    Aug 23, 2010
    30
    5
    0
    How can I re-install an app package that was removed with the iso creation? I removed Onenote and now need to install it. It installs from the app store, but closes on launch. I also tried this script: .\reinstall-preinstalledApps.ps1 *Microsoft.Office.OneNote* , but got this error - No provisioned apps match the specified filter. Is there a dependacy for onenote I may be missing?
     
  15. hoxlund

    hoxlund MDL Member

    Nov 6, 2017
    112
    54
    10
  16. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    #9699 Super Spartan, Feb 14, 2019
    Last edited: Feb 14, 2019
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. lovs2build

    lovs2build MDL Novice

    Jul 31, 2012
    15
    5
    0