-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"version": "1.4.2.0", | ||
"description": "PS-Tool zur Darstellung von Applikationspfaden mit Zylindern.", | ||
"homepage": "https://icarus-consult.de", | ||
"license": "non-free", | ||
"url": "//promptly-apps.icarus-consult.local/Software/TMXTOOLS/Transfertool/1.4.2.0/Transfertool_1.4.2.0.zip", | ||
"autoupdate": { | ||
"url": "//promptly-apps.icarus-consult.local/Software/TMXTOOLS/WuDoku/{version_placeholder}/WuDoku_{version_placeholder}.zip" | ||
}, | ||
"pre_install": [ | ||
"if(Get-Process -Name \"tune\" -ErrorAction SilentlyContinue) {", | ||
" Write-Error \"Process Simulate is running. Please close it to continue.\"", | ||
" exit 1", | ||
" }" | ||
], | ||
"post_install": [ | ||
"# run install.ps1", | ||
"Set-Variable -Name \"PSScriptRoot\" -Value $dir -Scope Script", | ||
"#.\\install.ps1", | ||
"$command = \"$dir\\install.ps1\"", | ||
"Invoke-Expression \"& $command\"" | ||
], | ||
"pre_uninstall": [ | ||
"if(Get-Process -Name \"tune\" -ErrorAction SilentlyContinue) {", | ||
" Write-Error \"Process Simulate is running. Please close it to continue.\"", | ||
" exit 1", | ||
" }", | ||
"# run uninstall.ps1", | ||
"$command = \"$dir\\uninstall.ps1\"", | ||
"Invoke-Expression \"& $command\"" | ||
], | ||
"post_uninstall": [] | ||
} |