Compile Winutil

This commit is contained in:
ChrisTitusTech
2024-08-07 16:57:14 +00:00
committed by github-actions[bot]
parent 9a1fbd77a7
commit ee0a2818b6
19 changed files with 388 additions and 171 deletions

View File

@ -48,7 +48,7 @@ Disables Advanced Boot Options screen that lets you start Windows in advanced tr
}
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
```

View File

@ -48,7 +48,7 @@ Disables web suggestions when searching using Windows Search.
}
New-ItemProperty -Path 'HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer' -Name 'DisableSearchBoxSuggestions' -Type DWord -Value 1 -Force
Stop-Process -name explorer -force
```

View File

@ -48,7 +48,7 @@ Enables Advanced Boot Options screen that lets you start Windows in advanced tro
}
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
```

View File

@ -48,7 +48,7 @@ Enables web suggestions when searching using Windows Search.
}
New-ItemProperty -Path 'HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer' -Name 'DisableSearchBoxSuggestions' -Type DWord -Value 0 -Force
Stop-Process -name explorer -force
```

View File

@ -48,7 +48,7 @@ Enables daily registry backup, previously disabled by Microsoft in Windows 10 18
$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'
```