majkinetor / posh

Powershell modules and functions by majkinetor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

    git clone https://github.com/majkinetor/posh
    ./posh/setup.ps1

To import-module from SMB share without security warning:

    $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

About

Powershell modules and functions by majkinetor

License:GNU General Public License v2.0


Languages

Language:PowerShell 100.0%