diff --git a/PSServiceNow.psd1 b/PSServiceNow.psd1 index 81f23f3..f33e4a3 100644 --- a/PSServiceNow.psd1 +++ b/PSServiceNow.psd1 @@ -83,7 +83,7 @@ FunctionsToExport = '*' # PrivateData = '' # HelpInfo URI of this module -# HelpInfoURI = 'https://github.com/Toukakoukan/servicenow-powershell' +# HelpInfoURI = 'https://github.com/Sam-Martin/servicenow-powershell' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' diff --git a/Readme.md b/Readme.md index 3f4542d..9604240 100644 --- a/Readme.md +++ b/Readme.md @@ -1,5 +1,5 @@ # PSServiceNow -[![GitHub release](https://img.shields.io/github/release/Toukakoukan/servicenow-powershell.svg)](https://github.com/Toukakoukan/servicenow-powershell/releases/latest) [![GitHub license](https://img.shields.io/github/license/Toukakoukan/servicenow-powershell.svg)](LICENSE) ![Test Coverage](https://img.shields.io/badge/coverage-86%25-yellowgreen.svg) +[![GitHub release](https://img.shields.io/github/release/Sam-Martin/servicenow-powershell.svg)](https://github.com/Sam-Martin/servicenow-powershell/releases/latest) [![GitHub license](https://img.shields.io/github/license/Sam-Martin/servicenow-powershell.svg)](LICENSE) ![Test Coverage](https://img.shields.io/badge/coverage-86%25-yellowgreen.svg) This PowerShell module provides a series of cmdlets for interacting with the [ServiceNow REST API](http://wiki.servicenow.com/index.php?title=REST_API), performed by wrapping `Invoke-RestMethod` for the API calls. **IMPORTANT:** Neither this module, nor its creator are in any way affiliated with ServiceNow. @@ -7,7 +7,7 @@ This PowerShell module provides a series of cmdlets for interacting with the [Se Requires PowerShell 3.0 or above as this is when `Invoke-RestMethod` was introduced. ## Usage -Download the [latest release](https://github.com/Toukakoukan/servicenow-powershell/releases/latest) and extract the .psm1 and .psd1 files to your PowerShell profile directory (i.e. the `Modules` directory under wherever `$profile` points to in your PS console) and run: +Download the [latest release](https://github.com/Sam-Martin/servicenow-powershell/releases/latest) and extract the .psm1 and .psd1 files to your PowerShell profile directory (i.e. the `Modules` directory under wherever `$profile` points to in your PS console) and run: `Import-Module PSServiceNow` Once you've done this, all the cmdlets will be at your disposal, you can see a full list using `Get-Command -Module PSServiceNow`.