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
20 changes: 14 additions & 6 deletions reference/5.1/Microsoft.PowerShell.Management/Get-HotFix.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
keywords: powershell,cmdlet
locale: en-us
Module Name: Microsoft.PowerShell.Management
ms.date: 5/20/2019
ms.date: 05/20/2019
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/get-hotfix?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Get-HotFix
Expand Down Expand Up @@ -123,11 +123,19 @@ Accept wildcard characters: False

### -Credential

Specifies a user account that has permission to access the computer and run commands. Type a user
name, such as **User01**, **Domain01\User01**, or enter a **PSCredential** object, generated by the
`Get-Credential` cmdlet. If you type a user name, you're prompted for a password.
Specifies a user account that has permission to access the computer and run commands. The default is
the current user

When the **Credential** parameter isn't specified, `Get-Hotfix` uses the current user.
Type a user name, such as **User01** or **Domain01\User01**, or enter a **PSCredential** object
generated by the `Get-Credential` cmdlet. If you type a user name, you're prompted to enter the
password.

Credentials are stored in a [PSCredential](/dotnet/api/system.management.automation.pscredential)
object and the password is stored as a [SecureString](/dotnet/api/system.security.securestring).

> [!NOTE]
> For more information about **SecureString** data protection, see
> [How secure is SecureString?](/dotnet/api/system.security.securestring#how-secure-is-securestring).

```yaml
Type: PSCredential
Expand All @@ -136,7 +144,7 @@ Aliases:

Required: False
Position: Named
Default value: None
Default value: Current user
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down
18 changes: 13 additions & 5 deletions reference/7/Microsoft.PowerShell.Management/Get-HotFix.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,19 @@ Accept wildcard characters: False

### -Credential

Specifies a user account that has permission to access the computer and run commands. Type a user
name, such as **User01**, **Domain01\User01**, or enter a **PSCredential** object, generated by the
`Get-Credential` cmdlet. If you type a user name, you're prompted for a password.
Specifies a user account that has permission to access the computer and run commands. The default is
the current user

When the **Credential** parameter isn't specified, `Get-Hotfix` uses the current user.
Type a user name, such as **User01** or **Domain01\User01**, or enter a **PSCredential** object
generated by the `Get-Credential` cmdlet. If you type a user name, you're prompted to enter the
password.

Credentials are stored in a [PSCredential](/dotnet/api/system.management.automation.pscredential)
object and the password is stored as a [SecureString](/dotnet/api/system.security.securestring).

> [!NOTE]
> For more information about **SecureString** data protection, see
> [How secure is SecureString?](/dotnet/api/system.security.securestring#how-secure-is-securestring).

```yaml
Type: PSCredential
Expand All @@ -136,7 +144,7 @@ Aliases:

Required: False
Position: Named
Default value: None
Default value: Current user
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down
2 changes: 2 additions & 0 deletions reference/7/PSReadLine/Set-PSReadlineOption.md
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,8 @@ Accept wildcard characters: False
When the **ViModeIndicator** is set to `Script`, the script block provided will be invoked every
time the mode changes. The script block is provided one argument of type `ViMode`.

This parameter was introduced in PowerShell 7.

```yaml
Type: ScriptBlock
Parameter Sets: (All)
Expand Down
6 changes: 4 additions & 2 deletions reference/7/PowerShellGet/Publish-Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,10 @@ Accept wildcard characters: False

### -SkipAutomaticTags

Removes commands and resources from being included as tags.
Skips automatically adding tags to a module.
Removes commands and resources from being included as tags. Skips automatically adding tags to a
module.

This parameter was introduced in PowerShell 7.

```yaml
Type: SwitchParameter
Expand Down
4 changes: 3 additions & 1 deletion reference/7/PowerShellGet/Update-Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ accessible only to the current user of the computer:

`$home\Documents\PowerShell\Modules`

This parameter was introduced in PowerShell 7.

```yaml
Type: String
Parameter Sets: (All)
Expand All @@ -284,7 +286,7 @@ Accepted values: AllUsers, CurrentUser

Required: False
Position: Named
Default value: None
Default value: CurrentUser
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down