Skip to content

Commit

Permalink
Merge pull request #42 from mod-posh/dev
Browse files Browse the repository at this point in the history
Merge into master for v1.1.0.0
  • Loading branch information
jeffpatton1971 authored Sep 14, 2020
2 parents 15fbddd + 98f2487 commit 7dd9caf
Show file tree
Hide file tree
Showing 40 changed files with 8,529 additions and 2,139 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,4 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/
.vscode/settings.json
35 changes: 21 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
- Add external help
- Update module for current PowerShell
- Fix issues uncovered by ScriptAnalyzer

## [1.1.0.0] - 2020-09-14
### Added
- Added Updatable help

### Updated
- Issue #37 Updated documentation help files
- Issue #38 Updatable help

## [1.0.0.0] - 2020-09-13
### Added
- Creating help
- Included build pipeline

### Updated
- Issue #15 Adding ShouldProcess to functions
- Issue #31 Updated OutputType
- Issue #30 Used full AclObject parameter
- Issue #29 Reduce/Remove invoke-expression
- Issue #5 Replace WMI with CIM cmdlets

## [1.0.0.0] - 2020-09-12
### Added
Expand All @@ -24,15 +42,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Issue #13 Proper evaluation of $null
- Issue #6 Changed to proper verbs
- Issue #12 Use SecureString for Credentials/Passwords
- Issue #11 Construct SecureString

## [1.0.0.0] - 2020-09-13
### Added
- Included build pipeline

### Updated
- Issue #15 Adding ShouldProcess to functions
- Issue #31 Updated OutputType
- Issue #30 Used full AclObject parameter
- Issue #29 Reduce/Remove invoke-expression
- Issue #5 Replace WMI with CIM cmdlets
- Issue #11 Construct SecureString
51 changes: 27 additions & 24 deletions ComputerManagement/ComputerManagement.psd1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#
# Module manifest for module 'ComputerManagement'
# Module manifest for module 'PSGet_ComputerManagement'
#
# Generated by: Jeffrey Patton
#
# Generated on: 9/12/2020
# Generated on: 9/14/2020
#

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

# Version number of this module.
ModuleVersion = '1.0.0.0'
ModuleVersion = '1.1.0.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -32,20 +32,20 @@ Copyright = '9/12/2020 4:02:47 PM'
# Description of the functionality provided by this module
Description = 'A PowerShell module for working with the local computer'

# Minimum version of the PowerShell engine required by this module
# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = ''

# Name of the PowerShell host required by this module
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the PowerShell host required by this module
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# ClrVersion = ''
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
Expand All @@ -69,16 +69,25 @@ 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 = '*'
FunctionsToExport = 'New-LocalUser', 'Set-Pass', 'Add-LocalUserToGroup',
'New-ScheduledTask', 'Remove-UserFromLocalGroup', 'Get-CimService',
'Get-NonStandardServiceAccount', 'Remove-LocalUser',
'Get-LocalUserAccounts', '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'

# 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 = '*'
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'
# VariablesToExport = @()

# Aliases 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 aliases to export.
AliasesToExport = '*'
AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand All @@ -98,32 +107,26 @@ PrivateData = @{
# Tags = @()

# A URL to the license for this module.
# LicenseUri = ''
LicenseUri = 'https://github.com/mod-posh/ComputerManagement/blob/master/LICENSE'

# A URL to the main website for this project.
# ProjectUri = ''
ProjectUri = 'https://github.com/mod-posh'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
# ReleaseNotes = ''

# Prerelease string of this module
# Prerelease = ''

# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
ReleaseNotes = 'https://github.com/mod-posh/ComputerManagement/blob/master/CHANGELOG.md'

# External dependent modules of this module
# ExternalModuleDependencies = @()
# ExternalModuleDependencies = ''

} # End of PSData hashtable

} # End of PrivateData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
HelpInfoURI = 'https://raw.githubusercontent.com/mod-posh/ComputerManagement/master/cabs/'

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
Expand Down
Loading

0 comments on commit 7dd9caf

Please sign in to comment.