Sunday, June 16, 2024

Web Check Tool

 Nice Website security checkup tools and all the site information.


https://web-check.as93.net/

https://github.com/lissy93/web-check


Friday, June 14, 2024

Windows God Mode Folder

 To Turn on the windows god mode folder


1. Create Folder on desktop

2. Rename folder to GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}


Ref: HowToGeek enable god mode in windows 10

Thursday, March 21, 2024

ACH Nacha file report script in PowerShell

I created the Nacha-Report.ps1PowerShell script to simplify the analysis of NACHA files in a more human readable format.

In the realm of banking and fintech, understanding the flow of electronic transactions is crucial, and the Nacha-Report.ps1 script provides an efficient solution to analyze these transactions securely and comprehensively.

What is NACHA?

NACHA (National Automated Clearing House Association) manages the ACH Network, facilitating the electronic transfer of funds between banks and credit unions in the United States. NACHA files are structured in a fixed-width ASCII format, where each line, or record, represents different aspects of financial transactions.

Why Nacha-Report.ps1?

This script parses a ACH/NACHA file to generate a summary report, avoiding sensitive account information to ensure data privacy and security. It's crafted to aid financial analysts, auditors, and fintech professionals in scrutinizing ACH transactions without compromising on confidentiality.

Key Features:

  • Comprehensive Analysis: Generates detailed reports from NACHA formatted files.
  • Privacy-Focused: Excludes sensitive account details from the output.
  • User-Friendly: Offers test data download for immediate functionality check.
  • Customizable Output: Includes a switch to display detailed trace information for transactions.

Install:

PS> Install-Script -Name nacha-report

How to Use:

Running Nacha-Report.ps1 is straightforward. You simply need to provide the path to your NACHA file:

powershell
PS> .\Nacha-Report.ps1 -nachaFilePath "C:\Path\To\Your\File.txt"

Don’t have a NACHA file on hand? Test the script's functionality with sample data:

powershell
PS> .\Nacha-Report.ps1 -testdata

Report Insights:

The script meticulously crafts a report highlighting key transaction details, such as file creation dates, batch numbers, transaction codes, and amounts, all formatted for easy understanding and analysis.

Locations:

https://github.com/Trifused/nacha-report

https://www.powershellgallery.com/packages/nacha-report