https://github.com/regg00/pwsh-ip-location
Get GeoIP information with PowerShell
https://github.com/regg00/pwsh-ip-location
Last synced: 4 months ago
JSON representation
Get GeoIP information with PowerShell
- Host: GitHub
- URL: https://github.com/regg00/pwsh-ip-location
- Owner: regg00
- License: mit
- Created: 2023-09-11T19:04:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-12T11:55:51.000Z (over 1 year ago)
- Last Synced: 2024-08-13T07:05:17.348Z (8 months ago)
- Language: PowerShell
- Size: 124 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - regg00/pwsh-ip-location - Get GeoIP information with PowerShell (PowerShell)
README

[](https://github.com/regg00/pwsh-ip-location/issues)
# GeoIP PowerShell
A PowerShell module to query GeoIP databases.
## Why it exists
I needed an easy way to query GeoIP databases using PowerShell. I got tired or using `Invoke-RestMethod` on different APIs, so I built this.
## Installing this module
This module is available in [PowerShell Gallery](https://www.powershellgallery.com/packages/GeoIP):
```powershell
Install-Module GeoIP
```Or, download it from here and save all of the files somewhere in your `$PSModulePath`.
## Using the module
First things first, you need to import it `Import-Module GeoIP`
### Functions
Here's the status of each functions:
| Command | Status | Notes |
| ------------------------------------------ | ------------------ | ----------------------------------------------------- |
| [Get-IPLocation](./Docs/Get-IPLocation.md) | :white_check_mark: | Get the location information of a specific IP address |## What else can I do?
There is plenty of help to read. Get started [here](./Docs/)