Hi.
How can I integrate this batch file to NTLite preinstall section? I created a "registry.bat" file and added it, but after windows installation on VMWare, it stucks on "Just a moment" loading screen before OOBE.
This is my batch file:
can I also add these batch files too?
also, there are several commands that I want to know which of them are safe to run in post-install:
Thanks.
How can I integrate this batch file to NTLite preinstall section? I created a "registry.bat" file and added it, but after windows installation on VMWare, it stucks on "Just a moment" loading screen before OOBE.
This is my batch file:
Batch:
REG Add "HKLM\SYSTEM\CurrentControlSet\Control\CrashControl" /V CrashDumpEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /V NtfsDisableLastAccessUpdate /T REG_DWORD /D 80000001 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /V DisableRemovableDriveIndexing /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /V PreventUsingAdvancedIndexingOptions /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /V RPSessionInterval /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /V Disabled /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /V Disabled /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /V EnableActivityFeed /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /V PublishUserActivities /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /V UploadUserActivities /T REG_DWORD /D 0 /F
REG Add "HKLM\System\CurrentControlSet\Control\Session Manager\Power" /V HibernateEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" /V ShowHibernateOption /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" /V Value /T REG_SZ /D Deny /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}" /V SensorPermissionState /T REG_DWORD /D 0 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Services\lfsvc\Service\Configuration" /V Status /T REG_DWORD /D 0 /F
REG Add "HKLM\SYSTEM\Maps" /V AutoUpdateEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\EdgeUpdate" /V CreateDesktopShortcutDefault /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V PersonalizationReportingEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V ShowRecommendationsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V HideFirstRunExperience /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V UserFeedbackAllowed /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V ConfigureDoNotTrack /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V AlternateErrorPagesEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V EdgeCollectionsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V EdgeShoppingAssistantEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V MicrosoftEdgeInsiderPromotionEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V PersonalizationReportingEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V ShowMicrosoftRewards /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V WebWidgetAllowed /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V DiagnosticData /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V EdgeAssetDeliveryServiceEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V EdgeCollectionsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V CryptoWalletEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /V WalletDonationEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /V DisableWindowsConsumerFeatures /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /V AllowTelemetry /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /V AllowTelemetry /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V ContentDeliveryAllowed /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V OemPreInstalledAppsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V PreInstalledAppsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V PreInstalledAppsEverEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SilentInstalledAppsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-338387Enabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-338388Enabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-338389Enabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-353698Enabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SystemPaneSuggestionsEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Siuf\Rules" /V NumberOfSIUFInPeriod /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V NumberOfSIUFInPeriod /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /V DoNotShowFeedbackNotifications /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /V DisableTailoredExperiencesWithDiagnosticData /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo" /V DisabledByGroupPolicy /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /V Disabled /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /V DODownloadMode /T REG_DWORD /D 1 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Control\Remote Assistance" /V fAllowToGetHelp /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager" /V EnthusiastMode /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V ShowTaskViewButton /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" /V PeopleBand /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V LaunchTo /T REG_DWORD /D 1 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /V LongPathsEnabled /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /V SearchOrderConfig /T REG_DWORD /D 1 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /V SystemResponsiveness /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /V NetworkThrottlingIndex /T REG_DWORD /D 4294967295 /F
REG Add "HKLM\Control Panel\Desktop" /V MenuShowDelay /T REG_DWORD /D 1 /F
REG Add "HKLM\Control Panel\Desktop" /V AutoEndTasks /T REG_DWORD /D 1 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /V ClearPageFileAtShutdown /T REG_DWORD /D 0 /F
REG Add "HKLM\SYSTEM\ControlSet001\Services\Ndu" /V Start /T REG_DWORD /D 2 /F
REG Add "HKLM\Control Panel\Mouse" /V MouseHoverTime /T REG_SZ /D 400 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /V IRPStackSize /T REG_DWORD /D 30 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds" /V EnableFeeds /T REG_DWORD /D 0 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\Feeds" /V ShellFeedsTaskbarViewMode /T REG_DWORD /D 2 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V HideSCAMeetNow /T REG_DWORD /D 1 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement" /V ScoobeSystemSettingEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting" /V Value /T REG_DWORD /D 0 /F
REG Add "HKLM\Software\Microsoft\PolicyManager\default\WiFi\AllowAutoConnectToWiFiSenseHotspots" /V Value /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /V TurnOffWindowsCopilot /T REG_DWORD /D 1 /F
REG Add "HKLM\Software\Policies\Microsoft\Windows\WindowsCopilot" /V TurnOffWindowsCopilot /T REG_DWORD /D 1 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V ShowCopilotButton /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /V DisableAIDataAnalysis /T REG_DWORD /D 1 /F
REG Add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager" /V DisableWpbtExecution /T REG_DWORD /D 1 /F
REG Add "HKLM\System\GameConfigStore" /V GameDVR_FSEBehavior /T REG_DWORD /D 2 /F
REG Add "HKLM\System\GameConfigStore" /V GameDVR_Enabled /T REG_DWORD /D 0 /F
REG Add "HKLM\System\GameConfigStore" /V GameDVR_HonorUserFSEBehaviorMode /T REG_DWORD /D 1 /F
REG Add "HKLM\System\GameConfigStore" /V GameDVR_EFSEFeatureFlags /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /V AllowGameDVR /T REG_DWORD /D 0 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications" /V GlobalUserDisabled /T REG_DWORD /D 1 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\Search" /V BingSearchEnabled /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\PolicyManager\current\device\Start" /V HideRecommendedSection /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Microsoft\PolicyManager\current\device\Education" /V IsEducationEnvironment /T REG_DWORD /D 0 /F
REG Add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /V HideRecommendedSection /T REG_DWORD /D 0 /F
REG Add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /V SettingsPageVisibility /T REG_SZ /D hide:home /F
can I also add these batch files too?
Batch:
sc stop "wsearch"
sc config "wsearch" start=disabled
sc stop "SysMain"
sc config "SysMain" start=disabled
sc stop "AJRouter"
sc config "AJRouter" start=disabled
sc stop "AppVClient"
sc config "AppVClient" start=disabled
sc stop "AssignedAccessManagerSvc"
sc config "AssignedAccessManagerSvc" start=disabled
sc stop "DiagTrack"
sc config "DiagTrack" start=disabled
sc stop "DialogBlockingService"
sc config "DialogBlockingService" start=disabled
sc stop "NetTcpPortSharing"
sc config "NetTcpPortSharing" start=disabled
sc stop "RemoteAccess"
sc config "RemoteAccess" start=disabled
sc stop "RemoteRegistry"
sc config "RemoteRegistry" start=disabled
sc stop "UevAgentService"
sc config "UevAgentService" start=disabled
sc stop "shpamsvc"
sc config "shpamsvc" start=disabled
sc stop "ssh-agent"
sc config "ssh-agent" start=disabled
sc stop "tzautoupdate"
sc config "tzautoupdate" start=disabled
sc stop "uhssvc"
sc config "uhssvc" start=disabled
sc config "ALG" start=Demand
sc config "AppIDSvc" start=Demand
sc config "AppMgmt" start=Demand
sc config "AppReadiness" start=Demand
sc config "AppXSvc" start=Demand
sc config "Appinfo" start=Demand
sc config "AxInstSV" start=Demand
sc config "BDESVC" start=Demand
sc config "BTAGService" start=Demand
sc config "BcastDVRUserService_*" start=Demand
sc config "BluetoothUserService_*" start=Demand
sc config "Browser" start=Demand
sc config "CDPSvc" start=Demand
sc config "COMSysApp" start=Demand
sc config "CaptureService_*" start=Demand
sc config "CertPropSvc" start=Demand
sc config "ClipSVC" start=Demand
sc config "ConsentUxUserSvc_*" start=Demand
sc config "CredentialEnrollmentManagerUserSvc_*" start=Demand
sc config "CscService" start=Demand
sc config "DcpSvc" start=Demand
sc config "DevQueryBroker" start=Demand
sc config "DeviceAssociationBrokerSvc_*" start=Demand
sc config "DeviceAssociationService" start=Demand
sc config "DeviceInstall" start=Demand
sc config "DevicePickerUserSvc_*" start=Demand
sc config "DevicesFlowUserSvc_*" start=Demand
sc config "DisplayEnhancementService" start=Demand
sc config "DmEnrollmentSvc" start=Demand
sc config "EFS" start=Demand
sc config "EapHost" start=Demand
sc config "EntAppSvc" start=Demand
sc config "FDResPub" start=Demand
sc config "Fax" start=Demand
sc config "FrameServer" start=Demand
sc config "FrameServerMonitor" start=Demand
sc config "GraphicsPerfSvc" start=Demand
sc config "HomeGroupListener" start=Demand
sc config "HomeGroupProvider" start=Demand
sc config "HvHost" start=Demand
sc config "IEEtwCollectorService" start=Demand
sc config "IKEEXT" start=Demand
sc config "InstallService" start=Demand
sc config "InventorySvc" start=Demand
sc config "IpxlatCfgSvc" start=Demand
sc config "KtmRm" start=Demand
sc config "LicenseManager" start=Demand
sc config "LxpSvc" start=Demand
sc config "MSDTC" start=Demand
sc config "MSiSCSI" start=Demand
sc config "McpManagementService" start=Demand
sc config "MessagingService_*" start=Demand
sc config "MicrosoftEdgeElevationService" start=Demand
sc config "MixedRealityOpenXRSvc" start=Demand
sc config "MsKeyboardFilter" start=Demand
sc config "NPSMSvc_*" start=Demand
sc config "NaturalAuthentication" start=Demand
sc config "NcaSvc" start=Demand
sc config "NcbService" start=Demand
sc config "NcdAutoSetup" start=Demand
sc config "NetSetupSvc" start=Demand
sc config "Netman" start=Demand
sc config "NgcCtnrSvc" start=Demand
sc config "NgcSvc" start=Demand
sc config "NlaSvc" start=Demand
sc config "P9RdrService_*" start=Demand
sc config "PNRPAutoReg" start=Demand
sc config "PNRPsvc" start=Demand
sc config "PcaSvc" start=Demand
sc config "PeerDistSvc" start=Demand
sc config "PenService_*" start=Demand
sc config "PerfHost" start=Demand
sc config "PhoneSvc" start=Demand
sc config "PimIndexMaintenanceSvc_*" start=Demand
sc config "PlugPlay" start=Demand
sc config "PolicyAgent" start=Demand
sc config "PrintNotify" start=Demand
sc config "PrintWorkflowUserSvc_*" start=Demand
sc config "PushToInstall" start=Demand
sc config "QWAVE" start=Demand
sc config "RasAuto" start=Demand
sc config "RasMan" start=Demand
sc config "RetailDemo" start=Demand
sc config "RmSvc" start=Demand
sc config "RpcLocator" start=Demand
sc config "SCPolicySvc" start=Demand
sc config "SCardSvr" start=Demand
sc config "SDRSVC" start=Demand
sc config "SEMgrSvc" start=Demand
sc config "SNMPTRAP" start=Demand
sc config "SNMPTrap" start=Demand
sc config "SSDPSRV" start=Demand
sc config "ScDeviceEnum" start=Demand
sc config "SecurityHealthService" start=Demand
sc config "Sense" start=Demand
sc config "SensorDataService" start=Demand
sc config "SensorService" start=Demand
sc config "SensrSvc" start=Demand
sc config "SessionEnv" start=Demand
sc config "SharedAccess" start=Demand
sc config "SharedRealitySvc" start=Demand
sc config "SmsRouter" start=Demand
sc config "SstpSvc" start=Demand
sc config "StiSvc" start=Demand
sc config "StorSvc" start=Demand
sc config "TabletInputService" start=Demand
sc config "TapiSrv" start=Demand
sc config "TieringEngineService" start=Demand
sc config "TimeBroker" start=Demand
sc config "TimeBrokerSvc" start=Demand
sc config "TokenBroker" start=Demand
sc config "TroubleshootingSvc" start=Demand
sc config "TrustedInstaller" start=Demand
sc config "UI0Detect" start=Demand
sc config "UdkUserSvc_*" start=Demand
sc config "UmRdpService" start=Demand
sc config "UnistoreSvc_*" start=Demand
sc config "UserDataSvc_*" start=Demand
sc config "UsoSvc" start=Demand
sc config "VSS" start=Demand
sc config "VacSvc" start=Demand
sc config "W32Time" start=Demand
sc config "WEPHOSTSVC" start=Demand
sc config "WFDSConMgrSvc" start=Demand
sc config "WMPNetworkSvc" start=Demand
sc config "WManSvc" start=Demand
sc config "WPDBusEnum" start=Demand
sc config "WSService" start=Demand
sc config "WaaSMedicSvc" start=Demand
sc config "WalletService" start=Demand
sc config "WarpJITSvc" start=Demand
sc config "WcsPlugInService" start=Demand
sc config "WdNisSvc" start=Demand
sc config "WdiServiceHost" start=Demand
sc config "WdiSystemHost" start=Demand
sc config "WebClient" start=Demand
sc config "Wecsvc" start=Demand
sc config "WerSvc" start=Demand
sc config "WiaRpc" start=Demand
sc config "WinHttpAutoProxySvc" start=Demand
sc config "WinRM" start=Demand
sc config "WpcMonSvc" start=Demand
sc config "WpnService" start=Demand
sc config "XblAuthManager" start=Demand
sc config "XblGameSave" start=Demand
sc config "XboxGipSvc" start=Demand
sc config "XboxNetApiSvc" start=Demand
sc config "autotimesvc" start=Demand
sc config "bthserv" start=Demand
sc config "camsvc" start=Demand
sc config "cbdhsvc_*" start=Demand
sc config "cloudidsvc" start=Demand
sc config "dcsvc" start=Demand
sc config "defragsvc" start=Demand
sc config "diagnosticshub.standardcollector.service" start=Demand
sc config "diagsvc" start=Demand
sc config "dmwappushservice" start=Demand
sc config "dot3svc" start=Demand
sc config "edgeupdate" start=Demand
sc config "edgeupdatem" start=Demand
sc config "embeddedmode" start=Demand
sc config "fdPHost" start=Demand
sc config "fhsvc" start=Demand
sc config "hidserv" start=Demand
sc config "icssvc" start=Demand
sc config "lfsvc" start=Demand
sc config "lltdsvc" start=Demand
sc config "lmhosts" start=Demand
sc config "msiserver" start=Demand
sc config "netprofm" start=Demand
sc config "p2pimsvc" start=Demand
sc config "p2psvc" start=Demand
sc config "perceptionsimulation" start=Demand
sc config "pla" start=Demand
sc config "seclogon" start=Demand
sc config "smphost" start=Demand
sc config "spectrum" start=Demand
sc config "svsvc" start=Demand
sc config "swprv" start=Demand
sc config "upnphost" start=Demand
sc config "vds" start=Demand
sc config "vm3dservice" start=Demand
sc config "vmicguestinterface" start=Demand
sc config "vmicheartbeat" start=Demand
sc config "vmickvpexchange" start=Demand
sc config "vmicrdv" start=Demand
sc config "vmicshutdown" start=Demand
sc config "vmictimesync" start=Demand
sc config "vmicvmsession" start=Demand
sc config "vmicvss" start=Demand
sc config "vmvss" start=Demand
sc config "wbengine" start=Demand
sc config "wcncsvc" start=Demand
sc config "webthreatdefsvc" start=Demand
sc config "wercplsupport" start=Demand
sc config "wisvc" start=Demand
sc config "wlidsvc" start=Demand
sc config "wlpasvc" start=Demand
sc config "wmiApSrv" start=Demand
sc config "workfolderssvc" start=Demand
sc config "wuauserv" start=Demand
sc config "wudfsvc" start=Demand
sc config "MapsBroker" start=Demand
sc config "GameInputSvc" start=Demand
sc config "TermService" start=Demand
sc config "HomeGroupListener" start=Demand
sc config "HomeGroupProvider" start=Demand
Batch:
schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\ProgramDataUpdater"
schtasks /Change /Disable /TN "Microsoft\Windows\Autochk\Proxy"
schtasks /Change /Disable /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator"
schtasks /Change /Disable /TN "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip"
schtasks /Change /Disable /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector"
schtasks /Change /Disable /TN "Microsoft\Windows\Feedback\Siuf\DmClient"
schtasks /Change /Disable /TN "Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload"
schtasks /Change /Disable /TN "Microsoft\Windows\Windows Error Reporting\QueueReporting"
schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\MareBackup"
schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\StartupAppTask"
schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\PcaPatchDbTask"
schtasks /Change /Disable /TN "Microsoft\Windows\Maps\MapsUpdateTask"
schtasks /Change /Disable /TN "\Microsoft\XblGameSave\XblGameSaveTask"
also, there are several commands that I want to know which of them are safe to run in post-install:
Batch:
fsutil behavior set disablelastaccess 1
powercfg.exe /hibernate off
powercfg -h off
DISM /Online /Disable-Feature /FeatureName:Recall /Quiet /NoRestart
Winsat formal -restart
fsutil behavior set disabledeletenotify 0
dism /online /remove-package /packagename:Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
dism /online /cleanup-image /analyzecomponentstore
dism /online /cleanup-image /startcomponentcleanup
dism /online /cleanup-image /startcomponentcleanup /resetbase
defrag /C /O
Thanks.
My Computers
System One System Two
-
- OS
- Windows 11 Pro 24H2
- Computer type
- Laptop
- Manufacturer/Model
- Huawei MateBook D15
- CPU
- Ryzen 5 3500U
- Memory
- 8GB
- Graphics Card(s)
- Vega 8
- Screen Resolution
- FHD
- Hard Drives
- 256GB Samsung SSD + 1TB HDD
- Browser
- Microsoft Edge
- Antivirus
- ESET Smart Security Premium
-
- Operating System
- Windows 10 Enterprise LTSC 21H2
- Computer type
- Laptop
- Manufacturer/Model
- MSI GS73 6RF Stealth Pro
- CPU
- intel core i7 6700HQ
- Memory
- 16GB
- Graphics card(s)
- Nvidia Geforce GTX1060 (6GB)
- Screen Resolution
- FHD
- Hard Drives
- 128GB SSD + 1TB HDD
- Browser
- Microsoft Edge
- Antivirus
- Windows Defender