Set-Variable參考 意見反應 模組: Microsoft.PowerShell.Utility 設定變數的值。 如果其中一個具有要求的名稱不存在,則建立變數。語法PowerShell 複製 Set-Variable [-Name] <String[]> [[-Value] <Object>] [-Include <String[]>] [-Exclude <String[]>] [-Description <String>] [-Option <ScopedItem...
在PowerShell中,可以使用set命令来设置变量,并对其进行赋值。本文将围绕这个主题展开,介绍PowerShell中设置变量的方法和使用场景。 一、PowerShell中设置变量的方法 在PowerShell中,可以使用set命令来设置变量。set命令的语法如下: ``` Set-Variable [-Name] <string> [-Value <Object>] [-Option <ScopedItem...
Set-Variable -name b -value 99 1. 2. 声明只读变量:(参考New-Variable) New-Variable pi -Value 3.14 -Force -Option readonly New-Variable zero -Value 0 -Force -Option constant 1. 2. Option Description "None" NOoption (default) "ReadOnly" Variablecontents may only be modifie...
Set-Variable (別名為 set) 可以用來指定變數值,如果欲指定值的變數不存在,會自動建立該變數。例如以下的例子:# 建立變數 Company,其值為字串 Microsoft set Company -value "Microsoft" 取得變數:Get-VariableGet-Variable (別名是 gv) 可以用來取得已經建立的變數,例如以下的例子取得上例建立的兩個變數:...
为了管理变量,powershell提供了五个专门管理变量的命令Clear-Variable,Get-Variable,New-Variable,Remove-Variable,Set-Variable。因为虚拟驱动器variable:的存在,clear,remove,set打头的命令可以被代替。但是Get-Variable,New-Variable。却非常有用new-variable可以在定义变量时,指定变量的一些其它属性,比如访问权限。同样Get...
How can I create aReadOnlyvariable in Windows PowerShell? Use theSet-Variablecmdlet to create aReadOnlyvariable, and specifyReadOnlyfor theOptionparameter, and you can specify a description for the variable: Set-Variable -Name myvariable -Value “value” -Description “mred variable” -...
SetLocationCommand SetMarkdownOptionCommand SetPSBreakpointCommand SetPSDebugCommand SetPSSessionConfigurationCommand SetServiceCommand SetStrictModeCommand SetTimeZoneCommand SetTraceSourceCommand SetVariableCommand SetVariableCommand Constructors Properties Description Exclude Force Include Name Option PassThru Value ...
SetLocationCommand SetMarkdownOptionCommand SetPSBreakpointCommand SetPSDebugCommand SetPSSessionConfigurationCommand SetServiceCommand SetStrictModeCommand SetTimeZoneCommand SetTraceSourceCommand SetVariableCommand SetVariableCommand Constructors Properties Description Exclude Force Include Name Option PassThru Value...
Set-Variable a 1 # Using the variable provider # Never useful, just cool set-item variable:\a 1 # Using the variable provider with provider shortcut # Useful when you want to do ${env:ProgramFiles(x86)} ${variable:a} = 1 # Using the SessionState (PowerShell APIs) ...
由於 Windows PowerShell 常數不允許移除、清除或更改其值,因此若以 Remove-Variable、Clear-Variable 或 Set-Variable 試圖移除、清除或更改其值,都會出現錯誤 (如下圖)。此外要注意的是,不能將現有的變數轉成常數,例如以 Set-Variable 對現有變數加上 -Option Constant,會導致錯誤。再者,建立常數的同時別忘了...