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

xplorer² Lite

  • 1
  • 2
  • 3

5.4.0.2 | Updated: 11 Oct 2023

Downloads:

6,645

Downloads of v 5.4.0.2:

159

Software Author(s):

  • Zabkat

xplorer² Lite 5.4.0.2

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Passes in the Chocolatey Test Environment, unknown reason for failure in the verifier.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install xplorer² Lite, run the following command from the command line or from PowerShell:

>

To upgrade xplorer² Lite, run the following command from the command line or from PowerShell:

>

To uninstall xplorer² Lite, 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 xplorer2 -y --source="'INTERNAL REPO URL'" [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 xplorer2 -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install xplorer2
  win_chocolatey:
    name: xplorer2
    version: '5.4.0.2'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'xplorer2' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.4.0.2'
end

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


cChocoPackageInstaller xplorer2
{
    Name     = "xplorer2"
    Version  = "5.4.0.2"
    Source   = "INTERNAL REPO URL"
}

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


package { 'xplorer2':
  ensure   => '5.4.0.2',
  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.

Package Approved

This package was approved by moderator TheCakeIsNaOH on 05 Nov 2023.

Description

xplorer² Lite is utterly affordable file management power.

All the shell goodies from Windows Explorer — none of the hassle! The free, lightweight version of xplorer² offers dual panes and folder tabs for efficient and trouble-free desktop file management.

  • Browse everywhere (all shell namespace)
  • Preview documents, pictures, music, video
  • Side by side views for easy file management
  • Filter and select with wildcards
  • Synchronize folders
  • Manage files with color tags

Freeware license

This free version of xplorer² is for private (home) or academic (school and university) and general non-profit use only. You cannot use it in any commercial context, including but not limited to: corporate, office, military, government etc. All commercial users must obtain a license for the full version.


tools\chocolateyInstall.ahk
; This script will exit after 10 seconds
SetTimer ForceExitAHK, 10000

winWait "xplorer² lite 32 bit Setup", "ONLY for non-profit use"
sleep 100
ControlClick "OK", "xplorer² lite 32 bit Setup"

ExitApp

ForceExitAHK()
{
   SetTimer ForceExitAHK, 0
   ExitApp 10
}
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir   = Split-Path -parent $MyInvocation.MyCommand.Definition
$File = Get-ChildItem $toolsDir -Filter '*.exe' |
               Sort-Object LastWriteTime | 
               Select-Object -Last 1 -ExpandProperty fullname

# silent install requires AutoHotKey
$ahkFile = Join-Path $toolsDir 'chocolateyInstall.ahk'
$ahkProc = Start-Process -FilePath AutoHotkey -ArgumentList "$ahkFile" -PassThru
Write-Debug "AutoHotKey start time:`t$($ahkProc.StartTime.ToShortTimeString())"
Write-Debug "AutoHotKey Process ID:`t$($ahkProc.Id)"

$packageArgs = @{
   packageName    = $env:ChocolateyPackageName
   fileType       = 'EXE'
   File           = $File
   softwareName   = "$env:ChocolateyPackageName*"
   silentArgs     = '/S'
   validExitCodes = @(0)
}
Install-ChocolateyInstallPackage @packageArgs

Remove-Item $File -ea 0 -force

tools\chocolateyUninstall.ahk
; This script will exit after 10 seconds
SetTimer ForceExitAHK, 10000

winWait "xplorer² lite 32 bit Uninstall", "Do you want to remove"
sleep 100
ControlClick "&Yes", "xplorer² lite 32 bit Uninstall"

ExitApp

ForceExitAHK()
{
   SetTimer ForceExitAHK, 0
   ExitApp 10
}
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'

$packageArgs = @{
   packageName   = $env:ChocolateyPackageName
   softwareName  = 'xplorer*lite 32 bit'
   fileType      = 'EXE'
   silentArgs    = '/S'
}

[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($key.Count -eq 1) {
   $key | % { 
      $packageArgs['file'] = "$($_.UninstallString)"

      # silent uninstall requires AutoHotKey
      $toolsDir    = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
      $ahkFile = Join-Path $toolsDir 'chocolateyUninstall.ahk'
      $ahkProc = Start-Process -FilePath AutoHotkey -ArgumentList "$ahkFile" -PassThru
      Write-Debug "AutoHotKey start time:`t$($ahkProc.StartTime.ToShortTimeString())"
      Write-Debug "AutoHotKey Process ID:`t$($ahkProc.Id)"

      Uninstall-ChocolateyPackage @packageArgs
   }
} elseif ($key.Count -eq 0) {
   Write-Warning "$env:ChocolateypackageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
   Write-Warning "$($key.Count) matches found!"
   Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
   Write-Warning "Please alert package maintainer the following keys were matched:"
   $key | % {Write-Warning "- $($_.DisplayName)"}
}
tools\xplorer2_lite_setup.exe
md5: 72FADBE0FB9E0CAF4F90E808E7F1EDFA | sha1: E70BCD4F2EB76808F2DB79C52D4F41D07F67D40A | sha256: 342F6F2F8697769895B242D2BE09913665124D0CC38DAB9B5463EEFCA5A66605 | sha512: 9B82D63EBD3AF0F5605531BCACF0F5F5FF9F3E9EB2BE6A7BA5C713B20C657AE02B628EA59D055CFE47E3DE9159605EB461118D546EE1B2505A02C2BC69FF4FEF
tools\chocolateybeforemodify.ps1
$ErrorActionPreference = 'Stop'

foreach ($process in (Get-Process "$env:ChocolateyPackageName*" -ErrorAction SilentlyContinue)) {
   Stop-Process -Name $process.ProcessName -Force
}
legal\Xplorer2_Distribution_Permission.pdf
md5: A4AD7686F72D2E89E8C877343B9C68B8 | sha1: A314D54AD67EB6E1A7568EFA429C9242298D1CF8 | sha256: 4573C6D011787BC45C7F117286CA7EC042227B1A2D616E36558D1502EEEDDA79 | sha512: EFC4927A6A6E14C9719606194B4D09A926F2760386DF865C1D257598DA9021F86BAC24EA42C5EAA93186438C0D8202613A3006EF8490BE1A92D62509527D179B
legal\LICENSE.txt
LICENSE AGREEMENT: TERMS AND CONDITIONS OF USE

IMPORTANT NOTICE.  THIS LICENSE AGREEMENT IS A LEGAL AGREEMENT BETWEEN 
YOU (EITHER AN INDIVIDUAL OR A SINGLE ENTITY) AND ZABARAKATRANEMIA OR 
ANY SUBSIDIARY, AND ITS SUPPLIERS ("ZABKAT"). BY INSTALLING OR USING 
THIS SOFTWARE IN ANY WAY YOU ACKNOWLEDGE THAT YOU HAVE READ, 
UNDERSTAND AND AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU DO NOT 
AGREE TO THESE TERMS, DO NOT INSTALL OR USE THIS SOFTWARE IN ANY WAY 
AND PROMPTLY RETURN THE SOFTWARE AND ALL ACCOMPANYING MATERIALS TO 
YOUR PLACE OF PURCHASE.

LICENSE GRANT.  ZABKAT grants you a non-exclusive license to use this 
software, and any associated documentation ("Software") as indicated 
herein.  If you have purchased a Single User License, you may install 
and use one copy of the Software EITHER on any computer you have 
exclusive access to, OR to a single computer accessible by many users.
The Software is in "use" on a computer when it has been loaded into
temporary memory (i.e. RAM) or installed into permanent memory (e.g. 
hard disk or other storage device) of that computer.  For multi-user
multi-computer use you must purchase a Multiple User License that 
enables you to install and use the Software on the number of 
computers authorized at the time of purchase.

OTHER RESTRICTIONS.  You shall not: (a) remove any product 
identification, copyright notices, or other notices or proprietary 
restrictions from this Software; (b) sell, lease, rent, transfer, copy 
or distribute this Software; (c) cause or permit reverse engineering, 
disassembly, decompilation or alteration of this Software except and 
only to the extent that such activity is expressly permitted by 
applicable law notwithstanding this limitation.

COPYRIGHT/OWNERSHIP.  This Software is licensed and not sold. This 
Software and its source code are proprietary products of ZABKAT and 
are protected by copyright and other intellectual property laws. You 
acquire only the right to use the Software and do not acquire any 
rights, express or implied, in the Software or media containing the 
Software other than those specified in this License.  ZABKAT shall at 
all times retain all rights, title, interest, including intellectual 
property rights, in the Software and media.

TERM.  This License is effective until terminated.  You may terminate 
it at any time by destroying the Software, together with all copies 
thereof. This license will also terminate if you fail to comply with 
any term or condition of this Agreement.  Upon such termination, you 
agree to destroy the Software, together with all copies thereof.

TRADEMARKS.  ZABKAT, and other names of ZABKAT and ZABKAT products 
referred to herein are trademarks or registered trademarks of ZABKAT 
in the United Kingdom and other countries.  All other brands and 
product names are trademarks of their respective holders.

DISCLAIMER OF WARRANTIES. THIS SOFTWARE IS DISTRIBUTED 'AS IS' AND 
YOU, ITS USER, ASSUME ALL RISKS WHEN INSTALLING OR USING IT.  TO THE 
MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ZABKAT DISCLAIMS ALL 
WARRANTIES EXPRESS OR IMPLIED, BY OPERATION OF LAW OR OTHERWISE.  
ZABKAT DISCLAIMS THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
FOR A PARTICULAR PURPOSE. ZABKAT DOES NOT WARRANT THAT THE SOFTWARE IS 
NON-INFRINGING, THAT IT WILL MEET YOUR REQUIREMENTS OR THAT ITS 
OPERATION WILL BE UNINTERRUPTED, ERROR-FREE OR VIRUS-FREE. 
 
LIMITATION OF LIABILITY. IN NO EVENT SHALL ZABKAT BE LIABLE FOR ANY 
DAMAGES OF ANY KIND INCLUDING DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR 
CONSEQUENTIAL DAMAGES (WHICH SHALL INCLUDE WITHOUT LIMITATION, DAMAGES 
FOR LOSS OF BUSINESS OR PROFITS, BUSINESS INTERRUPTION, LOSS OF 
BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) WHETHER BASED ON 
CONTRACT, TORT OR OTHER LEGAL THEORY, ARISING OUT OF THE USE OF OR 
INABILITY TO USE THE SOFTWARE, EVEN IF ZABKAT HAS BEEN ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGES.
 
MISCELLANEOUS.  In the event of invalidity of any provision of this 
Agreement, the parties agree that such invalidity shall not affect the 
validity of the remaining portions.  The Agreement is governed by the 
laws of United Kingdom. The United Nations Convention on Contracts for 
the International Sale of Goods is specifically disclaimed.  This is 
the entire agreement between you and ZABKAT, which supersedes any 
prior agreement, whether written or oral, relating to this subject 
matter.

legal\VERIFICATION.md
# VERIFICATION
Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.

## Download
All current releases of xplorer² can be downloaded by clicking the link
for the "flavor" of interest on this page:

- https://www.zabkat.com/alldown.htm

A consistent direct download URL is not available:  

- Version : 5.4.0.2
- SHA256  : 342f6f2f8697769895b242d2be09913665124d0cc38dab9b5463eefca5a66605

## Verify
You can use one of the following methods to obtain the checksum:
1. Use powershell function 'Get-Filehash'
2. Use chocolatey utility 'checksum.exe'


## License
File 'LICENSE.txt' is obtained from:
- https://www.zabkat.com/x2lic.txt

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
xplorer² Lite 5.2.0.2 353 Friday, July 8, 2022 Approved
xplorer² Lite 5.0.0.300 71 Wednesday, June 29, 2022 Approved
xplorer² Lite 4.4.0.1 721 Tuesday, June 9, 2020 Approved
xplorer² Lite 4.3.0.201 177 Thursday, May 14, 2020 Approved
xplorer² Lite 4.3.0.2 517 Saturday, December 28, 2019 Approved
xplorer² Lite 4.2.0.1 377 Saturday, June 1, 2019 Approved
xplorer² Lite 4.0.0.2 517 Monday, July 16, 2018 Approved
xplorer² Lite 3.5.0.2 510 Wednesday, January 17, 2018 Approved
xplorer² Lite 3.4.0.3 513 Friday, September 1, 2017 Approved
xplorer² Lite 2.5.0.4 778 Friday, January 23, 2015 Approved
xplorer² Lite 2.5.0.3 581 Monday, June 16, 2014 Approved
xplorer² Lite 2.4.0.1 576 Sunday, December 22, 2013 Approved
xplorer² Lite 2.3.0.1 475 Sunday, November 17, 2013 Approved
Discussion for the xplorer² Lite Package

Ground Rules:

  • This discussion is only about xplorer² Lite and the xplorer² Lite 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 xplorer² Lite, 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