Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdhitsolutions/MyTasks
A PowerShell module that offers a simple task management or to-do system.
https://github.com/jdhitsolutions/MyTasks
powershell powershell-module
Last synced: 3 months ago
JSON representation
A PowerShell module that offers a simple task management or to-do system.
- Host: GitHub
- URL: https://github.com/jdhitsolutions/MyTasks
- Owner: jdhitsolutions
- License: mit
- Archived: true
- Created: 2016-08-23T21:32:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-09-15T21:04:38.000Z (about 2 years ago)
- Last Synced: 2024-05-28T02:19:48.128Z (6 months ago)
- Topics: powershell, powershell-module
- Language: PowerShell
- Size: 1.28 MB
- Stars: 52
- Watchers: 16
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE.txt
Awesome Lists containing this project
- jimsghstars - jdhitsolutions/MyTasks - A PowerShell module that offers a simple task management or to-do system. (PowerShell)
README
# MyTasks
[![PSGallery Version](https://img.shields.io/powershellgallery/v/myTasks.png?style=for-the-badge&logo=powershell&label=PowerShell%20Gallery)](https://www.powershellgallery.com/packages/myTasks/) [![PSGallery Downloads](https://img.shields.io/powershellgallery/dt/MyTasks.png?style=for-the-badge&label=Downloads)](https://www.powershellgallery.com/packages/MyTasks/)
> :heavy_exclamation_mark: The `MyTasks` module is __no longer under active development__. It has been replaced by [PSWorkItem](https://github.com/jdhitsolutions/PSWorkItem). The PSWorkItem module uses the same concepts as MyTasks, but stores tasks, PSWorkItems in the new module, in a SQLite database. Installing PSWorkItem will also install the [MySQLite])https://github.com/jdhitsolutions/MySQLite/) module. All open issues for MyTasks will be closed.
This PowerShell module is designed as a task or a simple To-Do manager. The module contains several commands for working with tasks. It should work with both Windows PowerShell and PowerShell 7.x with a few limitations. You can install the latest version from the PowerShell Gallery. You might want to need the `-Scope` parameter for PowerShell 7.x.
```powershell
Install-Module MyTasks [-scope currentuser]
```Task data is stored in an XML file. Other configuration information is stored in simple text files. Here are a few highlights.
## A Class-Based Module
This module uses a class definition for the task object and is designed to work on both Windows PowerShell and PowerShell Core.
```powershell
Class MyTask {
[int]$ID
[string]$Name
[string]$Description
[datetime]$DueDate
[bool]$Overdue
[String]$Category
[ValidateRange(0, 100)][int]$Progress
hidden[bool]$Completed
hidden[datetime]$TaskCreated = (Get-Date)
hidden[datetime]$TaskModified
hidden[guid]$TaskID = (New-Guid)
# ID and OverDue values are calculated at run time.# Methods
#set task as completed
[void]CompleteTask([datetime]$CompletedDate) {
Write-Verbose "[CLASS ] Completing task: $($this.name)"
$this.Completed = $True
$this.Progress = 100
$this.Overdue = $False
$this.TaskModified = $CompletedDate
}#check if task is overdue and update
hidden [void]Refresh() {
Write-Verbose "[CLASS ] Refreshing task $($this.name)"
#only mark as overdue if not completed and today is greater than the due date
Write-Verbose "[CLASS ] Comparing $($this.DueDate) due date to $(Get-Date)"if ($This.completed) {
$this.Overdue = $False
}
elseif ((Get-Date) -gt $this.DueDate) {
$this.Overdue = $True
}
else {
$this.Overdue = $False
}} #refresh
#Constructors
MyTask([string]$Name) {
Write-Verbose "[CLASS ] Constructing with name: $name"
$this.Name = $Name
$this.DueDate = (Get-Date).AddDays(7)
$this.TaskModified = (Get-Date)
$this.Refresh()
}
#used for importing from XML
MyTask([string]$Name, [datetime]$DueDate, [string]$Description, [string]$Category, [boolean]$Completed) {
Write-Verbose "[CLASS ] Constructing with due date, description and category"
$this.Name = $Name
$this.DueDate = $DueDate
$this.Description = $Description
$this.Category = $Category
$this.TaskModified = $this.TaskCreated
$this.Completed = $completed
$this.Refresh()
}} #end class definition
```While you could use the object's properties and methods directly, you should use the appropriate module command.
## XML Data
All of the task information is stored in an XML file. The commands in this module will read in, update, and remove items as needed using PowerShell commands such as `Select-XML`. By default, these files are stored in your Documents folder (on Windows systems) or in the Home folder (on Linux). You can change the default location by using the [Set-myTaskHome](docs/Set-MyTaskHome.md) command. This is helpful if you are sharing task information between computers via a service like Dropbox or OneDrive.
```powershell
Set-MyTaskHome -path C:\Users\Jeff\dropbox\mytasks\
```If you use this feature, you'll need to make sure you run this command before doing anything. It is recommended to put this command in a PowerShell profile script.
You shouldn't have to manage the module related variables directly. Use `Get-MyTaskHome` to view your current settings.
## Categories
The Task object includes a Category property. The module will define a default set of categories ("Work","Personal","Customer","Other"), but users can create their own by using the MyTaskCategory commands:
+ [Add-MyTaskCategory](docs/Add-MyTaskCategory.md)
+ [Get-MyTaskCategory](docs/Get-MyTaskCategory.md)
+ [Remove-MyTaskCategory](docs/Remove-MyTaskCategory.md)Task information is stored in a text file in the `$myTaskHome` location.
## Basic Usage
You create a task with at least a name and category. The default due date will be 7 days from the current date and time.
```powershell
New-MyTask "return library books" -Category personal
```You can also specify a due date.
```powershell
New-MyTask "Pluralsight" -duedate "2/1/2020" -description "renew subscription" -category other
```You can use `Set-MyTask` to modify a task.
```powershell
Get-MyTask Pluralsight | Set-Mytask -DueDate 3/1/2020
```Because the task has a Progress property, you can use [Set-MyTask](docs/Set-MyTask.md) to update that as well. This is intended to be used as a percentage complete.
```powershell
Set-Mytask "book review" -Progress 60
```Use `Get-MyTask` to view tasks. Normally, you will use [Get-MyTask](docs/Get-MyTask.md) to display all tasks, some tasks or a single item:
```powershell
PS S:\> Get-MyTask -name MemoryToolsID Name Description DueDate OverDue Category Progress
-- ---- ----------- ------- ------- -------- --------
8 MemoryTools update module 7/22/2020 False Projects 10
```The default behavior is to display incomplete tasks due in the next 30 days. Look at the help for `Get-MyTask` for more information.
This module has a custom format file that uses ANSI escape sequences to color-code tasks. Overdue tasks will be shown in red. Tasks due in the next 48 hours will be shown in orange.
![Get-MyTask](images/get-mytask.png)
This command may not work as expected in the PowerShell ISE or the VS Code PowerShell Integrated shell.
When a task is finished, you can mark it as complete.
```powershell
Complete-MyTask -name "order coffee"
```The task will remain but be marked as 100% complete. You can still see the task when using the -All parameter with `Get-MyTask` or `Show-MyTask`. At some point you might want to remove completed tasks from the master XML file. You can use [Remove-MyTask](docs/Remove-MyTask.md) to permanently delete them. Or use the `Archive-MyTask` command to move them to an archive XML file.
## Format Views
The module includes a `format.ps1xml` file that defines a default display when you run `Get-MyTask`. You will get a slightly different set of properties when you run `Get-MyTask | Format-List`. There is also a custom table view called `Category` which will create a table grouped by the Category property. You should sort the tasks first:
```powershell
Get-MyTask | Sort-Object Category | Format-Table -view category
```Or you can use the `DueDate` table view - sort on DueDate
```powershell
Get-MyTask -days 180 | Sort-Object duedate | Format-Table -view duedate
```![formatted views](images/show-mytask-2.png)
## Archiving and Removing
Over time your task file might get quite large. Even though the default behavior is to ignore completed tasks, you have an option to archive them to a separate XML file using `Save-MyTask` which has an alias of `Archive-MyTask`:
```powershell
Get-MyTask -Completed | Archive-MyTask
```There is an option to archive tasks when you run [Complete-MyTask](docs/Complete-MyTask.md). Or you can completely delete a task with `Remove-MyTask`.
Use the `Get-MyTaskArchive` to view archived tasks.
## Email Reminders
If you are running this module on Windows PowerShell that includes the PSScheduledJob module, you can create a scheduled PowerShell job that will send you a daily email with tasks that are due in 3 days or less. The default is a plain text message but you can also send it as HTML. Use the [Enable-EmailReminder](docs/Enable-EmailReminder.md) command to set up the job.
You should read full help and examples for all commands as well as the [about_MyTasks](docs/about_MyTasks.md) help file.
+ [Add-MyTaskCategory](docs/Add-MyTaskCategory.md)
+ [Backup-MyTaskFile](docs/Backup-MyTaskFile.md)
+ [Complete-MyTask](docs/Complete-MyTask.md)
+ [Get-MyTask](docs/Get-MyTask.md)
+ [Get-MyTaskCategory](docs/Get-MyTaskCategory.md)
+ [New-MyTask](docs/New-MyTask.md)
+ [Remove-MyTask](docs/Remove-MyTask.md)
+ [Remove-MyTaskCategory](docs/Remove-MyTaskCategory.md)
+ [Save-MyTask](docs/Save-MyTask.md)
+ [Set-MyTask](docs/Set-MyTask.md)
+ [Enable-EmailReminder](docs/Enable-EmailReminder.md)
+ [Disable-EmailReminder](docs/Disable-EmailReminder.md)
+ [Get-EmailReminder](docs/Get-EmailReminder.md)
+ [Set-MyTaskHome](docs/Set-MyTaskHome.md)
+ [Get-MyTaskHome](docs/Get-MyTaskHome.md)
+ [Get-MyTaskArchive](docs/Get-MyTaskArchive.md)