Skip to content

Commit

Permalink
Merge pull request #9 from altCipher/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
acavella committed Feb 2, 2020
2 parents e2077e7 + 809143c commit 83578b0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
10 changes: 5 additions & 5 deletions PSOfflineFOD.psd1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@{
RootModule = 'PSOfflineFOD.psm1'
ModuleVersion = '0.0.3'
ModuleVersion = '0.0.4'
GUID = 'b5eea96b-8896-4872-abbd-19644f87b0ff'
Author = 'Tony Cavella'
Copyright = 'Copyright (c) 2020 Tony Cavella, licensed under MIT License.'
Description = 'Installs a Windows capability package on the specified operating system image.'
Description = 'Installs a Windows capability package from an offline Features on Demand ISO on the specified operating system image. PSOfflineFOD is compatible with both PowerShell 5.x and PowerShell Core 6.'
PowerShellVersion = '5.0'
PrivateData = @{
PSData = @{
Expand All @@ -15,16 +15,16 @@
Tags = @('powershell', 'fod', 'features', 'capability', 'offline', '1809', 'on-demand', 'Windows')

# The web address of an icon which can be used in galleries to represent this module
IconUri = 'https://raw.githubusercontent.com/altCipher/PSOfflineFOD/images/altcipher.png'
IconUri = 'https://raw.githubusercontent.com/altCipher/PSOfflineFOD/master/images/altcipher.png'

# The web address of this module's project or support homepage.
ProjectUri = 'https://github.com/altCipher/PSOfflineFOD'

# The web address of this module's license. Points to a page that's embeddable and linkable.
LicenseUri = 'https://github.com/altCipher/PSOfflineFOD/blob/master/LICENSE'
LicenseUri = 'https://raw.githubusercontent.com/altCipher/PSOfflineFOD/master/LICENSE'

# Release notes for this particular version of the module
ReleaseNotes = 'https://github.com/altCipher/PSOfflineFOD/releases/tag/v0.0.3'
ReleaseNotes = 'https://github.com/altCipher/PSOfflineFOD/releases/tag/v0.0.4'

# Prerelease string of this module
Prerelease = ''
Expand Down
10 changes: 6 additions & 4 deletions PSOfflineFOD.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@
[CmdletBinding()]
Param
(
[parameter(Position=1, Mandatory=$true)]
[String] $Source,
[parameter(Position=2, Mandatory=$true)]
[String] $Name
[parameter(Position=1, Mandatory=$true, HelpMessage="Enter path to Features on Demand ISO.")]
[String]
$Source,
[parameter(Position=2, Mandatory=$true, HelpMessage="Enter feature name, wildcard '*' is allowed.")]
[String]
$Name
)

# Administraive privilege check
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# PSOfflineFOD
![shield-release]
![PowerShell Gallery](https://img.shields.io/powershellgallery/p/PSOfflineFOD)
[![Gitter](https://badges.gitter.im/altCipher/PSOfflineFOD.svg)](https://gitter.im/altCipher/PSOfflineFOD?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

#### Table of contents:
Expand All @@ -12,7 +13,7 @@
- [Acknowledgements](#acknowledgements)

## Description
Installs a Windows capability package from offline Features on Demand ISO on the specified operating system image. PSOfflineFOD is compatible with both PowerShell 5.x and PowerShell Core 6.
Installs a Windows capability package from an offline Features on Demand ISO on the specified operating system image. PSOfflineFOD is compatible with both PowerShell 5.x and PowerShell Core 6.

Features on Demand are additional capabilities, such as Remote Server Administration Tools (RSAT), that can be added any time on demand. As of Windows 10 1809 these features can only be added via online sources (Windows Update). Certain environments that may not have direct access to the internet face an additional challenge adding these features. Enterprise subscribers can obtain the Features on Demand (FOD) content through the Microsoft Volume Licensing Service Center (VLSC) as a ISO. The current FOD release is comprised of two ISOs avaiable for download.

Expand Down

0 comments on commit 83578b0

Please sign in to comment.