diff --git a/test/applyall.bat b/test/applyall.bat new file mode 100644 index 0000000..a93f2a7 --- /dev/null +++ b/test/applyall.bat @@ -0,0 +1,3 @@ +@ECHO OFF + +powershell.exe -NoProfile -ExecutionPolicy Bypass -File %~dp0..\Win10.ps1 -preset "%~dp0applyall.preset" diff --git a/test/applyall.preset b/test/applyall.preset new file mode 100644 index 0000000..71331b7 --- /dev/null +++ b/test/applyall.preset @@ -0,0 +1,79 @@ + + # Apply all + + DisableTelemetry + DisableWiFiSense + DisableSmartScreen + DisableWebSearch + DisableStartSuggestions + DisableLocationTracking + DisableFeedback + DisableAdvertisingID + DisableCortana + DisableErrorReporting + RestrictUpdateP2P + DisableAutoLogger + DisableDiagTrack + DisableWAPPush + + LowerUAC + EnableSharingMappedDrives + DisableAdminShares + SetCurrentNetworkPrivate + SetUnknownNetworksPrivate + DisableFirewall + DisableDefender + DisableUpdateMSRT + DisableUpdateDriver + DisableUpdateRestart + DisableHomeGroups + DisableRemoteAssistance + EnableRemoteDesktop + DisableAutoplay + DisableAutorun + DisableDefragmentation + SetBIOSTimeUTC + + DisableActionCenter + DisableLockScreen + DisableLockScreenRS1 + DisableStickyKeys + ShowTaskManagerDetails + ShowFileOperationsDetails + HideTaskbarSearchBox + HideTaskView + ShowSmallTaskbarIcons + ShowTaskbarTitles + ShowTrayIcons + ShowKnownExtensions + ShowHiddenFiles + HideSyncNotifications + ExplorerThisPC + ShowThisPCOnDesktop + HideDesktopFromThisPC + HideDocumentsFromThisPC + HideDownloadsFromThisPC + HideMusicFromThisPC + HidePicturesFromThisPC + HideVideosFromThisPC + AddENKeyboard + EnableNumlock + + DisableOneDrive + UninstallOneDrive + UninstallBloatware + UninstallWindowsStore + DisableConsumerApps + DisableXboxFeatures + UninstallMediaPlayer + UninstallWorkFolders + InstallLinuxSubsystem + SetPhotoViewerAssociation + AddPhotoViewerOpenWith + DisableSearchAppInStore + DisableNewAppPrompt + EnableF8BootMenu + SetDEPOptOut + + WaitForKey + Restart \ No newline at end of file diff --git a/test/restoreall.bat b/test/restoreall.bat new file mode 100644 index 0000000..2c7e1bc --- /dev/null +++ b/test/restoreall.bat @@ -0,0 +1,3 @@ +@ECHO OFF + +powershell.exe -NoProfile -ExecutionPolicy Bypass -File %~dp0..\Win10.ps1 -preset "%~dp0restoreall.preset" diff --git a/test/restoreall.preset b/test/restoreall.preset new file mode 100644 index 0000000..553f2ea --- /dev/null +++ b/test/restoreall.preset @@ -0,0 +1,79 @@ + + # Restore all + + EnableTelemetry + EnableWiFiSense + EnableSmartScreen + EnableWebSearch + EnableStartSuggestions + EnableLocationTracking + EnableFeedback + EnableAdvertisingID + EnableCortana + EnableErrorReporting + UnrestrictUpdateP2P + EnableAutoLogger + EnableDiagTrack + EnableWAPPush + + RaiseUAC + DisableSharingMappedDrives + EnableAdminShares + SetCurrentNetworkPublic + SetUnknownNetworksPublic + EnableFirewall + EnableDefender + EnableUpdateMSRT + EnableUpdateDriver + EnableUpdateRestart + EnableHomeGroups + EnableRemoteAssistance + DisableRemoteDesktop + EnableAutoplay + EnableAutorun + EnableDefragmentation + SetBIOSTimeLocal + + EnableActionCenter + EnableLockScreen + EnableLockScreenRS1 + EnableStickyKeys + HideTaskManagerDetails + HideFileOperationsDetails + ShowTaskbarSearchBox + ShowTaskView + ShowLargeTaskbarIcons + HideTaskbarTitles + HideTrayIcons + HideKnownExtensions + HideHiddenFiles + ShowSyncNotifications + ExplorerQuickAccess + HideThisPCFromDesktop + ShowDesktopInThisPC + ShowDocumentsInThisPC + ShowDownloadsInThisPC + ShowMusicInThisPC + ShowPicturesInThisPC + ShowVideosInThisPC + RemoveENKeyboard + DisableNumlock + + EnableOneDrive + InstallOneDrive + InstallBloatware + InstallWindowsStore + EnableConsumerApps + EnableXboxFeatures + InstallMediaPlayer + InstallWorkFolders + UninstallLinuxSubsystem + UnsetPhotoViewerAssociation + RemovePhotoViewerOpenWith + EnableSearchAppInStore + EnableNewAppPrompt + DisableF8BootMenu + SetDEPOptIn + + WaitForKey + Restart \ No newline at end of file