Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyueta committed Apr 6, 2024
1 parent e42227a commit edcf4d8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
8 changes: 4 additions & 4 deletions src/playbook/Configuration/atlas/appx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ description: Removes AppX packages and prevents them from being reinstalled
actions:
- !writeStatus: {status: 'Removing AppX packages'}

# The reason of removing those applications is that there is a potential of them sending user data,
# showing unwanted content (advertisements) and using hardware resources. They can also simply be
# annoyances that are never used. However, most of these applications can be reinstalled via the
# The reason of removing those applications is that they might be sending user data,
# showing unwanted content and using hardware resources. They can also simply be annoyances
# that are never used. However, most of these applications can be reinstalled via
# Microsoft Store in case the user needs them.

# https://docs.microsoft.com/en-us/windows/application-management/apps-in-windows-10

#####################################################################################################

# Get current AppX packages to deprovision removed ones later
# Get current AppX packages to deprovision removed ones afterward
- !powerShell:
command: >-
(Get-AppxPackage).PackageFamilyName |
Expand Down
1 change: 1 addition & 0 deletions src/playbook/Configuration/atlas/components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ actions:
- !writeStatus: {status: 'Removing OneDrive'}
- !run: {exeDir: true, exe: 'ONED.cmd'}

# Windows components and Telemetry
- !writeStatus: {status: 'Removing components'}
- !powerShell:
command: >-
Expand Down
6 changes: 3 additions & 3 deletions src/playbook/Configuration/atlas/services.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Configure Services and Drivers
description: Configures services and drivers to reduce background system resource utilisation
title: Services and Drivers
description: Configures services and drivers to reduce background system resource utilization
actions:
# ----------------------------------
# - Potential references -
Expand All @@ -10,7 +10,7 @@ actions:
# https://learn.microsoft.com/en-us/windows-server/security/windows-services/security-guidelines-for-disabling-system-services-in-windows-server
# https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/optimize/services

# Backup default Windows serivces & drivers
# Back up default Windows serivces & drivers
- !powerShell:
command: >-
.\BACKUP.ps1 -FilePath """$([Environment]::GetFolderPath('Windows'))\AtlasModules\Other\winServices.reg"""
Expand Down
10 changes: 3 additions & 7 deletions src/playbook/Configuration/atlas/start.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Initial Configuration
description: Copies Atlas folders/files, installs dependencies and performs the preliminary configuration
description: Performs the preliminary configuration
actions:
- !writeStatus: {status: 'Setting the environment'}
- !powerShell:
Expand All @@ -20,11 +20,6 @@ actions:
AddToVar 'Path' """$modulesPath;$modulesPath\Apps;$modulesPath\Other;$modulesPath\Tools;$modulesPath\Scripts""";
# Doesn't refresh the environment variables of TrustedUninstaller
# An alternative should be found, for now, exact paths are used
# - !writeStatus: {status: 'Refreshing variables'}
# - !run: {exeDir: true, exe: 'REFRESHENV.cmd'}

################ NO LOCAL BUILD ################

- !writeStatus: {status: 'Enabling DirectPlay'}
Expand All @@ -43,7 +38,8 @@ actions:
- !run: {exe: 'DISM.exe', args: '/Online /Disable-Feature /FeatureName:"WindowsMediaPlayer" /NoRestart', weight: 30}
- !run: {exe: 'DISM.exe', args: '/Online /Remove-Capability /CapabilityName:"Media.WindowsMediaPlayer~~~~0.0.12.0" /NoRestart', weight: 30}

# Initial software (7-Zip & Visual C++ runtimes)
# Initial software
# 7-Zip, Visual C++ Runtimes, DirectX
- !writeStatus: {status: 'Installing utilities'}
- !powerShell:
command: '.\SOFTWARE.ps1'
Expand Down

0 comments on commit edcf4d8

Please sign in to comment.