Downloads:
10,562
Downloads of v 5.5.0.1661:
8
Last Update:
09 Apr 2025
Published Date:
09 Apr 2025
Package Maintainer(s):
Software Author(s):
- VSoft Technologies Pty. Ltd.
Tags:
automise administration automation cmd cli admin trial- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Automise Run-time (Install)
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
5.5.0.1661 | Updated: 09 Apr 2025
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
10,562
Downloads of v 5.5.0.1661:
8
Published:
09 Apr 2025
Maintainer(s):
Software Author(s):
- VSoft Technologies Pty. Ltd.
Automise Run-time (Install) 5.5.0.1661
(Waiting for Maintainer to take corrective action)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by VSoft Technologies Pty. Ltd. The inclusion of VSoft Technologies Pty. Ltd. trademark(s), if any, upon this webpage is solely to identify VSoft Technologies Pty. Ltd. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
Automise CMD provides the command line runner for Automise.
The package will download and install Automise with the default settings. A 30 day trail is included for each new installation after which a licence is required from our store.
Built In Actions
Over 350 actions are included for common Windows tasks. Notiable groups of these actions include;
- Logic - If..Then, Try..Catch..Finally, Switch, While, Iterator, and Async
- File & directory - Search, Read, Update, and Delete
- Text file - Search, Replace, Create, Read, Update, and Delete
- Database - ADO Execute SQL, Stored Procedure, Backup
- Notification - Email (SMTP), MSN, ICQ, and Telnet
- Execution - Command line, PowerShell, Remote Execution, and PSTools
- Software Maintenance - Install, Uninstall, Reinstall, MSI
- Media - CD/DVD/Bluray
- Upload & download - Web Deploy, EC2, IIS, FTP, and SFTP
- Configuration - Active Directory, .Net, HyperV, VWWare, XML, Windows OS, and IIS
Custom Scripting
All actions provide customisation through settings as well as scripting events. These events allow custom scripted behavior to be performed. Supported languages for scripts are JScript, VBScript, PowerShell, and IronPython.
Custom Actions - Action Studio
Custom actions are used for large or complex custom scripting requirements. These custom actions can be backed by scripting logic or C# implementations. Custom action styles that can be written include;
- Standard Actions - Simple actions that don't call an external tool.
- Execute Actions - Actions that call an external tool to perform the desired task.
- Iterator Actions - Tasks that require their repetition to be simplified in builds.
$ErrorActionPreference = 'Stop'; #Stop on all errors
$packageName = 'automiseruntime' #Unique name of the package
$registryUninstallerKeyName = '{5D4A6D76-CD8D-4F39-B3A3-412C8FA079E9}_is1' #The uninstall registry key for our application. Defined and setup by the installer exe.
$installerType = 'EXE' #Our uninstaller is also an executable
$silentArgs = '/SILENT /VERYSILENT /SUPPRESSMSGBOXES' #Silent arguments to make the uninstaller not show any GUI
$validExitCodes = @(0) #Valid return codes from the uninstaller for success
$shouldUninstall = $true; #We should uninstall if we detect no errors.
#Keys where our uninstall data is stored in registry
$local_key = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$local_key6432 = "HKCU:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$machine_key = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$machine_key6432 = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
#Try each key. The first to return a valid path, and key get the UninstallString value from it.
$file = @($local_key, $local_key6432, $machine_key, $machine_key6432) `
| ?{ Test-Path $_ } `
| Get-ItemProperty `
| Select-Object -ExpandProperty UninstallString
#If we don't have a valid uninstall executable, then error and don't run uninstall.
if ($file -eq $null -or $file -eq '') {
Write-Host "$packageName has already been uninstalled by other means."
$shouldUninstall = $false
}
#If we are still uninstalling then call chocolatey uninstall package commandlet to run our uninstaller
if ($shouldUninstall) {
Uninstall-ChocolateyPackage -PackageName $packageName -FileType $installerType -SilentArgs $silentArgs -validExitCodes $validExitCodes -File $file
}
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Automise Run-time (Install) 5.5.0.1662 | 57 | Wednesday, April 9, 2025 | Approved | |
Automise Run-time (Install) 5.5.0.1661 | 8 | Wednesday, April 9, 2025 |
Waiting for Maintainer
|
|
Automise Run-time (Install) 5.0.0.1613 | 39 | Monday, November 18, 2024 | Approved | |
Automise Run-time (Install) 5.0.0.1603 | 31 | Monday, September 16, 2024 | Approved | |
Automise Run-time (Install) 5.0.0.1593 | 45 | Tuesday, July 16, 2024 | Approved | |
Automise Run-time (Install) 5.0.0.1580 | 51 | Sunday, May 19, 2024 | Approved | |
Automise Run-time (Install) 5.0.0.1570 | 36 | Thursday, May 9, 2024 | Approved | |
Automise Run-time (Install) 5.0.0.1490 | 99 | Tuesday, August 1, 2023 | Approved | |
Automise Run-time (Install) 5.0.0.1475 | 128 | Tuesday, February 21, 2023 | Approved | |
Automise Run-time (Install) 5.0.0.1407 | 74 | Tuesday, August 30, 2022 | Approved | |
Automise Run-time (Install) 5.0.0.1386 | 89 | Tuesday, May 3, 2022 | Approved | |
Automise Run-time (Install) 5.0.0.1356 | 106 | Monday, January 24, 2022 | Approved | |
Automise Run-time (Install) 5.0.0.1347 | 97 | Tuesday, November 23, 2021 | Approved | |
Automise Run-time (Install) 5.0.0.1341 | 98 | Thursday, September 9, 2021 | Approved | |
Automise Run-time (Install) 5.0.0.1325 | 108 | Monday, July 5, 2021 | Approved | |
Automise Run-time (Install) 5.0.0.1310 | 121 | Monday, April 12, 2021 | Approved | |
Automise Run-time (Install) 5.0.0.1296 | 136 | Friday, January 29, 2021 | Approved | |
Automise Run-time (Install) 5.0.0.1282 | 147 | Monday, December 7, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1271 | 114 | Wednesday, November 4, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1258 | 155 | Wednesday, September 30, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1252 | 145 | Thursday, August 27, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1250 | 167 | Tuesday, August 25, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1236 | 153 | Tuesday, July 21, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1233 | 150 | Tuesday, July 14, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1209 | 195 | Wednesday, May 27, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1194 | 192 | Wednesday, April 29, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1177 | 281 | Tuesday, February 4, 2020 | Approved | |
Automise Run-time (Install) 5.0.0.1158 | 221 | Friday, November 29, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.1145 | 164 | Friday, November 15, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.1129 | 229 | Tuesday, October 15, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.1121 | 218 | Tuesday, October 1, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.1120 | 227 | Tuesday, October 1, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.1075 | 270 | Monday, March 18, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.1070 | 193 | Thursday, February 28, 2019 | Approved | |
Automise Run-time (Install) 5.0.0.884 | 419 | Tuesday, November 21, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.859 | 391 | Tuesday, September 5, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.852 | 412 | Thursday, August 24, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.748 | 442 | Monday, March 27, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.747 | 412 | Thursday, March 23, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.732 | 390 | Friday, March 3, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.723 | 404 | Tuesday, February 14, 2017 | Approved | |
Automise Run-time (Install) 5.0.0.630 | 403 | Tuesday, September 13, 2016 | Approved | |
Automise Run-time (Install) 5.0.0.421 | 429 | Tuesday, March 29, 2016 | Approved | |
Automise Run-time (Install) 5.0.0.420 | 400 | Tuesday, March 29, 2016 | Approved | |
Automise Run-time (Install) 5.0.0.419-beta | 454 | Tuesday, March 29, 2016 | Exempted | |
Automise Run-time (Install) 5.0.0.343-beta | 437 | Wednesday, February 3, 2016 | Exempted | |
Automise Run-time (Install) 5.0.0.315-beta | 433 | Friday, January 29, 2016 | Exempted |
VSoft Technologies Pty. Ltd. 1997-Present
Release notes are located at Automise Version History
This package has no dependencies.
Ground Rules:
- This discussion is only about Automise Run-time (Install) and the Automise Run-time (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Automise Run-time (Install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
vsoft (maintainer) on 09 Apr 2025 01:17:11 +00:00:
User 'vsoft' (maintainer) submitted package.
chocolatey-ops (reviewer) on 09 Apr 2025 01:49:46 +00:00:
automiseruntime has passed automated validation. It may have or may still fail other checks like testing (verification).
Congratulations! This package passed automatic validation review without flagging on any issues the validator currently checks. A human review could still turn up issues a computer may not easily find.
chocolatey-ops (reviewer) on 09 Apr 2025 06:20:19 +00:00:
automiseruntime has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/a7d7eab9ade341260f2e62366617cb37 for details.
The package status will be changed and will be waiting on your next actions.
chocolatey-ops (reviewer) on 29 Apr 2025 01:49:58 +00:00:
We've found automiseruntime v5.5.0.1661 in a submitted status and waiting for your next actions. It has had no updates for 20 or more days since a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.
Take action:
If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.
Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.