Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
flick9000 committed Jan 12, 2025
1 parent 6a476d2 commit 499f561
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 0 deletions.
Binary file added online/icons/tools/sfc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions online/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,23 @@ <h1>Create Restore Point</h1>
</div>
</div>

<div class="content-entry">
<div>
<img src="icons/tools/sfc.png" alt="">
<div>
<h1>Verify System Integrity</h1>
<p>Runs the 'sfc /scannow' command to verify the system files integrity.</p>
</div>
</div>
<div class="checkbox-wrapper">
<span class="indicator" id="indicator">Off</span>
<label class="switch">
<input id="sfc" type="checkbox">
<span class="slider"></span>
</label>
</div>
</div>

<div class="content-entry">
<div>
<img src="icons/tools/key.png" alt="">
Expand Down
6 changes: 6 additions & 0 deletions online/js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,10 @@ document.addEventListener("DOMContentLoaded", function() {
"echo -- Emptying Recycle Bin",
'PowerShell -ExecutionPolicy Unrestricted -Command "$bin = (New-Object -ComObject Shell.Application).NameSpace(10); $bin.items() | ForEach {; Write-Host "^""Deleting $($_.Name) from Recycle Bin"^""; Remove-Item $_.Path -Recurse -Force; }"',
],
sfc: [
"echo -- Running SFC",
"sfc /scannow",
],
ultimateperformance: [
"echo -- Activating Ultimate Performance Mode",
"powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61",
Expand Down Expand Up @@ -989,6 +993,8 @@ document.addEventListener("DOMContentLoaded", function() {
{ id: "cleantemp", type: "cleantemp" },
{ id: "cleanmgr", type: "cleanmgr" },
{ id: "emptyrecycle", type: "emptyrecycle" },
{ id: "sfc", type: "sfc" },


{ id: "ultimateperformance", type: "ultimateperformance" },
{ id: "manualservices", type: "manualservices" },
Expand Down
Binary file added winscript-app/icons/tools/sfc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions winscript-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,23 @@ <h1>Create Restore Point</h1>
</div>
</div>

<div class="content-entry">
<div>
<img src="icons/tools/sfc.png" alt="">
<div>
<h1>Verify System Integrity</h1>
<p>Runs the 'sfc /scannow' command to verify the system files integrity.</p>
</div>
</div>
<div class="checkbox-wrapper">
<span class="indicator" id="indicator">Off</span>
<label class="switch">
<input id="sfc" type="checkbox">
<span class="slider"></span>
</label>
</div>
</div>

<div class="content-entry">
<div>
<img src="icons/tools/key.png" alt="">
Expand Down
6 changes: 6 additions & 0 deletions winscript-app/js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,10 @@ document.addEventListener("DOMContentLoaded", function() {
"echo -- Emptying Recycle Bin",
'PowerShell -ExecutionPolicy Unrestricted -Command "$bin = (New-Object -ComObject Shell.Application).NameSpace(10); $bin.items() | ForEach {; Write-Host "^""Deleting $($_.Name) from Recycle Bin"^""; Remove-Item $_.Path -Recurse -Force; }"',
],
sfc: [
"echo -- Running SFC",
"sfc /scannow",
],
ultimateperformance: [
"echo -- Activating Ultimate Performance Mode",
"powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61",
Expand Down Expand Up @@ -989,6 +993,8 @@ document.addEventListener("DOMContentLoaded", function() {
{ id: "cleantemp", type: "cleantemp" },
{ id: "cleanmgr", type: "cleanmgr" },
{ id: "emptyrecycle", type: "emptyrecycle" },
{ id: "sfc", type: "sfc" },


{ id: "ultimateperformance", type: "ultimateperformance" },
{ id: "manualservices", type: "manualservices" },
Expand Down

0 comments on commit 499f561

Please sign in to comment.