-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_system_SysPrep.properties
124 lines (95 loc) · 3.26 KB
/
module_system_SysPrep.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# title: Module System SysPrep properties [configuration] File
# Developer:
# Author: David Geeraerts
# Location: Olympia, Washington USA
# E-Mail: [email protected]
# Project:
# URL: https://github.com/DavidGeeraerts/module_system_SysPrep
#License:
# type: Copyleft License(s)
# name: GNU GPL v3 (General Public License)
# URL: https://www.gnu.org/licenses/gpl-3.0.en.html
# notes:
# - structured as a cmd properties file # <Variable>=<value>
# - encoded: ISO-8859-1 [UTF-8]
###############################################################################
# Schema version for the configuration file
###############################################################################
$CONFIG_SCHEMA_VERSION=3.2.0
###############################################################################
---
###############################################################################
# MAIN CONFIGURATION SECTION
###############################################################################
# Flushes the default user that is logged in
# default user from unattend file
# can leave blank as it will get picked up based on user logged in.
$LOCAL_USER=Scientific
# [DELETE] Scheduled Task keyword search
# Keyword search is used to search for scheduled tasks that are created for users.
# The primary cleanup is for OneDrive.
# Include others as they are added by Microsoft.
# Keyword then space
# I.g. $KEYWORD_SCHEDULED_TASK=OneDrive Google
$KEYWORD_SCHEDULED_TASK=OneDrive
# [DELETE] Microsoft APPX Packages
# File that contains a list of APPX packages to delete using keywords
$APPX_FILE=APPX_List.txt
# Windows Update via powershell, KB exclusion
# File that contains the NotKBArticleFile with space between KB's
# E.g. KB4481252 KB4481252
# KB4481252 = SilverLight
$NotKBArticleID=Windows_Update_KB_List.txt
# Use Unatand.xml for SysPrep
# No [0] Yes [1]
$UNATTEND_USE=0
# Unattend.xml
# Remove all Unattend.xml from the systemdrive
# before running SysPrep
# {No,Yes}
# 0 = No
# 1 = Yes
$UNATTEND_CLEAN=Yes
# Unattend directory from the root of the volume where the program was executed from.
$UNATTEND_DIR=Unattend
# Name of unattend file to seed
$Unattend_FILE=unattend.xml
# Timeout [seconds]
## controls the amount of time between actions.
## Useful to increase the time to allow seeing what is happening.
## Decrease time when seeing what is happening is no longer needed.
## Default=5 [seconds]
$TIMEOUT=5
#############################################################################
# *******************
# Advanced Settings
# *******************
#############################################################################
# Turn on [1] or off [0]
$DEBUG=0
# LOG LEVEL CONTROL
# by default, INFO WARN ERROR FATAL
# if $DEBUG=1, it will set $LOG_LEVEL_ALL=1
$LOG_LEVEL_ALL=0
$LOG_LEVEL_INFO=1
$LOG_LEVEL_WARN=1
$LOG_LEVEL_ERROR=1
$LOG_LEVEL_FATAL=1
$LOG_LEVEL_DEBUG=0
$LOG_LEVEL_TRACE=0
# Log Directory
$LD=logs
# Module log
$MODULE_LOG=%$SCRIPT_NAME%_%COMPUTERNAME%.log
# Image Server Information
# No [0] Yes [1]
$IMAGE_USE=1
# Image Directory
$IMAGE_DIRECTORY=%PROGRAMDATA%\CloneZilla
# Image file name
$IMAGE_FILE=CloneZilla_Image.txt
# Image type
# Base = standard Windows image
# <Specialized_Name> = a specific windows image, e.g. scientific
$IMAGE_TYPE=Base
...