Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 1010 Bytes

New-GacAssemblyInstallReference.md

File metadata and controls

34 lines (30 loc) · 1010 Bytes

New-GacAssemblyInstallReference

Creates a new install reference to be used with Add-GacAssembly or Remove-GacAssembly

SYNTAX

New-GacAssemblyInstallReference [-Type] {WindowsInstaller | Installer | FilePath | Opaque | OsInstall} [-Identifier] <String> [[-Description] <String>] [<CommonParameters>]

PARAMETERS

-Type

Specifies the type of the install reference to be created

-Identifier <String>

Specifies the identifier of the install reference to be created

-Description <String>

Specifies the description of the install reference to be created

<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable.

EXAMPLES

C:\PS>$reference = New-GacAssemblyInstallReference Opaque (guid::NewGuid()) 'Sample install reference'

This example shows how you can create a new install reference.