You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configurations are implemented with `Install-Defaults.ps1`. This script reads configurations in JSON format and configures the local Windows instance with Windows feature states, registry settings, copies files into specified paths, imports a default Start menu, and modifies the default user profile.
8
+
9
+
Configurations are stored in the following JSON files with the logic to make changes to Windows includes in `Install-Defaults.ps1`:
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:
21
+
22
+
*`Client` - Windows 10 or Windows 11
23
+
*`Server` - Windows Server 2016, 2019, 2022
24
+
*`Virtual` - Virtual machines, e.g. Hyper-V, Azure, vSphere, Parallels etc.
25
+
*`All` - applies to all Windows instances
26
+
27
+
Each JSON file includes a `MininumBuild` property that can be used to ensure specific configurations only apply to a specific version of Windows or above. For example, the property might ensure that configurations only apply to Windows 10 version `10.0.19041` and above.
Copy file name to clipboardExpand all lines: docs/install.md
+5-29Lines changed: 5 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,6 @@ summary:
4
4
authors:
5
5
- Aaron Parker
6
6
---
7
-
## Download and Deploy
8
-
9
-
To use the scripts in an operating system deployment pipeline, download the zip file attached to the [latest release](https://github.com/aaronparker/image-customise/releases) and import the extracted files into your OS deployment solution (e.g. MDT, ConfigMgr, Packer etc.).
10
-
11
-
### Microsoft Intune
12
-
13
-
The solution is also provided in `.intunewin` format for use with Microsoft Intune. Settings for a Win32 package in Intune is maintained here: [App.json](https://github.com/aaronparker/image-customise/blob/main/App.json).
14
-
15
-

16
-
17
7
## Download and Install
18
8
19
9
To simplify download and install during an automated image build pipeline, an install script is provided that can be executed with the following PowerShell:
@@ -24,26 +14,12 @@ Set-ExecutionPolicy Bypass -Scope Process -Force;
Configurations are implemented with `Install-Defaults.ps1`. This script reads configurations in JSON format and configures the local Windows instance with Windows feature states, registry settings, copies files into specified paths, imports a default Start menu, and modifies the default user profile.
30
-
31
-
Configurations are stored in the following JSON files with the logic to make changes to Windows includes in `Install-Defaults.ps1`:
To use the scripts in an operating system deployment pipeline, download the zip file attached to the [latest release](https://github.com/aaronparker/image-customise/releases) and import the extracted files into your OS deployment solution (e.g. MDT, ConfigMgr, Packer etc.).
41
20
42
-
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:
21
+
### Microsoft Intune
43
22
44
-
*`Client` - Windows 10 or Windows 11
45
-
*`Server` - Windows Server 2016, 2019, 2022
46
-
*`Virtual` - Virtual machines, e.g. Hyper-V, Azure, vSphere, Parallels etc.
47
-
*`All` - applies to all Windows instances
23
+
The solution is also provided in `.intunewin` format for use with Microsoft Intune. Settings for a Win32 package in Intune is maintained here: [App.json](https://github.com/aaronparker/image-customise/blob/main/App.json).
48
24
49
-
Each JSON file includes a `MininumBuild` property that can be used to ensure specific configurations only apply to a specific version of Windows or above. For example, the property might ensure that configurations only apply to Windows 10 version `10.0.19041` and above.
25
+

0 commit comments