Downloads:
42
Downloads of v 1.0.0:
42
Last Update:
11 Nov 2024
Package Maintainer(s):
Software Author(s):
- lekas
Tags:
powershell module files directories- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
LaLs
- 1
- 2
- 3
1.0.0 | Updated: 11 Nov 2024
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
42
Downloads of v 1.0.0:
42
Maintainer(s):
Software Author(s):
- lekas
LaLs 1.0.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by lekas. The inclusion of lekas trademark(s), if any, upon this webpage is solely to identify lekas goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install LaLs, run the following command from the command line or from PowerShell:
To upgrade LaLs, run the following command from the command line or from PowerShell:
To uninstall LaLs, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download lals --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade lals -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 lals -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 lals
win_chocolatey:
name: lals
version: '1.0.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'lals' do
action :install
source 'INTERNAL REPO URL'
version '1.0.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller lals
{
Name = "lals"
Version = "1.0.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'lals':
ensure => '1.0.0',
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.
This package was approved by moderator flcdrg on 14 Nov 2024.
A PowerShell module for listing files and directories with color coding and formatting options.
# IMPORTANT: Before releasing this package, copy/paste the next 2 lines into PowerShell to remove all comments from this file:
# $f='c:\path\to\thisFile.ps1'
# gc $f | ? {$_ -notmatch "^\s*#"} | % {$_ -replace '(^.*?)\s*?[^``]#.*','$1'} | Out-File $f+".~" -en utf8; mv -fo $f+".~" $f
## NOTE: In 80-90% of the cases (95% with licensed versions due to Package Synchronizer and other enhancements),
## AutoUninstaller should be able to detect and handle registry uninstalls without a chocolateyUninstall.ps1.
## See https://docs.chocolatey.org/en-us/choco/commands/uninstall
## and https://docs.chocolatey.org/en-us/create/functions/uninstall-chocolateypackage
## If this is an MSI, ensure 'softwareName' is appropriate, then clean up comments and you are done.
## If this is an exe, change fileType, silentArgs, and validExitCodes
$ErrorActionPreference = 'Stop' # stop on all errors
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'LaLs*' #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique
fileType = 'EXE_MSI_OR_MSU' #only one of these: MSI or EXE (ignore MSU for now)
# MSI
silentArgs = "/qn /norestart"
validExitCodes= @(0, 3010, 1605, 1614, 1641) # https://msdn.microsoft.com/en-us/library/aa376931(v=vs.85).aspx
# OTHERS
# Uncomment matching EXE type (sorted by most to least common)
#silentArgs = '/S' # NSIS
#silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' # Inno Setup
#silentArgs = '/s' # InstallShield
#silentArgs = '/s /v"/qn"' # InstallShield with MSI
#silentArgs = '/s' # Wise InstallMaster
#silentArgs = '-s' # Squirrel
#silentArgs = '-q' # Install4j
#silentArgs = '-s -u' # Ghost
# Note that some installers, in addition to the silentArgs above, may also need assistance of AHK to achieve silence.
#silentArgs = '' # none; make silent with input macro script like AutoHotKey (AHK)
# https://community.chocolatey.org/packages/autohotkey.portable
#validExitCodes= @(0) #please insert other valid exit codes here
}
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)" #NOTE: You may need to split this if it contains spaces, see below
if ($packageArgs['fileType'] -eq 'MSI') {
# The Product Code GUID is all that should be passed for MSI, and very
# FIRST, because it comes directly after /x, which is already set in the
# Uninstall-ChocolateyPackage msiargs (facepalm).
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
# Don't pass anything for file, it is ignored for msi (facepalm number 2)
# Alternatively if you need to pass a path to an msi, determine that and
# use it instead of the above in silentArgs, still very first
$packageArgs['file'] = ''
} else {
# NOTES:
# - You probably will need to sanitize $packageArgs['file'] as it comes from the registry and could be in a variety of fun but unusable formats
# - Split args from exe in $packageArgs['file'] and pass those args through $packageArgs['silentArgs'] or ignore them
# - Ensure you don't pass double quotes in $file (aka $packageArgs['file']) - otherwise you will get "Illegal characters in path when you attempt to run this"
# - Review the code for auto-uninstaller for all of the fun things it does in sanitizing - https://github.com/chocolatey/choco/blob/bfe351b7d10c798014efe4bfbb100b171db25099/src/chocolatey/infrastructure.app/services/AutomaticUninstallerService.cs#L142-L192
}
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName 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)"}
}
## OTHER POWERSHELL FUNCTIONS
## https://docs.chocolatey.org/en-us/create/functions
#Uninstall-ChocolateyZipPackage $packageName # Only necessary if you did not unpack to package directory - see https://docs.chocolatey.org/en-us/create/functions/uninstall-chocolateyzippackage
#Uninstall-ChocolateyEnvironmentVariable - https://docs.chocolatey.org/en-us/create/functions/uninstall-chocolateyenvironmentvariable
#Uninstall-BinFile # Only needed if you used Install-BinFile - see https://docs.chocolatey.org/en-us/create/functions/uninstall-binfile
## Remove any shortcuts you added in the install script.
#
# �������� ������ ��� ������ "PSGet_LaLs".
#
# �������: lekas
#
# ���� ��������: 07.10.2024
#
@{
# ���� ������ �������� ��� ��������� ������, ��������� � ���� ����������.
RootModule = 'LaLs.psm1'
# ����� ������ ������� ������.
ModuleVersion = '1.0.0'
# �������������� ������� PSEditions
# CompatiblePSEditions = @()
# ���������� ������������� ������� ������
GUID = 'aaeb3c92-3e49-4f54-96cc-13ddf0d67fdf'
# ����� ������� ������
Author = 'lekas'
# ��������, ��������� ������ ������, ��� ��� ���������
CompanyName = 'LekasNoOne'
# ��������� �� ��������� ������ �� ������
Copyright = '(c) 2024 lek4s. All rights reserved.'
# �������� ������� ������� ������
Description = 'This module provides the `la` command for listing files and directories with color coding and formatting options.'
# ����������� ����� ������ ����������� Windows PowerShell, ����������� ��� ������ ������� ������
# PowerShellVersion = ''
# ��� ���� Windows PowerShell, ������������ ��� ������ ������� ������
# PowerShellHostName = ''
# ����������� ����� ������ ���� Windows PowerShell, ����������� ��� ������ ������� ������
# PowerShellHostVersion = ''
# ����������� ����� ������ Microsoft .NET Framework, ����������� ��� ������� ������. ��� ������������ ���������� ������������� ������ ��� ������� PowerShell, ���������������� ��� �����������.
# DotNetFrameworkVersion = ''
# ����������� ����� ������ ����� CLR (������������ ����� ����������), ����������� ��� ������ ������� ������. ��� ������������ ���������� ������������� ������ ��� ������� PowerShell, ���������������� ��� �����������.
# CLRVersion = ''
# ����������� ���������� (���, X86, AMD64), ����������� ��� ����� ������
# ProcessorArchitecture = ''
# ������, ������� ���������� ������������� � ���������� ����� ����� ��������������� ������� ������
# RequiredModules = @()
# ������, ������� ������ ���� ��������� ����� ��������������� ������� ������
# RequiredAssemblies = @()
# ����� �������� (PS1), ������� ����������� � ����� ���������� ������� ����� �������� ������� ������.
# ScriptsToProcess = @()
# ����� ���� (.ps1xml), ������� ����������� ��� ������� ������� ������
# TypesToProcess = @()
# ����� ������� (PS1XML-�����), ������� ����������� ��� ������� ������� ������
# FormatsToProcess = @()
# ������ ��� ������� � �������� ��������� ������� ������, ���������� � ��������� RootModule/ModuleToProcess
# NestedModules = @()
# � ����� ����������� ����������� ������������������ ������� ��� �������� �� ����� ������ �� ���������� �������������� ����� � �� ������� ������. ����������� ������ ������, ���� ��� ������� ��� ��������.
FunctionsToExport = 'la'
# � ����� ����������� ����������� ������������������ ���������� ��� �������� �� ����� ������ �� ���������� �������������� ����� � �� ������� ������. ����������� ������ ������, ���� ��� ����������� ��� ��������.
CmdletsToExport = '*'
# ���������� ��� �������� �� ������� ������
VariablesToExport = '*'
# � ����� ����������� ����������� ������������������ ���������� ��� �������� �� ����� ������ �� ���������� �������������� ����� � �� ������� ������. ����������� ������ ������, ���� ��� ����������� ��� ��������.
AliasesToExport = '*'
# ������� DSC ��� �������� �� ����� ������
# DscResourcesToExport = @()
# ������ ���� �������, �������� � ����� ������� ������
# ModuleList = @()
# ������ ���� ������, �������� � ����� ������� ������
# FileList = @()
# ������ ������ ��� �������� � ������, ��������� � ��������� RootModule/ModuleToProcess. �� ����� ����� ��������� ���-������� PSData � ��������������� ����������� ������, ������� ������������ � PowerShell.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()
# A URL to the license for this module.
LicenseUri = 'https://opensource.org/licenses/MIT'
# A URL to the main website for this project.
ProjectUri = 'https://github.com/YourUsername/LaLs'
# A URL to an icon representing this module.
# IconUri = ''
# ReleaseNotes of this module
# ReleaseNotes = ''
# Prerelease string of this module
# Prerelease = ''
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
RequireLicenseAcceptance = $true
# External dependent modules of this module
# ExternalModuleDependencies = @()
} # End of PSData hashtable
} # End of PrivateData hashtable
# ��� URI ��� HelpInfo ������� ������
# HelpInfoURI = ''
# ������� �� ��������� ��� ������, ���������������� �� ����� ������. �������������� ������� �� ��������� � ������� ������� Import-Module -Prefix.
# DefaultCommandPrefix = ''
}
function la {
param (
[switch]$a,
[switch]$l,
[switch]$i,
[switch]$d,
[switch]$f,
[switch]$m,
[switch]$info,
[switch]$structure,
[switch]$git
)
if ($git) {
if (-not (Test-Path ".git")) {
Write-Host "This directory is not a Git repository." -ForegroundColor Red
return
}
$gitStatus = git status --porcelain
foreach ($line in $gitStatus) {
$statusCode = $line.Substring(0, 2).Trim()
$fileName = $line.Substring(3)
switch ($statusCode) {
"M" { Write-Host $fileName -ForegroundColor Cyan }
"A" { Write-Host $fileName -ForegroundColor Green }
"D" { Write-Host $fileName -ForegroundColor Red }
"??" { Write-Host $fileName -ForegroundColor Yellow }
default { Write-Host $fileName -ForegroundColor White }
}
}
return
}
if ($structure) {
if (-not (Test-Path $PROFILE)) {
Write-Error "Profile not found: $PROFILE"
return
}
$profileDir = Split-Path $PROFILE
if (-not $profileDir) {
Write-Error "Profile directory is not available."
return
}
$pythonScript = Join-Path $profileDir "Scripts\print_directory_structure.py"
$projectPath = Get-Location
python $pythonScript $projectPath
return
}
if ($info) {
Write-Host "Arguments information for 'la' function:" -ForegroundColor Yellow
Write-Host "-a : Shows all files, including hidden ones." -ForegroundColor Green
Write-Host "-l : Lists all files and directories in a column view." -ForegroundColor Green
Write-Host "-i : Displays file/directory name, creation date, and size, aligned in columns." -ForegroundColor Green
Write-Host "-d : Shows only directories." -ForegroundColor Green
Write-Host "-f : Shows only files." -ForegroundColor Green
Write-Host "-m : Lists files with their access modes (read, write, execute)." -ForegroundColor Green
Write-Host "-info : Displays information about available arguments." -ForegroundColor Green
return
}
$items = Get-ChildItem -Force:$a
if ($d) {
$items = $items | Where-Object { $_.PSIsContainer }
}
elseif ($f) {
$items = $items | Where-Object { -not $_.PSIsContainer }
}
$dirColor = [ConsoleColor]::DarkYellow
$fileColor = [ConsoleColor]::Cyan
$hiddenColor = [ConsoleColor]::DarkGray
if ($m) {
$nameWidth = 40
$modeWidth = 15
Write-Host ("Name".PadRight($nameWidth) + "Mode".PadRight($modeWidth)) -ForegroundColor White
Write-Host ("-" * ($nameWidth + $modeWidth)) -ForegroundColor White
foreach ($item in $items) {
$color = if ($item.Attributes -match "Hidden") { $hiddenColor }
elseif ($item.PSIsContainer) { $dirColor }
else { $fileColor }
$name = $item.Name.PadRight($nameWidth)
$mode = ""
if ($item.Attributes -match "ReadOnly") { $mode += "Read-Only" }
else { $mode += "Read/Write" }
if ($item.Attributes -match "Directory") { $mode += ", Directory" }
if ($item.Attributes -match "Archive") { $mode += ", Archive" }
if ($item.Attributes -match "System") { $mode += ", System" }
if ($item.Attributes -match "Hidden") { $mode += ", Hidden" }
Write-Host ("$name$mode") -ForegroundColor $color
}
}
elseif ($i) {
$nameWidth = 40
$dateWidth = 20
$sizeWidth = 10
Write-Host ("Name".PadRight($nameWidth) + "Creation Date".PadRight($dateWidth) + "Size (KB)".PadRight($sizeWidth)) -ForegroundColor White
Write-Host ("-" * ($nameWidth + $dateWidth + $sizeWidth)) -ForegroundColor White
foreach ($item in $items) {
$color = if ($item.Attributes -match "Hidden") { $hiddenColor }
elseif ($item.PSIsContainer) { $dirColor }
else { $fileColor }
$name = $item.Name.PadRight($nameWidth)
$creationDate = $item.CreationTime.ToString("yyyy-MM-dd HH:mm").PadRight($dateWidth)
$size = if ($item.PSIsContainer) { "-" } else { '{0:N2}' -f ($item.Length / 1KB) }
$size = $size.PadLeft($sizeWidth)
Write-Host ("$name$creationDate$size") -ForegroundColor $color
}
}
else {
foreach ($item in $items) {
if ($item.Attributes -match "Hidden") {
$color = $hiddenColor
}
elseif ($item.PSIsContainer) {
$color = $dirColor
}
else {
$color = $fileColor
}
if ($l) {
Write-Host $item.Name -ForegroundColor $color
}
else {
Write-Host -NoNewline "$($item.Name) " -ForegroundColor $color
}
}
if (-not $l) {
Write-Host
}
}
}
From: https://en.wikipedia.org/wiki/MIT_License
Copyright (C) Andrew "Lek4s" Delimarskiy 5 November 2024 *
* The usernames "lek4s", "lekas", and "lekasnet", regardless of case (uppercase, lowercase), are considered identical and equivalent.
LICENSE
This license grants the right to use and distribute the code for
non-commercial purposes without the right to modify it for one
year from the date of the last package update or for 5 years from
its issue date, whichever expires later.
Redistribution and use in source and binary forms, without
modification, are permitted provided that the following conditions are
met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3)The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
TERMS AND CONDITIONS:
The license is granted for non-commercial use only.
The license does not cover derivative works, modifications, or commercial use.
The license does not grant the right to sublicense or distribute the code to third parties.
If you plan to use or distribute this code for commercial purposes, you must purchase a commercial license.
The license is valid for the period specified in clause 1 or 2, whichever expires later.
ACKNOWLEDGMENT:
By using and/or distributing this code, you acknowledge that you have read and agreed to abide by these terms and conditions.
CONTACT INFORMATION:
If you have any questions or concerns regarding this license, please contact aleks at [email protected] or @sir_leaks on Twitter.
SIGNATURE:
Andrew Delimarsky
05.11.2024
## Verification Instructions for LaLs Package
To verify the authenticity of this package, you can follow the steps outlined below:
1. Check the SHA256 Checksum of the Downloaded Package:
You can verify the integrity of the package by calculating the checksum of the installed `.nupkg` file and comparing it with the provided checksum.
Run the following command in PowerShell:
Get-FileHash "C:\ProgramData\chocolatey\lib\LaLs\LaLs.nupkg" -Algorithm SHA256
Compare the resulting hash value with the checksum provided on the Chocolatey package page.
2. Inspect the PowerShell Module Signature:
If applicable, check if the `LaLs.psm1` file is signed with a valid signature. Run the following command in PowerShell:
Get-AuthenticodeSignature "C:\Program Files\WindowsPowerShell\Modules\LaLs\LaLs.psm1"
Verify that the `Status` field is set to `Valid`. If the signature is invalid, it may indicate that the file has been tampered with or was not properly signed.
3. Check the Package Version and Metadata:
Compare the installed version with the one listed on the Chocolatey package page:
choco list --local-only LaLs
This command will display the installed version and package metadata to ensure it matches the expected version.
4. Review Installed Files:
Check the contents of the package installation directory to verify that no unexpected files are present:
Get-ChildItem "C:\Program Files\WindowsPowerShell\Modules\LaLs" -Recurse
Compare these files with the package documentation or listing on the Chocolatey package page.
By following these steps, you can ensure that the LaLs package you installed is authentic and has not been altered. If any verification steps fail, please contact the package maintainer or the Chocolatey community for further assistance.
Log in or click on link to see number of positives.
- LaLs.1.0.0.nupkg (7e48471887ef) - ## / 66
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.
This package has no dependencies.
Ground Rules:
- This discussion is only about LaLs and the LaLs 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 LaLs, 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.