Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

12,798

Downloads of v 1.0.0-beta1:

432

Last Update:

02 Mar 2017

Package Maintainer(s):

Software Author(s):

  • Roemer

Tags:

ui automation uia2 uia3 uia system.windows.automation inspect

FlaUInspect

This is a prerelease version of FlaUInspect.

  • 1
  • 2
  • 3

1.0.0-beta1 | Updated: 02 Mar 2017

Downloads:

12,798

Downloads of v 1.0.0-beta1:

432

Maintainer(s):

Software Author(s):

  • Roemer

FlaUInspect 1.0.0-beta1

This is a prerelease version of FlaUInspect.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install FlaUInspect, run the following command from the command line or from PowerShell:

>

To upgrade FlaUInspect, run the following command from the command line or from PowerShell:

>

To uninstall FlaUInspect, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade flauinspect -y --source="'INTERNAL REPO URL'" --version="'1.0.0-beta1'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade flauinspect -y --source="'INTERNAL REPO URL'" --version="'1.0.0-beta1'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install flauinspect
  win_chocolatey:
    name: flauinspect
    version: '1.0.0-beta1'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'flauinspect' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.0-beta1'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller flauinspect
{
    Name        = "flauinspect"
    Version     = "1.0.0-beta1"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'flauinspect':
  ensure          => '1.0.0-beta1',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

This application allows to inspect Windows applications with Microsoft UIA (UI Automation) and shows how UIA sees the application.


tools\CHANGELOG.md
# Changelog

## vNext (xxxx-xx-xx)

### Breaking changes
  * [Core] Merged Table into Grid

### Enhancements
  * [Inspect] Added Table Patterns support
  * [Code] Various code cleanups

### Bug fixes
  * None yet

## 0.6.2 (2017-02-10)

### Enhancements
  * [Core] Set move mouse to false by default
  * [Core] Added NoScroll ScrollPatternConstant for SetScrollPercent
  * [Inspect] Made supported patterns bold, added more pattern details
  * [Core] Added GetAllTopLevelWindows to Application
  
### Bug fixes
  * [Core] Fixed AndCondition.ToString

## 0.6.1 (2016-12-15)

### Breaking changes
  * Made ModalWindows a property

### Enhancements
  * Walk the parents to get a FrameworkType if no FrameWorkType was found
  * Added XAML FrameworkType (UWP apps)
  * Implemented WPF Popup
  * Fixed single items added multiple times (FlaUInspect)
  * Added some more pattern information (FlaUInspect)

### Bug fixes
  * Fixed UIA2 tree walker
  * Fixed role and state of LegacyIAccessiblePattern

## 0.6.0 (2016-11-11)

### Enhancements
  * Added .NET 3.5 and 4.0 versions of FlaUI

## 0.5.2 (2016-11-11)

### Enhancements
  * Added more convenience methods to chain the searching
  * Added search methods without conditions
  * Theoretical support for Win32 scrollbars

## 0.5.1 (2016-11-03)

### Enhancements
  * Added more convenience methods to chain the searching

## 0.5.0 (2016-11-03)

### Breaking changes
  * Removed made mouse and keyboard static, removed their interfaces
  * Renamed ListView to Grid
  * Renamed the retry methods

### Enhancements
  * Implemented Table
  * Added caching to TreeWalkers

### Bug fixes
  * Further reduced the amount of classes created

## 0.4.1 (2016-10-31)

### Enhancements
  * Implemented all text patterns
  * Exposed all property, event and textAttrbute ids
  * Implemented ScrollBars
  * Changed the OverlayManager to WinForms (faster and needs less memory than the WPF one)

### Bug fixes
  * Reduced the amount of classes created

## 0.4.0 (2016-10-20)

### Enhancements
  * Exposed AddToSelection and RemoveFromSelection
  * Improved the logic for ContextMenu finding (you can manually pass the desired logic)
  * Implemented ComboBox
  * Implemented TreeWalkers

### Bug fixes
  * Fixed a bug with the retry to speed things up quite a bit

## 0.3.4 (2016-10-18)

### Enhancements
  * Added some convenience methods for searching

### Bug fixes
  * Tests now run on German Windows
  * ControlType is now properly reported for UIA2
  * DoubleClick now does a real double click

## 0.3.3 (2016-10-14)

### Enhancements
  * Added many more patterns
  * Implemented ContextMenu on Window
  * Implemented ListView
  * Added True-/FalseCondition

### Bug fixes
  * Fixed UIA3 package to correctly install the interop assembly

## 0.3.2 (2016-10-07)

### Bug fixes

  * Fixed UIA3 package to correctly install the interop assembly
tools\FlaUInspect.exe
md5: 99B06D8C0BD07676B3677AAAFAE54CCC | sha1: F7A655BC6DB91969AA6907657A43F62273B62380 | sha256: D551DBFD32E2E79D4BAB21A0AD01B265D6BEBA6CA98D28242F10CD00516C3384 | sha512: 7AE2980AFF1E33ECEAC91E5B94D1E49B867015B239DD96FD8C12545B87997862B414B4DE495C51D09794234FBC28E131205BF9A1484CCE267548AD2D1CD1F63B
tools\FlaUInspect.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
  </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="Libs" />
    </assemblyBinding>
  </runtime>
</configuration>
tools\Libs\FlaUI.Core.dll
md5: 9D5DC157616AC32CAD0DD90E368D669A | sha1: 8EB617146014F4B2292E7CEBC40CC9E8C2AEBA3D | sha256: 1102FB909531B1F0E2FA2F471E6934C6DC4D554CA65B83E0BD7BDEAB1842246C | sha512: 0CCE86C2D7AF05D42A37A685DC751B245CA06A2B03835DD0FABDD55F6D1FAAC59E7DE70FB8C9291147A4606AEBC9831FF1608BF34472BE4CABD1FA2A0935DE18
tools\Libs\FlaUI.UIA2.dll
md5: 692E9D2990F3294A5A52EBDCD4E8650E | sha1: 3145D5BAD044DE0D053BC6532F96C5A94942E11C | sha256: CB346B8E5288A7909FD535D90BA06A12DCCF8B358B1CE990484F868922FB392F | sha512: C22CA511DE15C9DCF4B1A0AE17F6410413E2B3EEC06D88BE6DEFBF81C1B3528C1D64CD6ED502FD45535F542EBD6F594882F85C97BC7020F8D7DF1FB29B9E4452
tools\Libs\FlaUI.UIA3.dll
md5: 1191E68116793DC6B67A8ABF6E5948B9 | sha1: 14E6C1198BB5715A5C4C3326772B8EA3B8F069BC | sha256: 24D0740484ECE987EE0E89E897FDDC5BCAA33718C9CD8FB1D8009A54CE298179 | sha512: 55066D5B6EB6944E831DC2E738FC6F6AAE2ACEF7269D5EAA2847BE2F3257023D0B012E1FE3CE759BB9791EC5101A2CB23A894FCF033C0A96260792AFF578289F
tools\Libs\interop.UIAutomationCore.dll
md5: DC8B29AE39384EE114329FC331F54644 | sha1: 1F1E52CE7A07A651930B931B4D16411BDE9EFEA4 | sha256: C5A7A5479C3DBE0A97F52AF8AE98927A62F19A08715620D289D946F737769DE3 | sha512: EBF7C168569B6E8B4F42D345A529797483462B168FD72812C903C9F76E1340BDDBB77C77F5EAEA5B1FFF97FE57B5D35C3B9ADB8B81C0C1BF55D60FEAE6BFC10F
tools\LICENSE.txt
The MIT License (MIT)

Copyright (c) 2016-2017 Roman

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
The binaries can be downloaded from https://github.com/Roemer/FlaUI/releases and compared with the ones included in this package.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
FlaUInspect 1.2.0 3149 Wednesday, May 24, 2017 Approved
FlaUInspect 1.0.0 466 Thursday, April 13, 2017 Approved
FlaUInspect 1.0.0-rc1 420 Thursday, March 23, 2017 Exempted
FlaUInspect 1.0.0-beta3 415 Tuesday, March 14, 2017 Exempted
FlaUInspect 1.0.0-beta2 408 Monday, March 13, 2017 Exempted
FlaUInspect 1.0.0-beta1 432 Thursday, March 2, 2017 Exempted
FlaUInspect 0.6.2 444 Friday, February 10, 2017 Approved
FlaUInspect 0.6.1 434 Tuesday, December 20, 2016 Approved

This package has no dependencies.

Discussion for the FlaUInspect Package

Ground Rules:

  • This discussion is only about FlaUInspect and the FlaUInspect 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 FlaUInspect, 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.
comments powered by Disqus