New-Variable - PowerShell command help and examples

Creates a new variable. (New-Variable)


NAME
New-Variable
SYNOPSIS
Creates a new variable.
SYNTAX
New-Variable [-Name] <string> [[-Value] <Object>] [-Description <string>] [-Force] [-Option {None | ReadOnly | Constant | Private | AllScope}] [-PassThru] [-Scope <string>] [-Visibility {Public | Private}] [-Confirm] [-WhatIf] [<CommonParameters>]
DESCRIPTION
The New-Variable cmdlet creates a new variable in Windows PowerShell. You can assign a value to the variable while creating it or assign or change the value after it is created. You can use the parameters of New-Variable to set the properties of the variable (such as those that create read-only or constant variables), set the scope of a variable, and determine whether variables are public or private. Typically, you create a new variable by typing the variable name and its value, such as "$var = 3", but you can use the New-Variable cmdlet to use its parameters.
PARAMETERS
-Description <string> Specifies a description of the variable. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Force [<SwitchParameter>] Allows you to create a new variable with the same name as an existing read-only variable. By default, you can overwrite a variable unless the variable has an option value of ReadOnly or Constant. For more information, see the Option parameter. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Name <string> Specifies a name for the new variable. Required? true Position? 1 Default value Accept pipeline input? true (ByPropertyName) Accept wildcard characters? false -Option <ScopedItemOptions> Sets the value of the Options property of the new variable. Valid values are: -- None: Sets no options. ("None" is the default.) -- ReadOnly: The value of the variable cannot be changed except by using the Force parameter. You can use Remove-Variable to delete the variable. -- Constant: The variable cannot be deleted, and its properties cannot be changed. "Constant" is available only when you are creating an alias. You cannot change the option of an existing variable to "Constant". -- Private: The variable is available only within the scope specified by the Scope parameter. It is inherited by child scopes. (This value is not related to the "Private" value of the Visibility parameter.) -- AllScope: The variable is copied to any new scopes that are created. To see the Options property of the variables, type "get-variable| format-table -property name, options -autosize". Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -PassThru [<SwitchParameter>] Returns an object representing the new variable. By default, this cmdlet does not generate any output. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Scope <string> Determines the scope of the new variable. Valid values are "Global", "Local", or "Script", or a number relative to the current scope (0 through the number of scopes, where 0 is the current scope and 1 is its parent). "Local" is the default. For more information, see about_Scopes. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Value <Object> Specifies the initial value of the variable. Required? false Position? 2 Default value Accept pipeline input? true (ByValue, ByPropertyName) Accept wildcard characters? false -Visibility <SessionStateEntryVisibility> Determines whether the variable is visible outside of the session in which it was created. This parameter is designed for use in scripts and commands that will be delivered to other users. Valid values are: -- Public: The variable is visible. ("Public" is the default.) -- Private: The variable is not visible. When a variable is private, it does not appear in lists of variables, such as those returned by Get-Variable, or in displays of the Variable: drive. Commands to read or change the value of a private variable return an error. However, the user can run commands that use a private variable if the commands were written in the session in which the variable was defined. Required? false Position? named Default value Public Accept pipeline input? false Accept wildcard characters? false -Confirm [<SwitchParameter>] Prompts you for confirmation before executing the command. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -WhatIf [<SwitchParameter>] Describes what would happen if you executed the command without actually executing the command. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false <CommonParameters> This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type, "get-help about_commonparameters".
INPUTS
System.Object You can pipe a value to New-Variable.
OUTPUTS
None or System.Management.Automation.PSVariable When you use the PassThru parameter, New-Variable generates a System.Management.Automation.PSVariable object representing the new variable. Otherwise, this cmdlet does not generate any output.
NOTES

Examples

EXAMPLE 1
C:\PS>new-variable days
Description
----------- This command creates a new variable named "days". It has no value immediately following the command.
EXAMPLE 2
C:\PS>new-variable zipcode -value 98033
Description
----------- This command creates a variable named "zipcode" and assigns it the value "98033".
EXAMPLE 3
C:\PS>new-variable -name max -value 256 -option readonly new-variable -name max -value 1024 new-variable -name max -value 1024 -force C:\PS> new-variable -name max -value 256 -option readonly C:\PS> new-variable -name max -value 1024 New-Variable : A variable with name 'max' already exists. At line:1 char:13 + new-variable <<<< -name max -value 1024 C:\PS> new-variable -name max -value 1024 -force
Description
----------- This example shows how to use the ReadOnly option of New-Variable to protect a variable from being overwritten. The first command creates a new variable named Max and sets its value to "256". It uses the Option parameter with a value of ReadOnly. The second command tries to create a second variable with the same name. This command returns an error, because the read-only option is set on the variable. The third command uses the Force parameter to override the read-only protection on the variable. In this case, the command to create a new variable with the same name succeeds.
EXAMPLE 4
C:\PS>new-variable -name counter -visibility private #Effect of private variable in a module. C:\PS> get-variable c* Name Value ---- ----- Culture en-US ConsoleFileName ConfirmPreference High CommandLineParameters {} C:\PS> $counter "Cannot access the variable '$counter' because it is a private variable" C:\PS> Get-Counter Name Value ---- ----- Counter1 3.1415 ...
Description
----------- This command demonstrates the behavior of a private variable in a module. The module contains the Get-Counter cmdlet, which has a private variable named "Counter". The command uses the Visibility parameter with a value of "Private" to create the variable. The sample output shows the behavior of a private variable. The user who has loaded the module cannot view or change the value of the Counter variable, but the Counter variable can be read and changed by the commands in the module. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=113361 Get-Variable Set-Variable Remove-Variable Clear-Variable C:\Windows>powershell get-help Set-Variable -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Creates a new variable.

HTTP: ... PS_Windows/en/New-Variable.htm
0.202
11292

Handy Guthaben abfragen?

Der Windows Mauszeiger ist viel zu schnell, kann man es irgendwie einstellen?

Can I really turn my photos into PDF files on all Windows 11, 10, ... OS?

Fastest way to switch user in Windows 10, 11 without log-off?

Microsoft Surface Pro sound card defective, what can I do?

Müssen 32 Bit Programme im Ordner Programme x86 gespeichert werden?



(0)