From 9462ada8842cf11e8ed2e7d93631801522902ef4 Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Thu, 20 Jul 2023 07:49:15 +0000 Subject: [PATCH] Supporting Posh.Profiles Fixes #40, Fixes #57, Fixes #58, Fixes #59, Fixes #60 --- docs/Posh.Profiles.Add.md | 67 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 docs/Posh.Profiles.Add.md diff --git a/docs/Posh.Profiles.Add.md b/docs/Posh.Profiles.Add.md new file mode 100644 index 0000000..5da0cb9 --- /dev/null +++ b/docs/Posh.Profiles.Add.md @@ -0,0 +1,67 @@ +Posh.Profiles.Add() +------------------- + + + + +### Synopsis +Adds content to a profile + + + +--- + + +### Description + +Adds content to a PowerShell profile + + + +--- + + +### Parameters +#### **Content** + +The content to add to your profile. + + + + + + +|Type |Required|Position|PipelineInput| +|---------------|--------|--------|-------------| +|`[ScriptBlock]`|false |1 |false | + + + +#### **WhichProfile** + +Which profile should the content be added to? +The default is the current user's current host. + + + +Valid Values: + +* AllUsersAllHosts +* AllUsersCurrentHosts +* CurrentUserAllHosts +* CurrentUserCurrentHost + + + + + + +|Type |Required|Position|PipelineInput| +|----------|--------|--------|-------------| +|`[String]`|false |2 |false | + + + + + +---