Skip to content

Add PSProfileToProfile

Nate Ferrell edited this page Sep 8, 2019 · 1 revision

Add-PSProfileToProfile

SYNOPSIS

Adds `Import-Module PSProfile` to the desired PowerShell profile file if not already present.

SYNTAX

Add-PSProfileToProfile [[-Scope] <String>] [-DisableLoadTimeMessage] [<CommonParameters>]

DESCRIPTION

Adds `Import-Module PSProfile` to the desired PowerShell profile file if not already present.

EXAMPLES

EXAMPLE 1

Add-PSProfileToProfile -Scope CurrentUserAllHosts

Adds `Import-Module PSProfile` to the $profile.CurrentUserAllHosts file. Creates the parent folder if missing.

EXAMPLE 2

Add-PSProfileToProfile -DisableLoadTimeMessage

Adds `Import-Module PSProfile -ArgumentList $false` to the $profile file. Creates the parent folder if missing.

PARAMETERS

-Scope

The profile scope to add the module import to. Defaults to CurrentUserCurrentHost (same as bare $profile).

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: CurrentUserCurrentHost
Accept pipeline input: False
Accept wildcard characters: False

-DisableLoadTimeMessage

If $true, adds `-ArgumentList $false` to the Import-Module call to hide the Module Load Time message.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

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

INPUTS

OUTPUTS

NOTES

RELATED LINKS

PSProfile

Concepts

Function Help

Command Aliases

Configuration

Helpers

Init Scripts

Meta

Modules to Import

Modules to Install

Path Aliases

Plugin Paths

Plugins

Power Tools

Project Paths

Prompts

Script Paths

Secrets

Symbolic Links

Variables

Badges

Azure Pipelines      Discord - Chat      Slack - Chat      Codacy PowerShell Gallery      GitHub Releases      GitHub Releases

Clone this wiki locally