herculosh / PSProductivityTools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

The PSProductivityTools PowerShell module contains commands for productivity tools & topics such as time management.

Installation

The module is published to the PowerShell Gallery, which means you can install it using the following command from the PowerShellGet module:

Install-Module -Name PSProductivityTools

or the following if you want it installed the current users profile ($env:userprofile\Documents\WindowsPowerShell\Modules) rather than the system wide location ($env:programfiles\WindowsPowerShell\Modules):

Install-Module -Name PSProductivityTools -Scope CurrentUser

When a new version is released with bug fixes or new functionality you can update to the latest version simply by typing the following command:

Update-Module -Name PSProductivityTools

PowerShellGet is included by default in PowerShell V5, and available downlevel for PowerShell 3.0 and 4.0.

If you want to install the module without leveraging PowerShellGet, you can either clone the Git-repository or download this ZIP-file and place the contains in one of the following locations:

  • $env:userprofile\Documents\WindowsPowerShell\Modules\PSProductivityTools
  • $env:programfiles\WindowsPowerShell\Modules\PSProductivityTools

Requirements

  • PowerShell 4.0 or later on the computer the module is installed on

Optional requirements

Usage

After installation, you can view available commands by using Get-Command: Get-Command -Module PSProductivityTools

The module currently contains the following functions:

  • Publish-SfBContactInformation - Publish-SfBContactInformation is a PowerShell function to configure a set of availability settings in the Skype for Business client.
  • Start-Pomodoro - Initiates a new Pomodoro sprint and supports several actions such as configuring availability in Skype for Business, enable presentation mode, start music and trigger custom tasks using IFTT such as muting/unmuting a mobile device.

Read more about getting started here: https://msunified.net/2017/08/23/set-yourself-unavailable-with-this-open-source-powershell-based-pomodoro-timer/ And here: http://www.powershell.no/productivity/2017/08/24/introducing-psproductivitytools.html

Planned features and todo-list

  • Add Pester tests
  • Add help

Contributors

Jan Egil Ring - author Ståle Hansen - author

Everyone is welcome to assist by forking the project and submitting pull requests with proposed fixes and enhancements.

About

License:MIT License


Languages

Language:PowerShell 100.0%