Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/majkinetor/posh
Powershell modules and functions by majkinetor
https://github.com/majkinetor/posh
powershell powershell-module
Last synced: 23 days ago
JSON representation
Powershell modules and functions by majkinetor
- Host: GitHub
- URL: https://github.com/majkinetor/posh
- Owner: majkinetor
- License: gpl-2.0
- Created: 2015-02-26T06:39:48.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T08:33:32.000Z (4 months ago)
- Last Synced: 2024-11-07T00:39:28.819Z (about 1 month ago)
- Topics: powershell, powershell-module
- Language: PowerShell
- Homepage:
- Size: 207 KB
- Stars: 81
- Watchers: 5
- Forks: 12
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - majkinetor/posh - Powershell modules and functions by majkinetor (PowerShell)
README
# Posh modules and functions by majkinetor
This repository contains number of PowerShell modules I develop for various needs during my work on number of other projects. Every module is well documented and intented to work on any computer having adequate version of PowerShell.
## Install
```Powershell
git clone https://github.com/majkinetor/posh
./posh/setup.ps1
```To import-module from SMB share without security warning:
```Powershell
$r = "HKCU:\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap"
mkdir -force $r
sp $r UNCAsIntranet 1
```## Discover
To discover available functions from the CLI run `Get-Command`:
gcm -module mm_network
To get help about specific function from the CLI run `Get-Help`:
import-module mm_network
man proxy