2022-10-18 08:08:23 -05:00
|
|
|
{
|
2023-05-09 13:14:27 -05:00
|
|
|
"WPFFeaturesdotnet": {
|
|
|
|
"feature": [
|
|
|
|
"NetFx4-AdvSrvs",
|
|
|
|
"NetFx3"
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeatureshyperv": {
|
|
|
|
"feature": [
|
|
|
|
"HypervisorPlatform",
|
|
|
|
"Microsoft-Hyper-V-All",
|
|
|
|
"Microsoft-Hyper-V",
|
|
|
|
"Microsoft-Hyper-V-Tools-All",
|
|
|
|
"Microsoft-Hyper-V-Management-PowerShell",
|
|
|
|
"Microsoft-Hyper-V-Hypervisor",
|
|
|
|
"Microsoft-Hyper-V-Services",
|
|
|
|
"Microsoft-Hyper-V-Management-Clients"
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"Start-Process -FilePath cmd.exe -ArgumentList '/c bcdedit /set hypervisorschedulertype classic' -Wait"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeatureslegacymedia": {
|
|
|
|
"feature": [
|
|
|
|
"WindowsMediaPlayer",
|
|
|
|
"MediaPlayback",
|
|
|
|
"DirectPlay",
|
|
|
|
"LegacyComponents"
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeaturewsl": {
|
|
|
|
"feature": [
|
|
|
|
"VirtualMachinePlatform",
|
|
|
|
"Microsoft-Windows-Subsystem-Linux"
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
2023-10-19 17:12:55 -05:00
|
|
|
|
2023-05-09 13:14:27 -05:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeaturenfs": {
|
|
|
|
"feature": [
|
|
|
|
"ServicesForNFS-ClientOnly",
|
|
|
|
"ClientForNFS-Infrastructure",
|
|
|
|
"NFS-Administration"
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"nfsadmin client stop
|
|
|
|
Set-ItemProperty -Path 'HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default' -Name 'AnonymousUID' -Type DWord -Value 0
|
|
|
|
Set-ItemProperty -Path 'HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default' -Name 'AnonymousGID' -Type DWord -Value 0
|
|
|
|
nfsadmin client start
|
|
|
|
nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i
|
|
|
|
"
|
|
|
|
]
|
2024-01-15 11:32:19 -06:00
|
|
|
},
|
|
|
|
"WPFFeatureEnableSearchSuggestions": {
|
|
|
|
"feature": [
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"
|
|
|
|
If (!(Test-Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer')) {
|
|
|
|
New-Item -Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer' -Force | Out-Null
|
|
|
|
}
|
|
|
|
New-ItemProperty -Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer' -Name 'DisableSearchBoxSuggestions' -Type DWord -Value 0 -Force
|
|
|
|
Stop-Process -name explorer -force
|
|
|
|
"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeatureDisableSearchSuggestions": {
|
|
|
|
"feature": [
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"
|
|
|
|
If (!(Test-Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer')) {
|
|
|
|
New-Item -Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer' -Force | Out-Null
|
|
|
|
}
|
|
|
|
New-ItemProperty -Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer' -Name 'DisableSearchBoxSuggestions' -Type DWord -Value 1 -Force
|
|
|
|
Stop-Process -name explorer -force
|
|
|
|
"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeatureRegBackup": {
|
|
|
|
"feature": [
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"
|
|
|
|
New-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager' -Name 'EnablePeriodicBackup' -Type DWord -Value 1 -Force
|
|
|
|
New-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager' -Name 'BackupCount' -Type DWord -Value 2 -Force
|
|
|
|
$action = New-ScheduledTaskAction -Execute 'schtasks' -Argument '/run /i /tn \"\\Microsoft\\Windows\\Registry\\RegIdleBackup\"'
|
|
|
|
$trigger = New-ScheduledTaskTrigger -Daily -At 00:30
|
|
|
|
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System'
|
|
|
|
"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeatureEnableLegacyRecovery": {
|
|
|
|
"feature": [
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"
|
|
|
|
If (!(Test-Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood')) {
|
|
|
|
New-Item -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood' -Force | Out-Null
|
|
|
|
}
|
|
|
|
New-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood' -Name 'Enabled' -Type DWord -Value 1 -Force
|
|
|
|
Start-Process -FilePath cmd.exe -ArgumentList '/c bcdedit /Set {Current} BootMenuPolicy Legacy' -Wait
|
|
|
|
"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"WPFFeatureDisableLegacyRecovery": {
|
|
|
|
"feature": [
|
|
|
|
],
|
|
|
|
"InvokeScript": [
|
|
|
|
"
|
|
|
|
If (!(Test-Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood')) {
|
|
|
|
New-Item -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood' -Force | Out-Null
|
|
|
|
}
|
|
|
|
New-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood' -Name 'Enabled' -Type DWord -Value 0 -Force
|
|
|
|
Start-Process -FilePath cmd.exe -ArgumentList '/c bcdedit /Set {Current} BootMenuPolicy Standard' -Wait
|
|
|
|
"
|
|
|
|
]
|
2023-05-09 13:14:27 -05:00
|
|
|
}
|
2022-10-18 08:08:23 -05:00
|
|
|
}
|