You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
358 B
12 lines
358 B
9 years ago
|
# Description:
|
||
|
# This script disables unwanted Windows features. If you do not want to
|
||
|
# disable certain features comment out the corresponding lines below.
|
||
|
|
||
|
$features = @(
|
||
|
"Internet-Explorer-Optional-amd64"
|
||
|
"MediaPlayback"
|
||
|
"WindowsMediaPlayer"
|
||
|
"WorkFolders-Client"
|
||
|
)
|
||
|
|
||
|
Disable-WindowsOptionalFeature -Online -NoRestart -FeatureName $features
|