Skip to content

Commit d54dadb

Browse files
committed
Rename to 'defaults'
1 parent d09ccff commit d54dadb

19 files changed

Lines changed: 37 additions & 37 deletions

.github/workflows/new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ jobs:
5757
files: |
5858
releases/Install-Defaults.intunewin
5959
releases/Win32App.json
60-
releases/image-customise.zip
60+
releases/defaults.zip

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Thumbs.db:encryptable
3838

3939
# Exclude the releases folder
4040
releases/Install-Defaults.intunewin
41-
releases/image-customise.zip
41+
releases/defaults.zip
4242
CodeCoverage.xml
4343
TestResults.xml
4444
results.sarif

Install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$Uri = "https://api.github.com/repos/aaronparker/image-customise/releases/latest"
1+
$Uri = "https://api.github.com/repos/aaronparker/defaults/releases/latest"
22
$Filter = "\.zip$"
33
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
44
$params = @{

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ Customise a Windows 10/11 or Windows Server 2016-2025 image to make it enterpris
44

55
Designed for use with deploying physical PCs and virtual desktop gold images (Azure Virtual Desktop, Windows 365 etc.), these customisations will also work other Windows images including Windows Server infrastructure roles.
66

7-
Documentation on how to use and implement these scripts is found here: [Windows Enterprise Defaults](https://stealthpuppy.com/image-customise/).
7+
Documentation on how to use and implement these scripts is found here: [Windows Enterprise Defaults](https://stealthpuppy.com/defaults/).
88

9-
![Build status](https://github.com/aaronparker/image-customise/actions/workflows/validate-scripts.yml/badge.svg) [![codecov](https://codecov.io/gh/aaronparker/image-customise/branch/main/graph/badge.svg?token=PINVKVG70I)](https://codecov.io/gh/aaronparker/image-customise)
9+
![Build status](https://github.com/aaronparker/defaults/actions/workflows/validate-scripts.yml/badge.svg) [![codecov](https://codecov.io/gh/aaronparker/defaults/branch/main/graph/badge.svg?token=PINVKVG70I)](https://codecov.io/gh/aaronparker/defaults)

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Security Policy
22

3-
I'll do my best to address any security issues that may be identified in Windows configurations included in this repository. If you do identify an issue, please log it here: [https://github.com/aaronparker/image-customise/issues](https://github.com/aaronparker/image-customise/issues).
3+
I'll do my best to address any security issues that may be identified in Windows configurations included in this repository. If you do identify an issue, please log it here: [https://github.com/aaronparker/defaults/issues](https://github.com/aaronparker/defaults/issues).

ci/New-Package.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Write-Information -InformationAction "Continue" -MessageData "Found package: $($
6565
#region Zip the src folder
6666
$params = @{
6767
Path = "$PackagePath\*"
68-
DestinationPath = "$PackageOutput\image-customise.zip"
68+
DestinationPath = "$PackageOutput\defaults.zip"
6969
ErrorAction = "Stop"
7070
}
7171
Compress-Archive @params

docs/appxapps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ summary:
44
authors:
55
- Aaron Parker
66
---
7-
[`Remove-AppxApps.ps1`](https://github.com/aaronparker/image-customise/blob/main/src/Remove-AppxApps.ps1) will remove Universal Windows Platform (UWP) / Microsoft Store apps from the local Windows OS. This script runs in two modes:
7+
[`Remove-AppxApps.ps1`](https://github.com/aaronparker/defaults/blob/main/src/Remove-AppxApps.ps1) will remove Universal Windows Platform (UWP) / Microsoft Store apps from the local Windows OS. This script runs in two modes:
88

99
## Safe Package List
1010

docs/configs.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ Configuration changes are implemented with `Install-Defaults.ps1`. This script r
88

99
Configurations are stored in the following JSON files with the logic to make changes to Windows includes in `Install-Defaults.ps1`:
1010

11-
* [Build.All.json](https://github.com/aaronparker/image-customise/blob/main/src/Build.All.json)
12-
* [Machine-Windows11.All.json](https://github.com/aaronparker/image-customise/blob/main/src/Machine-Windows11.All.json)
13-
* [Machine.All.json](https://github.com/aaronparker/image-customise/blob/main/src/Machine.All.json)
14-
* [Machine.Client.json](https://github.com/aaronparker/image-customise/blob/main/src/Machine.Client.json)
15-
* [Machine.Server.json](https://github.com/aaronparker/image-customise/blob/main/src/Machine.Server.json)
16-
* [User-Windows10.All.json](https://github.com/aaronparker/image-customise/blob/main/src/User-Windows10.All.json)
17-
* [User-Windows11.All.json](https://github.com/aaronparker/image-customise/blob/main/src/User-Windows11.All.json)
18-
* [User.All.json](https://github.com/aaronparker/image-customise/blob/main/src/User.All.json)
19-
* [User.Client.json](https://github.com/aaronparker/image-customise/blob/main/src/User.Client.json)
20-
* [User.Server.json](https://github.com/aaronparker/image-customise/blob/main/src/User.Machine.json)
21-
* [User.Virtual.json](https://github.com/aaronparker/image-customise/blob/main/src/User.Virtual.json)
11+
* [Build.All.json](https://github.com/aaronparker/defaults/blob/main/src/Build.All.json)
12+
* [Machine-Windows11.All.json](https://github.com/aaronparker/defaults/blob/main/src/Machine-Windows11.All.json)
13+
* [Machine.All.json](https://github.com/aaronparker/defaults/blob/main/src/Machine.All.json)
14+
* [Machine.Client.json](https://github.com/aaronparker/defaults/blob/main/src/Machine.Client.json)
15+
* [Machine.Server.json](https://github.com/aaronparker/defaults/blob/main/src/Machine.Server.json)
16+
* [User-Windows10.All.json](https://github.com/aaronparker/defaults/blob/main/src/User-Windows10.All.json)
17+
* [User-Windows11.All.json](https://github.com/aaronparker/defaults/blob/main/src/User-Windows11.All.json)
18+
* [User.All.json](https://github.com/aaronparker/defaults/blob/main/src/User.All.json)
19+
* [User.Client.json](https://github.com/aaronparker/defaults/blob/main/src/User.Client.json)
20+
* [User.Server.json](https://github.com/aaronparker/defaults/blob/main/src/User.Machine.json)
21+
* [User.Virtual.json](https://github.com/aaronparker/defaults/blob/main/src/User.Virtual.json)
2222

2323
JSON files are gathered based on properties of the local Windows instance. The following keywords, used in the file names, ensure that the right JSON files are selected:
2424

@@ -33,7 +33,7 @@ Each JSON file includes a `MinimumBuild` property that can be used to ensure spe
3333

3434
`Install-Defaults.ps1` performs additional tasks not defined in the JSON configuration files:
3535

36-
* Removes inbox Universal Windows Platform (AppX) apps - see [Remove UWP apps](https://stealthpuppy.com/image-customise/appxapps/)
36+
* Removes inbox Universal Windows Platform (AppX) apps - see [Remove UWP apps](https://stealthpuppy.com/defaults/appxapps/)
3737
* Copies the solution as a [Run custom actions during feature update](https://learn.microsoft.com/en-gb/windows-hardware/manufacture/desktop/windows-setup-enable-custom-actions?view=windows-11). This enables the Custom Defaults to be re-run during an in-place upgrade
3838

3939
## Script Process Visualisation

docs/custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ summary:
44
authors:
55
- Aaron Parker
66
---
7-
To customise the solution, download the [latest release](https://github.com/aaronparker/image-customise/releases) in `.zip` format and extract the archive. You should then see a folder listing similar to the following.
7+
To customise the solution, download the [latest release](https://github.com/aaronparker/defaults/releases) in `.zip` format and extract the archive. You should then see a folder listing similar to the following.
88

99
![A folder listing of the Windows Custom Default files](assets/img/src.png)
1010

docs/feature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ When `Install-Defaults.ps1` runs, it copies the project files to `C:\WINDOWS\Sys
1010

1111
[![File Explorer showing the feature upgrade files](assets/img/feature.png)](assets/img/feature.png)
1212

13-
When a feature upgrade completes (e.g. Windows 11 23H2 to Windows 11 24H2), `success.cmd` is executed. This will re-run `Install-Defaults.ps1` and explicitly run `Remove-AppxApps.ps1` in [targeted mode](https://stealthpuppy.com/image-customise/appxapps/#targeted-package-list). This removes a set of AppX applications that are often reinstalled during a feature update.
13+
When a feature upgrade completes (e.g. Windows 11 23H2 to Windows 11 24H2), `success.cmd` is executed. This will re-run `Install-Defaults.ps1` and explicitly run `Remove-AppxApps.ps1` in [targeted mode](https://stealthpuppy.com/defaults/appxapps/#targeted-package-list). This removes a set of AppX applications that are often reinstalled during a feature update.
1414

1515
```batch
1616
@ECHO OFF

0 commit comments

Comments
 (0)