-
-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove win11.cmd & general fixes
- Loading branch information
Showing
24 changed files
with
245 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/playbook/Configuration/tweaks/misc/config-boot-description.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: Configure Boot Description | ||
description: Configures the boot description that you see in the Windows Boot Manager to say Atlas | ||
privilege: TrustedInstaller | ||
actions: | ||
- !run: | ||
exe: 'bcdedit' | ||
args: '/set description "AtlasOS 10"' | ||
builds: [ '!>=22000' ] | ||
- !run: | ||
exe: 'bcdedit' | ||
args: '/set description "AtlasOS 11"' | ||
builds: [ '>=22000' ] |
14 changes: 14 additions & 0 deletions
14
src/playbook/Configuration/tweaks/misc/delete-version-specific-files.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: Delete Windows-version Specific Tweaks | ||
description: Deletes Windows 10 or Windows 11-only tweaks in the Atlas folder, dependant on the Windows version | ||
privilege: TrustedInstaller | ||
actions: | ||
# Delete Windows 11-only tweaks | ||
- !file: {path: '%windir%\AtlasDesktop\3. Configuration\Background Apps', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\3. Configuration\Power\Timer Resolution', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\4. Optional Tweaks\File Explorer Customization\Compact View', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\4. Optional Tweaks\Windows 11 Context Menu', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasModules\Tools\TimerResolution.exe', builds: [ '!>=22000' ]} | ||
|
||
# Delete Windows 10-only tweaks | ||
- !file: {path: '%windir%\AtlasDesktop\3. Configuration\4. Optional Tweaks\Volume Flyout', builds: [ '>=22000' ]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/explorer/dont-show-office-files.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Don't Show Office Files | ||
description: Don't show Office files in Quick Access (Home) | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer' | ||
value: 'ShowCloudFilesInQuickAccess' | ||
data: '0' | ||
type: REG_DWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/explorer/use-compact-mode.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Use Compact Mode | ||
description: Sets compact mode in File Explorer | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'UseCompactMode' | ||
data: '1' | ||
type: REG_DWORD |
19 changes: 19 additions & 0 deletions
19
src/playbook/Configuration/tweaks/qol/set-hidden-settings-pages.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: Set Hidden Pages | ||
description: Hides Settings pages that are either broken or unused | ||
privilege: TrustedInstaller | ||
actions: | ||
# Windows 10 | ||
- !registryValue: | ||
path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer' | ||
value: 'SettingsPageVisibility' | ||
data: 'hide:crossdevice;recovery;autoplay;usb;maps;maps-downloadmaps;findmydevice;privacy;privacy-speech;privacy-feedback;privacy-activityhistory;search-permissions;privacy-location;privacy-general;sync;printers;cortana-windowssearch;backup;' | ||
type: REG_SZ | ||
builds: [ '!>=22000' ] | ||
# Windows 11 | ||
- !registryValue: | ||
path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer' | ||
value: 'SettingsPageVisibility' | ||
data: 'hide:crossdevice;recovery;autoplay;usb;maps;maps-downloadmaps;findmydevice;privacy;privacy-speech;privacy-feedback;privacy-activityhistory;search-permissions;privacy-location;privacy-general;sync;printers;cortana-windowssearch;family-group;deviceusage;home;' | ||
type: REG_SZ | ||
builds: [ '>=22000' ] |
16 changes: 16 additions & 0 deletions
16
src/playbook/Configuration/tweaks/qol/shell/no-recommendations-start-menu.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Disable Recommendations in the Start Menu | ||
description: Do not show recommendations for tips, shortcuts, new apps, and more in the Start Menu | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'Start_IrisRecommendations' | ||
data: '0' | ||
type: REG_DWORD | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'Start_AccountNotifications' | ||
data: '0' | ||
type: REG_DWORD |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/shell/restore-old-context-menu.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Restore Old Context Menu | ||
description: Restores the old context menu in Windows 11 | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32' | ||
value: '' | ||
data: '' | ||
type: REG_SZ |
50 changes: 50 additions & 0 deletions
50
src/playbook/Configuration/tweaks/qol/shell/set-unpinned-notification-items.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
title: Disable Windows Chat | ||
description: Disables Windows Chat as it's not commonly used | ||
privilege: TrustedInstaller | ||
actions: | ||
# Windows 10 | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.Connect' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '!>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.Location' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '!>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.ScreenClipping' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '!>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\QuickActionsStateCapture' | ||
value: 'Toggles' | ||
data: 'Toggles,Microsoft.QuickAction.BlueLightReduction:false,Microsoft.QuickAction.AllSettings:false,Microsoft.QuickAction.Project:false' | ||
type: REG_SZ | ||
builds: [ '!>=22000' ] | ||
|
||
# Windows 11 | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.Cast' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.NearShare' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\QuickActionsStateCapture' | ||
value: 'Toggles' | ||
data: 'Toggles,Microsoft.QuickAction.BlueLightReduction:false,Microsoft.QuickAction.Accessibility:false,Microsoft.QuickAction.ProjectL2:false' | ||
type: REG_SZ | ||
builds: [ '>=22000' ] |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/shell/show-more-pins.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Show More Pins in Start | ||
description: Shows more pins in the Start Menu, meaning less recommendations | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'Start_Layout' | ||
data: '1' | ||
type: REG_DWORD |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/taskbar/disable-copilot.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Disable Windows Copilot | ||
description: Disables Windows Copilot as it depends on Edge, as well it collecting data and it not being used by most users | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKLM\Software\Policies\Microsoft\Windows\WindowsCopilot' | ||
value: 'TurnOffWindowsCopilot' | ||
data: '1' | ||
type: REG_DWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/playbook/Configuration/tweaks/qol/taskbar/disable-windows-chat.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Disable Windows Chat | ||
description: Disables Windows Chat as it's not commonly used | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Chat' | ||
value: 'ChatIcon' | ||
data: '3' | ||
type: REG_DWORD | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'TaskbarMn' | ||
data: '0' | ||
type: REG_DWORD |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/taskbar/set-to-left.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Set Taskbar to Align Left | ||
description: Sets taskbar to align left instead of centered | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'TaskbarAl' | ||
data: '0' | ||
type: REG_DWORD |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Removes 'Bitmap' from the 'New' context menu in Windows 11 | ||
foreach ($userKey in $((Get-ChildItem -Path "Registry::HKEY_USERS").Name | Where-Object { $_ -like '*_Classes' })) { | ||
foreach ($key in $(Get-ChildItem -Path "Registry::$userKey\Local Settings\MrtCache" -Recurse)) { | ||
$key | Get-ItemProperty | ForEach-Object { | ||
foreach ($value in $($_.PSObject.Properties.Name | Where-Object {$_ -like '*ShellNewDisplayName_Bmp*'})) { | ||
Set-ItemProperty -Path $key.PSPath -Name $value -Value "" | ||
Write-Host "Removed 'Bitmap' from 'New' context menu for $userKey..." | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.