https://github.com/fscpscollaborative/fscps.tools
A set of tools for maintaining D365FSC CI/CD pipelines.
https://github.com/fscpscollaborative/fscps.tools
cicd-tools d365 d365fo d365fsc devops-tools dynamics dynamics365 financeandoperations fsc-ps fscps
Last synced: 5 days ago
JSON representation
A set of tools for maintaining D365FSC CI/CD pipelines.
- Host: GitHub
- URL: https://github.com/fscpscollaborative/fscps.tools
- Owner: fscpscollaborative
- License: mit
- Created: 2024-05-01T08:53:05.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2025-10-03T14:37:10.000Z (4 months ago)
- Last Synced: 2025-10-03T16:29:11.578Z (4 months ago)
- Topics: cicd-tools, d365, d365fo, d365fsc, devops-tools, dynamics, dynamics365, financeandoperations, fsc-ps, fscps
- Language: PowerShell
- Homepage:
- Size: 11.8 MB
- Stars: 6
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# **fscps.tools**
A PowerShell module to handle setup and maintain professional DevOps processes for your Dynamics 365 products.
Available on PowerShell Gallery:
[fscps.tools](https://www.powershellgallery.com/packages/fscps.tools).
## Table of contents
* [Getting started](#getting-started)
* [Getting help](#getting-help)
* [Contributing](#contributing)
* [Dependencies](#dependencies)
## Getting started
### Install the latest module
```PowerShell
Install-Module -Name fscps.tools
```
### Install without administrator privileges
```PowerShell
Install-Module -Name fscps.tools -Scope CurrentUser
```
### List all available commands / functions
```PowerShell
Get-Command -Module fscps.tools
```
### Update the module
```PowerShell
Update-Module -name fscps.tools
```
### Update the module - force
```PowerShell
Update-Module -name fscps.tools -Force
```
## Getting help
[The wiki](https://github.com/fscpscollaborative/fscps.tools/wiki) contains more details about installation and also guides to help you with some common tasks. It also contains documentation for all the module's commands. Expand the wiki's `Pages` control at the top of the content sidebar to view and search the list of command documentation pages.
Since the project started we have adopted and extended the comment based help inside each cmdlet / function. This means that every single command contains at least one fully working example on how to run it and what to expect from the cmdlet.
**Getting help inside the PowerShell console**
Getting help is as easy as writing **Get-Help CommandName**
```PowerShell
Get-Help Get-FSCPSSettings
```
*This will display the available default help.*
Getting the entire help is as easy as writing **Get-Help CommandName -Full**
```PowerShell
Get-Help Get-FSCPSSettings -Full
```
*This will display all available help content there is for the cmdlet / function*
Getting all the available examples for a given command is as easy as writing **Get-Help CommandName -Examples**
```PowerShell
Get-Help Get-FSCPSSettings -Examples
```
*This will display all the available **examples** for the cmdlet / function.*
We know that when you are learning about new stuff and just want to share your findings with your peers, working with help inside a PowerShell session isn't that great.
## Dependencies
This module depends on other modules. The dependencies are documented in the [dependency graph](https://github.com/fscpscollaborative/fscps.tools/network/dependencies) and the Dependencies section of the Package Details of the [package listing](https://www.powershellgallery.com/packages/fscps.tools) in the PowerShell Gallery.