NerdyMishka 

By: | 23,740 downloads | Last Updated: 1/28/2019 | Latest Version: 0.1.5

Module to pull telemetry data from windows for corporate environments. This module exists because Intune is lacking with the MDM Windows 10 integration. - installed win 32 apps - installed appx packages - enabled windows features - local users - local groups - administrators - powershell version and modules - cloud join users - bit... More info

By: | 5,069 downloads | Last Updated: 5/13/2017 | Latest Version: 0.1.0

Full Metal Gnome KeePass Module This module provides cmdlets for interacting with KeePass databases. Fmg-KeePass does the following: - open a KeePass file - return an in memory model of the database - find entries in the database - export binary files from an entry in the database - keeps your passwords protected until UnprotectPas... More info

By: | 3,624 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.0

# Gz-Db Module Database agnostic Powershell functions over ADO.NET. The primary functions are Invoke-GzDbCommand, Read-GzDbData, and Write-GzDbData. If a connection or connectionString is not provided to the functions, the functions will attempt to use the default connection set by Set-GzDbConnectionString. Any function that has a `-Do... More info

By: | 2,390 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.3

Gainz - Password Generator Module Deprecated: Renaming to Gz-PasswordGenerator Provides a new cryptographically generated password. By default, this function will return an array of characters since strings are immutable. $pw = New-Password -Length 16 -AsSecureString PARAMETERS Chars - Optional. An string of characters to use to ... More info

By: | 2,373 downloads | Last Updated: 11/11/2018 | Latest Version: 0.1.1

Gainz KeePass Module This module provides cmdlets for interacting with KeePass databases. Fmg-KeePass does the following: - open a KeePass file - return an in memory model of the database - find entries in the database - export binary files from an entry in the database - keeps your passwords protected until UnprotectPassword is ex... More info

By: | 1,687 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.3

Gainz: Visual Studio Module Deprecated: Renaming to Gz-VisualStudio A powershell module for invoking builds and tests using the Visual Studio's version of msbuild and vstest.console. Read-VsSolution will read a solution file.

By: | 951 downloads | Last Updated: 5/13/2017 | Latest Version: 0.1.0

Full Metal Gnome functions for converting PowerShell objects into JSON with ConvertTo-NewtonsoftJson to create human readable JSON output. The native ConvertTo-Json function makes it hard to work with JSON configuration files generated by PowerShell.

By: | 939 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.0

# Gz-PasswordGenerator Module Provides a new cryptographically generated password. By default, this function will return an array of characters since strings are immutable and stick around in memory. ```powershell $pw = New-GzPassword -Length 16 -AsSecureString ``` ## Parameters - Chars -- Optional. An string of characters to use... More info

By: | 727 downloads | Last Updated: 3/17/2019 | Latest Version: 0.2.0

Gainz: Yaml Allows users to convert to and from yaml and Powershell objects with ConvertTo-Yaml and ConvertFrom-Yaml functions

By: | 720 downloads | Last Updated: 5/5/2019 | Latest Version: 0.1.5

Gainz: Chocolatey Sync Module A module that that will install chocolatey, configure sources, and install/update/remove packages based on a configuration file. The overall goal is to be able to pull down a config file from somewhere like OneDrive, Github, or Gitlab and then install chocolatey and common apps

By: | 714 downloads | Last Updated: 5/13/2017 | Latest Version: 0.1.0

Full Metal Gnome cmdlets to make working with SQL and ADO.NET easier in PowerShell so that you can focus on the data rather than writing code. The code is database agnostic and defaults to using the SQLClient provider.

By: | 675 downloads | Last Updated: 10/10/2018 | Latest Version: 0.1.2

Gainz: Chocolatey Sync Module A module that that will install chocolatey, configure sources, and install/update/remove packages based on a configuration file. The overall goal is to be able to pull down a config file from somewhere like OneDrive, Github, or Gitlab and then install chocolatey and common apps

By: | 603 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.2

Gainz: Sql Db Deprecated: Renaming to Gz-Sql Database agnostic Powershell functions over ADO.NET. The primary functions are Invoke-DbCmd, Read-DbData, and Write-DbData. If a connection or connectionString is not provided to the functions, the functions will attempt to use the default connection set by Set-DbConnectionString. Any fun... More info

By: | 594 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.2

Gainz: Protect Data Module Deprecated: Renaming to Gz-ProtectData ProtectData provides functions/cmdlets that will encrypt and decrypt string or binary data with a SecureString password or a private key made of an array of ytes. By default, the encrypted value will also contain a computed hash of the data to verify integrity.

By: | 555 downloads | Last Updated: 3/23/2019 | Latest Version: 0.1.0

# Gz-Yaml Enables conversion between YAML and Powershell objects with ConvertTo-GzYaml and ConvertFrom-GzYaml functions. ```powershell $data = (Get-Content -Raw ./sample.yaml) | ConvertFrom-GzYaml Write-Host $data.label ```

By: | 516 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.0

# Gz-VisualStudio Module A powershell module that facilitates invoking msbuild and the Visual Studio test console with powershell cmdlets. On non-windows systems, only Read-GzVisualStudioSolution is currently available. The most useful commands are: - **Invoke-GzMsBuild** -- invokes a build using ms build - **Invoke-GzVisualStudio... More info

By: | 449 downloads | Last Updated: 3/17/2019 | Latest Version: 0.1.1

Gainz: Resolve-Stache A module for simple string templates using the the mustache var replacement syntax. Resolve-Stache "Hello, {{ Person }}" -Model [PsCustomObject]@{ Person = "World" } Resolve-Stache "Hello, {{ Env:UserName }}" -Model [PsCustomObject]@{}

By: | 410 downloads | Last Updated: 6/25/2018 | Latest Version: 0.1.0

Full Metal Gnome: Visual Studio Module A powershell module for invoking builds and tests using the Visual Studio's version of msbuild and vstest.console. Read-VsSolution will read a solution file.

By: | 390 downloads | Last Updated: 8/31/2018 | Latest Version: 0.1.1

Gainz: Help Docs Module Create DocFx compatible markdown files for PowerShell modules. This module will create markdown files that can be used with DocFx to generate documentation for powershell modules. The module can be altered to use other formats such as html. The primary cmdlet to call is `Write-ModuleHelpDocs` or its alias `Wri... More info

By: | 368 downloads | Last Updated: 6/25/2018 | Latest Version: 0.1.0

Full Metal Gnome: Help Docs Module Create DocFx compatible markdown files for PowerShell modules. This module will create markdown files that can be used with DocFx to generate documentation for powershell modules. The module can be altered to use other formats such as html. The primary cmdlet to call is `Write-ModuleHelpDocs` or its ... More info