runspace fixes (#288)

* cleanup and rebase test (#244)

* Test 2022 (#240)

* Merge Gaming Tweaks and Temp Files Addition (#193)

* Update README.md

* QOL Terminal - Win Update Revamp

* Fix Flickering

* Quick Fix - UAC Property error

* Network Performance Tweak

* Gaming Tweaks

* Delete Temp Files Addition

* Delete Temp Files GUI

* Added LibreOffice to applications.json and winutil.ps1 to fix #171 (#178)

* Fixes missing LibreOffice (#171)

Added missing LibreOffice to fix issue #171.

* Fixes missing LibreOffice (#171)

Added LibreOffice to winutil.ps1 to fix issue #171.

* Create `FUNDING.yml` (#182)

* Longer Thing (#186)

* redid the whole thing

* man

* Tweaks to change

I like most of these but adding the UAC back in, Disabling Long Paths, and removing TPM properties aren't approved in the default essential tweaks.
This should have been put into the Undo all portion

Co-authored-by: Chris Titus <dfm.titus@gmail.com>

* Move winget install to user temp folder (#192)

* Move winget install to user temp folder

* Fix path variable

Co-authored-by: Chris Titus <dfm.titus@gmail.com>

* Disable UAC Commit

* Disk Cleanup Addition

* added check for checking if path exists for TPM (#195)

* Disable Gamebar Presence Writer (#202)

* Fixed GameDVR Code

Registry values were not changing after applying GameDVR tweaks.
Because all the registry tweaks were under if condition in the code.
Modified that and now working properly.

* Diable Gamebar Presence Writer

Gamebar Presence Writer causes stutter in games, while running in
background.
Deactivated the trigger of Gamebar Presence Writer to resolve this.

* Added Simplewall for Install Requested Feature ChrisTitusTech#56 (#205)

* Added KDENLive Video Editor for Install Requested Feature #38 (#206)

* Added WizTree for Install Requested Feature #42 (#207)

* Added Viber for Install Requested Feature ChrisTitusTech/winutil#102 (#208)

* Added Tor Browser for Install (#209)

* Added Internet Download Manager for Install (#210)

* Added Glary Utilities for install (#214)

* Added option to Disable Notifications and Action Center (#220)

* added option for set classic right click menu (#223)

* Create Edge_Removal.bat

* Added option for remove microsoft edge (#224)

* Added option for remove microsoft edge

* Update winutil.ps1

Co-authored-by: Chris Titus <dfm.titus@gmail.com>

* Added Dark Mode (#225)

* Added option to remove cortana (#226)

Co-authored-by: Chris Titus <dfm.titus@gmail.com>

* Putting it all in the same console window

* fix missing bracket

Co-authored-by: hoffmanra <33332650+hoffmanra@users.noreply.github.com>
Co-authored-by: Robin Avery <robin@ribbanya.dev>
Co-authored-by: Sarah <45071533+PrincessAkira@users.noreply.github.com>
Co-authored-by: DeveloperDurp <developerdurp@durp.info>
Co-authored-by: Dipayan Biswas <108147735+d1payan@users.noreply.github.com>
Co-authored-by: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>

* Fix Disk Cleanup Label

* Update winutil.ps1

Co-authored-by: hoffmanra <33332650+hoffmanra@users.noreply.github.com>
Co-authored-by: Robin Avery <robin@ribbanya.dev>
Co-authored-by: Sarah <45071533+PrincessAkira@users.noreply.github.com>
Co-authored-by: DeveloperDurp <developerdurp@durp.info>
Co-authored-by: Dipayan Biswas <108147735+d1payan@users.noreply.github.com>
Co-authored-by: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>

* Create winget.ps1 (#281)

* Update FUNDING.yml

* fixup test (#284)

* Create winget.ps1

* Test 2022 (#282)

* add store appx gui

* emergency fix from bad values from runspace merge

* fix brave and task hang

* syntax fix

* syntax fix

* task error check

* task error check

* task error check

* task error check

Co-authored-by: hoffmanra <33332650+hoffmanra@users.noreply.github.com>
Co-authored-by: Robin Avery <robin@ribbanya.dev>
Co-authored-by: Sarah <45071533+PrincessAkira@users.noreply.github.com>
Co-authored-by: DeveloperDurp <developerdurp@durp.info>
Co-authored-by: Dipayan Biswas <108147735+d1payan@users.noreply.github.com>
Co-authored-by: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>
This commit is contained in:
Chris Titus 2022-10-18 18:22:45 -04:00 committed by GitHub
parent a29a27eb2c
commit 614b9758dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -25,7 +25,7 @@
"winget": "BlenderFoundation.Blender"
},
"Installbrave": {
"winget": "BraveSoftware.BraveBrowser"
"winget": "Brave.Brave"
},
"Installchrome": {
"winget": "Google.Chrome"

View File

@ -584,6 +584,8 @@ Version 0.1
Write-Logs -Level INFO -Message "Starting ScheduledTask Modification" -LogPath $sync.logfile
$ScheduledTaskToModify | ForEach-Object {
Get-ScheduledTask -TaskName "$($psitem.name)" -ErrorAction SilentlyContinue -OutVariable checktask
if ($checktask) {
Try{
if($($psitem.State) -eq "Disabled"){
Disable-ScheduledTask -TaskName "$($psitem.name)" -ErrorAction Stop | Out-Null
@ -594,6 +596,7 @@ Version 0.1
Write-Logs -Level INFO -Message "Scheduled Task $($psitem.name) set to $($psitem.State)" -LogPath $sync.logfile
}Catch{Write-Logs -Level ERROR -Message "Unable to set Scheduled Task $($psitem.name) set to $($psitem.State)" -LogPath $sync.logfile}
}
}
Write-Logs -Level INFO -Message "Finished setting ScheduledTasks" -LogPath $sync.logfile
}