Skip to content

Commit ceca58f

Browse files
authored
MTechWare's App | 0.0.1
0 parents  commit ceca58f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

apps.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"version": "1.0.0",
3+
"lastUpdated": "2025-08-15",
4+
"apps": [
5+
{
6+
"id": "wintool",
7+
"name": "WinTool",
8+
"description": "Comprehensive Windows system management and optimization tool with advanced features for power users",
9+
"icon": "fas fa-tools",
10+
"path": "WinTool.exe",
11+
"category": "System Tools",
12+
"version": "0.3.7wb",
13+
"managed": true,
14+
"installScript": "irm https://raw.githubusercontent.com/MTechWare/wintool/refs/heads/main/WinTool_Installer.ps1 | iex",
15+
"updateScript": "New-Item -ItemType Directory -Path \"$env:LOCALAPPDATA\\MTechWare\\WinTool\" -Force | Out-Null; $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri \"https://github.com/MTechWare/wintool/releases/download/release/WinTool.exe\" -OutFile \"$env:LOCALAPPDATA\\MTechWare\\WinTool\\WinTool.exe\" -UseBasicParsing",
16+
"uninstallScript": "try { Get-Process -Name 'WinTool' -ErrorAction SilentlyContinue | ForEach-Object { $_.CloseMainWindow(); Start-Sleep -Seconds 2; if (!$_.HasExited) { $_.Kill() } } } catch { }; Start-Sleep -Seconds 1; Remove-Item -Path $env:LOCALAPPDATA\\MTechWare\\WinTool -Recurse -Force",
17+
"installPath": "%LOCALAPPDATA%\\MTechWare\\WinTool\\WinTool.exe",
18+
"uninstallPath": "%LOCALAPPDATA%\\MTechWare\\WinTool",
19+
"tags": [
20+
"system",
21+
"optimization",
22+
"cleanup",
23+
"registry",
24+
"windows"
25+
]
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)