Downloads:
13,186
Downloads of v 5.5.0.1661:
10
Last Update:
09 Apr 2025
Published Date:
09 Apr 2025
Package Maintainer(s):
Software Author(s):
- VSoft Technologies Pty. Ltd.
Tags:
automise administration automation ide 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 (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:
13,186
Downloads of v 5.5.0.1661:
10
Published:
09 Apr 2025
Maintainer(s):
Software Author(s):
- VSoft Technologies Pty. Ltd.
Automise (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 provides a graphical IDE and command line to create, debug, and run Windows administrative tasks. Automise includes many actions to perform common Windows administration tasks.
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 = 'automise' #Unique name of the package
$registryUninstallerKeyName = '{9A60B92A-77EC-44E5-8DC9-4F63798010E8}_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 (Install) 5.5.0.1662 | 59 | Wednesday, April 9, 2025 | Approved | |
Automise (Install) 5.5.0.1661 | 10 | Wednesday, April 9, 2025 |
Waiting for Maintainer
|
|
Automise (Install) 5.0.0.1613 | 44 | Monday, November 18, 2024 | Approved | |
Automise (Install) 5.0.0.1603 | 35 | Monday, September 16, 2024 | Approved | |
Automise (Install) 5.0.0.1593 | 40 | Tuesday, July 16, 2024 | Approved | |
Automise (Install) 5.0.0.1580 | 50 | Sunday, May 19, 2024 | Approved | |
Automise (Install) 5.0.0.1570 | 34 | Thursday, May 9, 2024 | Approved | |
Automise (Install) 5.0.0.1490 | 88 | Tuesday, August 1, 2023 | Approved | |
Automise (Install) 5.0.0.1475 | 123 | Tuesday, February 21, 2023 | Approved | |
Automise (Install) 5.0.0.1407 | 86 | Tuesday, August 30, 2022 | Approved | |
Automise (Install) 5.0.0.1386 | 105 | Tuesday, May 3, 2022 | Approved | |
Automise (Install) 5.0.0.1356 | 118 | Monday, January 24, 2022 | Approved | |
Automise (Install) 5.0.0.1347 | 114 | Tuesday, November 23, 2021 | Approved | |
Automise (Install) 5.0.0.1341 | 111 | Thursday, September 9, 2021 | Approved | |
Automise (Install) 5.0.0.1325 | 153 | Monday, July 5, 2021 | Approved | |
Automise (Install) 5.0.0.1310 | 121 | Monday, April 12, 2021 | Approved | |
Automise (Install) 5.0.0.1296 | 147 | Friday, January 29, 2021 | Approved | |
Automise (Install) 5.0.0.1282 | 148 | Monday, December 7, 2020 | Approved | |
Automise (Install) 5.0.0.1271 | 124 | Wednesday, November 4, 2020 | Approved | |
Automise (Install) 5.0.0.1258 | 183 | Wednesday, September 30, 2020 | Approved | |
Automise (Install) 5.0.0.1252 | 177 | Thursday, August 27, 2020 | Approved | |
Automise (Install) 5.0.0.1250 | 174 | Tuesday, August 25, 2020 | Approved | |
Automise (Install) 5.0.0.1236 | 183 | Tuesday, July 21, 2020 | Approved | |
Automise (Install) 5.0.0.1233 | 133 | Tuesday, July 14, 2020 | Approved | |
Automise (Install) 5.0.0.1209 | 163 | Wednesday, May 27, 2020 | Approved | |
Automise (Install) 5.0.0.1194 | 191 | Wednesday, April 29, 2020 | Approved | |
Automise (Install) 5.0.0.1177 | 266 | Tuesday, February 4, 2020 | Approved | |
Automise (Install) 5.0.0.1158 | 214 | Friday, November 29, 2019 | Approved | |
Automise (Install) 5.0.0.1145 | 172 | Friday, November 15, 2019 | Approved | |
Automise (Install) 5.0.0.1129 | 185 | Tuesday, October 15, 2019 | Approved | |
Automise (Install) 5.0.0.1121 | 192 | Tuesday, October 1, 2019 | Approved | |
Automise (Install) 5.0.0.1120 | 178 | Tuesday, October 1, 2019 | Approved | |
Automise (Install) 5.0.0.1075 | 318 | Monday, March 18, 2019 | Approved | |
Automise (Install) 5.0.0.1070 | 216 | Thursday, February 28, 2019 | Approved | |
Automise (Install) 5.0.0.1069 | 206 | Thursday, February 28, 2019 | Approved | |
Automise (Install) 5.0.0.1015 | 280 | Tuesday, September 18, 2018 | Approved | |
Automise (Install) 5.0.0.995 | 283 | Wednesday, July 25, 2018 | Approved | |
Automise (Install) 5.0.0.970 | 327 | Thursday, May 17, 2018 | Approved | |
Automise (Install) 5.0.0.884 | 458 | Tuesday, November 21, 2017 | Approved | |
Automise (Install) 5.0.0.859 | 453 | Tuesday, September 5, 2017 | Approved | |
Automise (Install) 5.0.0.852 | 381 | Thursday, August 24, 2017 | Approved | |
Automise (Install) 5.0.0.748 | 478 | Monday, March 27, 2017 | Approved | |
Automise (Install) 5.0.0.747 | 426 | Thursday, March 23, 2017 | Approved | |
Automise (Install) 5.0.0.732 | 408 | Friday, March 3, 2017 | Approved | |
Automise (Install) 5.0.0.723 | 416 | Tuesday, February 14, 2017 | Approved | |
Automise (Install) 5.0.0.630 | 466 | Tuesday, September 13, 2016 | Approved | |
Automise (Install) 5.0.0.609 | 484 | Friday, August 19, 2016 | Approved | |
Automise (Install) 5.0.0.591 | 502 | Friday, July 29, 2016 | Approved | |
Automise (Install) 5.0.0.421 | 439 | Tuesday, March 29, 2016 | Approved | |
Automise (Install) 5.0.0.420 | 375 | Tuesday, March 29, 2016 | Approved | |
Automise (Install) 5.0.0.419-beta | 448 | Tuesday, March 29, 2016 | Approved | |
Automise (Install) 5.0.0.343-beta | 427 | Wednesday, February 3, 2016 | Approved | |
Automise (Install) 5.0.0.315-beta | 455 | Friday, January 29, 2016 | Exempted | |
Automise (Install) 4.0.0.852 | 475 | Friday, January 29, 2016 | Approved |
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 (Install) and the Automise (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 (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:04 +00:00:
User 'vsoft' (maintainer) submitted package.
chocolatey-ops (reviewer) on 09 Apr 2025 01:49:36 +00:00:
automise 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:19:04 +00:00:
automise has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/5f5cadbb2253ce19ec63e67c54bf266b 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:57 +00:00:
We've found automise 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.