Set-Variable - PowerShell command help and examples

Sets the value of a variable. Creates the variable if one with the requested name does not exist. (Set-Variable)


NAME
Set-Variable
SYNOPSIS
Sets the value of a variable. Creates the variable if one with the requested name does not exist.
SYNTAX
Set-Variable [-Name] <string[]> [[-Value] <Object>] [-Description <string>] [-Exclude <string[]>] [-Force] [-Include <string[]>] [-Option {None | ReadOnly | Constant | Private | AllScope}] [-PassThru] [-Scope <string>] [-Visibility {Public | Private}] [-Confirm] [-WhatIf] [<CommonParameters>]
DESCRIPTION
The Set-Variable cmdlet assigns a value to a specified variable or changes the current value. If the variable does not exist, the cmdlet creates it.
PARAMETERS
-Description <string> Specifies the description of the variable. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Exclude <string[]> Omits the specified items. The value of this parameter qualifies the Path parameter. Enter a path element or pattern, such as "*.txt". Wildcards are permitted. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Force [<SwitchParameter>] Allows you to create a variable with the same name as an existing read-only variable, or to change the value of a 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 -Include <string[]> Changes only the specified items. The value of this parameter qualifies the Name parameter. Enter a name or name pattern, such as "c*". Wildcards are permitted. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Name <string[]> Specifies the variable name. Required? true Position? 1 Default value Accept pipeline input? true (ByPropertyName) Accept wildcard characters? false -Option <ScopedItemOptions> Changes the value of the Options property of the variable. Valid values are: -- None: Sets no options. ("None" is the default.) -- ReadOnly: The properties 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. -- 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 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 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 an object that represents the value of the variable to Set-Variable.
OUTPUTS
None or System.Management.Automation.PSVariable When you use the PassThru parameter, Set-Variable generates a System.Management.Automation.PSVariable object representing the new or changed variable. Otherwise, this cmdlet does not generate any output.
NOTES

Examples

EXAMPLE 1
C:\PS>set-variable -name desc -value "A description" C:\PS>get-variable -name desc
Description
----------- These commands set the value of the "desc" variable to "A description", and then get the value of the variable.
EXAMPLE 2
C:\PS>set-variable -name processes -value (Get-Process) -option constant -scope global -description "All processes" -passthru | format-list -property *
Description
----------- This command creates a global, read-only variable that contains all processes on the system, and then it displays all properties of the variable. The command uses the Set-Variable cmdlet to create the variable. It uses the PassThru parameter to create an object representing the new variable, and it uses the pipeline operator (|) to pass the object to the Format-List cmdlet. It uses the Property parameter of Format-List with a value of all (*) to display all properties of the newly created variable. The value, "(Get-Process)", is enclosed in parentheses to ensure that it is executed before being stored in the variable. Otherwise, the variable contains the words "Get-Process".
EXAMPLE 3
C:\PS># set-variable -name counter -visibility private C:\PS> new-variable -name counter -visibility public -value 26 C:\PS> $counter 26 C:\PS> get-variable c* Name Value ---- ----- Culture en-US ConsoleFileName ConfirmPreference High CommandLineParameters {} Counter 26 C:\PS> set-variable -name counter -visibility private 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> .\use-counter.ps1 Commands completed successfully.
Description
----------- This command shows how to change the visibility of a variable to "Private". This variable can be read and changed by scripts with the required permissions, but it is not visible to the user. The sample output shows the difference in the behavior of public and private variables. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=113401 Get-Variable New-Variable Remove-Variable Clear-Variable C:\Windows>powershell get-help Remove-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: Sets the value of a variable. Creates the variable if one with the requested name does not exist.

HTTP: ... PS_Windows/en/Set-Variable.htm
0.046
18151

How can i find and open the program directory in Windows 8.1/10? (location, file, path)

Perl Strato Web Hosting funktioniert nicht, was mache ich falsch!

Memory is less than the amount of installed memory in Windows 8.1 / 10!

How can i sign up, register, log in on Facebook.com?

Wie kann ich in MeinPlatz in meine Landessprache übersetzen! 

Log in to www.yahoo.com, crack the password, or register for FreeMail?



(0)