Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: This article contains release notes for the PSResourceGet module.
ms.date: 12/04/2024
ms.date: 01/10/2025
ms.topic: release-notes
title: What's new in PSResourceGet?
---
Expand All @@ -14,8 +14,9 @@ complete list of changes, see the [CHANGELOG][01] in the GitHub repository.

## Release history

- v1.1.0-rc2 - Current preview release - first shipped in PowerShell 7.5.0-rc1
- v1.1.0-rc1 - Current preview release - first shipped in PowerShell 7.5.0-preview.5
- v1.1.0 - Current release - released to the PowerShell Gallery
- v1.1.0-rc2 - Preview release - first shipped in PowerShell 7.5.0-rc1
- v1.1.0-rc1 - Preview release - first shipped in PowerShell 7.5.0-preview.5
- v1.1.0-preview2 - released to the PowerShell Gallery only
- v1.1.0-preview.1 - Preview release - first shipped in PowerShell 7.5.0-preview.4
- v1.0.6 - released to the PowerShell Gallery only
Expand All @@ -29,6 +30,10 @@ complete list of changes, see the [CHANGELOG][01] in the GitHub repository.

## Release notes

### v1.1.0 - 2025-01-09

- Official release of PSResourceGet v1.1.0

### v1.1.0-rc2 - 2024-10-30

- Implemented full Microsoft Artifact Registry integration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
description: Describes how to use version 3.x of the PowerShellGet module.
Locale: en-US
ms.custom: 1.1.0-rc2
ms.date: 12/04/2024
ms.custom: 1.1.0
ms.date: 01/10/2025
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/about_PSResourceGet?view=powershellget-3.x&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about PSResourceGet
Expand All @@ -11,7 +11,7 @@ title: about PSResourceGet

## Short description

Describes how to use version 1.1.0-rc2 of the
Describes how to use version 1.1.0 of the
**Microsoft.PowerShell.PSResourceGet** module.

## Long description
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
description: Describes the Group Policy settings for PowerShell
Locale: en-US
ms.custom: 1.1.0-rc2
ms.date: 10/31/2024
ms.custom: 1.1.0
ms.date: 01/10/2025
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_psresourceget_group_policy?view=powershellget-3.x&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about_PSResourceGet_Group_Policy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### System.IO.FileSystemInfo
### System.IO.FileInfo

By default, this command doesn't write any output to the pipeline. When you use the **PassThru**
parameter, it returns a **FileSystemInfo** object for the new `.nupkg` file.
parameter, it returns a **FileInfo** object for the new `.nupkg` file.

## NOTES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,26 @@ Saves resources (modules and scripts) from a registered repository onto the mach
```
Save-PSResource [-Name] <String[]> [-Version <String>] [-Prerelease] [-Repository <String[]>]
[-Credential <PSCredential>] [-IncludeXml] [-Path <String>] [-TemporaryPath <String>]
[-TrustRepository] [-PassThru] [-SkipDependencyCheck] [-AuthenticodeCheck] [-AcceptLicense]
[-WhatIf] [-Confirm] [<CommonParameters>]
[-TrustRepository] [-PassThru] [-SkipDependencyCheck] [-AuthenticodeCheck] [-Quiet]
[-AcceptLicense] [-WhatIf] [-Confirm] [<CommonParameters>]
```

### AsNupkgParameterSet

```
Save-PSResource [-Name] <String[]> [-Version <String>] [-Prerelease] [-Repository <String[]>]
[-Credential <PSCredential>] [-AsNupkg] [-Path <String>] [-TemporaryPath <String>]
[-TrustRepository] [-PassThru] [-SkipDependencyCheck] [-AuthenticodeCheck] [-AcceptLicense]
[-WhatIf] [-Confirm] [<CommonParameters>]
[-TrustRepository] [-PassThru] [-SkipDependencyCheck] [-AuthenticodeCheck] [-Quiet]
[-AcceptLicense] [-WhatIf] [-Confirm] [<CommonParameters>]
```

### InputObjectParameterSet

```
Save-PSResource [-Repository <String[]>] [-Credential <PSCredential>] [-AsNupkg] [-IncludeXml]
[-Path <String>] [-TemporaryPath <String>] [-TrustRepository] [-PassThru]
[-InputObject] <PSResourceInfo[]> [-SkipDependencyCheck] [-AuthenticodeCheck] [-AcceptLicense]
[-WhatIf] [-Confirm] [<CommonParameters>]
[-InputObject] <PSResourceInfo[]> [-SkipDependencyCheck] [-AuthenticodeCheck] [-Quiet]
[-AcceptLicense] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
Loading