For the complete documentation index, see llms.txt. This page is also available as Markdown.

New-PSUFolder

Creates a new folder within PSU.

SYNOPSIS

Creates a new folder within PSU.

SYNTAX

New-PSUFolder -Path <String> [-Type <FolderType>] [-ComputerName <String>] [-AppToken <String>]
 [-Credential <PSCredential>] [-UseDefaultCredentials] [-Integrated] [-TrustCertificate] [-Cookies]
 [<CommonParameters>]

DESCRIPTION

Creates a new folder within PSU. This will create a new folder within the internal git repository and additionally a configured remote.

EXAMPLES

Example 1

PS C:\> New-UAFolder -Name 'Scripts'

Creates a new Scripts folder in the root of the PSU folder structure.

Example 2

Creates a new Private folder in the Scripts folder of the PSU folder structure.

PARAMETERS

-AppToken

Specifies the app token to use when authenticating to the PowerShell Universal management API.

-ComputerName

Specifies the URL or host name of the target PowerShell Universal instance. Bare host names are normalized to an http://:5000 URL.

-Integrated

Uses the in-process integrated management client when the cmdlet runs inside PowerShell Universal.

-Path

Specifies the path to use for the resource.

-Type

Specifies the resource type.

-UseDefaultCredentials

Uses the current Windows credentials when authenticating to the management API.

-Credential

Credentials to login to the PowerShell Universal Management API.

-TrustCertificate

Whether the cmdlet should ignore certificate issues.

-Cookies

Reuses and persists authentication cookies for the current PowerShell session.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable, and -ProgressAction. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

Last updated

Was this helpful?