Skip to content

Commit

Permalink
Merge pull request #65 from mod-posh/dev
Browse files Browse the repository at this point in the history
BUGFIX: Corrected module definition and help
  • Loading branch information
jeffpatton1971 authored Sep 15, 2020
2 parents cfcdd22 + c65cc8f commit bc5f70a
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
- Update module for current PowerShell

## [1.1.2.2] - 2020-09-15
### Fixed
- Issue #63 Forgot to update the definition file with changed/removed functions

## [1.1.2.1] - 2020-09-15
### Updated
- Issue #59 Change plural functions to singular
Expand Down
18 changes: 8 additions & 10 deletions ComputerManagement/ComputerManagement.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Jeffrey Patton
#
# Generated on: 9/14/2020
# Generated on: 9/15/2020
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'ComputerManagement.psm1'

# Version number of this module.
ModuleVersion = '1.1.2.1'
ModuleVersion = '1.1.2.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -69,14 +69,12 @@ Description = 'A PowerShell module for working with the local computer'
# NestedModules = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = 'Set-Pass', 'Get-CimService', 'Get-NonStandardServiceAccount',
'Get-PendingUpdates', 'Get-ServiceTag', 'Backup-EventLogs',
'Export-EventLog', 'Get-PaperCutLogs', 'Set-ShutdownMethod',
'Get-PrinterLogs', 'Get-OpenSessions', 'Get-OpenFiles',
'Get-RDPLoginEvents', 'Get-InvalidLogonAttempts', 'Get-MappedDrives',
'Get-DiskUsage', 'Get-Namespace', 'New-Password', 'Connect-Rdp',
'Get-NetShare', 'Get-WinEventTail', 'Open-CdDrive',
'Grant-RegistryPermission', 'New-Credential'
FunctionsToExport = 'Get-NonStandardServiceAccount', 'Get-PendingUpdate',
'Get-ServiceTag', 'Backup-EventLog', 'Export-EventLog',
'Get-PrinterLog', 'Get-OpenSession', 'Get-OpenFile',
'Get-RDPLoginEvent', 'Get-InvalidLogonAttempt', 'Get-MappedDrive',
'Get-DiskUsage', 'New-Password', 'Connect-Rdp', 'Get-NetShare',
'Get-WinEventTail', 'Grant-RegistryPermission', 'New-Credential'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @()
Expand Down
Binary file modified README.md
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<SupportedUICultures>
<UICulture>
<UICultureName>en-US</UICultureName>
<UICultureVersion>1.1.2.1</UICultureVersion>
<UICultureVersion>1.1.2.2</UICultureVersion>
</UICulture>
</SupportedUICultures>
</HelpInfo>
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/Backup-EventLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Backup Eventlogs from remote computer
## SYNTAX

```
Backup-EventLogs [[-ComputerName] <String>] [[-LogPath] <String>] [[-BackupPath] <String>] [<CommonParameters>]
Backup-EventLog [[-ComputerName] <String>] [[-LogPath] <String>] [[-BackupPath] <String>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion docs/ComputerManagement.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Module Name: ComputerManagement
Module Guid: 9c9c5339-5b88-4f63-a664-d9bf90b7ed3a
Download Help Link: https://raw.githubusercontent.com/mod-posh/ComputerManagement/master/cabs/
Help Version: 1.1.2.1
Help Version: 1.1.2.2
Locale: en-US
---

Expand Down
2 changes: 1 addition & 1 deletion docs/Get-InvalidLogonAttempt.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Return a list of invalid logon attempts.
## SYNTAX

```
Get-InvalidLogonAttempts [-ComputerName] <Object> [[-LogName] <Object>] [[-EventID] <Object>]
Get-InvalidLogonAttempt [-ComputerName] <Object> [[-LogName] <Object>] [[-EventID] <Object>]
[<CommonParameters>]
```

Expand Down
2 changes: 1 addition & 1 deletion docs/Get-MappedDrive.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Return a list of mapped network drives on the computer
## SYNTAX

```
Get-MappedDrives [[-ComputerName] <String>] [[-Credentials] <PSCredential>] [<CommonParameters>]
Get-MappedDrive [[-ComputerName] <String>] [[-Credentials] <PSCredential>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion docs/Get-OpenFile.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Get a list of files open on the server
## SYNTAX

```
Get-OpenFiles [[-ComputerName] <Object>] [<CommonParameters>]
Get-OpenFile [[-ComputerName] <Object>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion docs/Get-OpenSession.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Return a list of open sessions
## SYNTAX

```
Get-OpenSessions [[-ComputerName] <Object>] [<CommonParameters>]
Get-OpenSession [[-ComputerName] <Object>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion docs/Get-PendingUpdate.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Retrieves the updates waiting to be installed from WSUS
## SYNTAX

```
Get-PendingUpdates [[-ComputerName] <String>] [<CommonParameters>]
Get-PendingUpdate [[-ComputerName] <String>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion docs/Get-PrinterLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Get a log of all printing from a given server.
## SYNTAX

```
Get-PrinterLogs [[-LogName] <Object>] [-ComputerName] <Object> [<CommonParameters>]
Get-PrinterLog [[-LogName] <Object>] [-ComputerName] <Object> [<CommonParameters>]
```

## DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion docs/Get-RDPLoginEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Return Remote Desktop login attempts
## SYNTAX

```
Get-RDPLoginEvents [-ComputerName] <Object> [[-Credentials] <PSCredential>] [<CommonParameters>]
Get-RDPLoginEvent [-ComputerName] <Object> [[-Credentials] <PSCredential>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down

0 comments on commit bc5f70a

Please sign in to comment.