FinnGet is a Windows PowerShell script that offers similar functionality to tools like screenfetch
or neofetch
, providing a quick overview of your system information. It displays the Windows logo and system specifications, designed specifically for Windows systems, including Windows 11 and Windows 10. You can install and run FinnGet using PowerShell.
Find FinnGet on PowerShell Gallery at:
https://www.powershellgallery.com/packages/finnget
FinnGet is available on PowerShell Gallery. Open PowerShell as an administrator and execute the following command:
Install-Module -Name finnget -Scope AllUsers
-
Download or clone the FinnGet repository to your local machine.
-
Extract the contents of the downloaded ZIP file.
-
Open a PowerShell terminal with administrator privileges.
-
Navigate to the extracted folder using the
cd
command. -
Move the FinnGet folder to the PowerShell modules directory:
Move-Item -Path .\FinnGet -Destination $env:ProgramFiles\WindowsPowerShell\Modules
-
You can now utilize the FinnGet command in any PowerShell terminal.
To run FinnGet, set the execution policy to RemoteSigned. Open PowerShell as an administrator and run:
Set-ExecutionPolicy RemoteSigned
This will enable local script execution while still requiring signed remote scripts.
On some systems, security warnings might be encountered, prompting for script permission every time. To bypass this, run the following command:
Set-ExecutionPolicy Bypass
To update an existing FinnGet installation from PowerShell Gallery to a newer version, run the following command:
Install-Module -Name finnget -Force
After installing FinnGet, you can use it to display system information in your PowerShell terminal. Open PowerShell and enter:
FinnGet
This command will showcase the Windows logo and system specifications, providing a quick overview of your system's details.
FinnGet is currently in development. While the core functionality is complete, some features might still be missing or incomplete. If you encounter issues or have suggestions for improvements, please contribute or report issues.
Contributions to FinnGet are welcomed! To contribute new features, bug fixes, or improvements, follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix:
git checkout -b feature-name
- Implement and thoroughly test your changes.
- Commit your changes with clear messages.
- Push your branch to your forked repository.
- Create a pull request detailing your changes and why they should be merged.
Disclaimer: FinnGet is not affiliated with screenfetch
or neofetch
. This project aims to provide a similar experience on Windows systems using PowerShell. Additionally, support for distinguishing between Flash drives, optical drives, and normal disks has been added to FinnGet.