- PowerShell功能特点
- PowerShell历史
- PowerShell和命令提示符的区别
- PowerShell与Bash Shell的区别
- PowerShell以管理员身份运行
- Windows PowerShell ISE
- PowerShell核心
- 创建并运行PowerShell脚本
- PowerShell注释
- PowerShell Cmdlet
- PowerShell基本cmdlet命令
- PowerShell Get-childItem命令
- PowerShell Get-Item命令
- PowerShell Get-Location命令
- PowerShell set-item命令
- PowerShell set-location命令
- PowerShell new-item命令
- PowerShell copy-item命令
- PowerShell move-item命令
- PowerShell remove-item命令
- PowerShell rename-item命令
- PowerShell add-content命令
- PowerShell clear-content
- PowerShell get-content命令
- PowerShell get-date命令
- PowerShell set-content命令
- PowerShell out-file命令
- PowerShell write-host命令
- PowerShell get-command命令
- PowerShell invoke-command命令
- PowerShell get-help命令
- PowerShell start-process命令
- PowerShell test-path命令
- PowerShell foreach-object命令
- PowerShell sort-object命令
- PowerShell where-object命令
- PowerShell变量
- PowerShell自动变量
- PowerShell首选项变量
- PowerShell数组
- PowerShell哈希表
- PowerShell运算符
- PowerShell算术运算符
- PowerShell赋值运算符
- PowerShell比较运算符
- PowerShell逻辑运算符
- PowerShell重定向运算符
- PowerShell拆分和合并运算符
- PowerShell if语句
- PowerShell if-else语句
- PowerShell else-if语句
- PowerShell Switch语句
- PowerShell Do-While循环
- PowerShell for循环
- PowerShell ForEach循环
- PowerShell While循环
- PowerShell Continue和Break
- PowerShell字符串
- PowerShell函数
- PowerShell Try Catch Finally
PowerShell首选项变量
首选项变量是用于自定义Windows PowerShell行为的那些变量。 任何用户都可以更改这些变量的值。 这些变量影响PowerShell操作环境以及在该环境中运行的所有命令。
下表列出了首选项变量及其默认值:
变量名称 | 默认值 |
---|---|
$ConfirmPreference |
High |
$DebugPreference |
SilentlyContinue |
$ErrorActionPreference |
Continue |
$ErrorView |
NormalView |
$FormatEnumerationLimit |
4 |
$InformationPreference |
SilentlyContinue |
$LogCommandHealthEvent |
False(未记录) |
$LogCommandLifecycleEvent |
False(未记录) |
$LogEngineHealthEvent |
True(未记录) |
$LogEngineLifecycleEvent |
True(未记录) |
$LogProviderLifecycleEvent |
True(未记录) |
$LogProviderHealthEvent |
True(未记录) |
$MaximumHistoryCount |
4096 |
$OFS |
空格字符 |
$OutputEncoding |
UTF8Encoding对象 |
$ProgressPreference |
Continue |
$PSDefaultParameterValues |
None(空哈希表) |
$PSEmailServer |
None |
$PSModuleAutoLoadingPreference |
All |
$PSSessionApplicationName |
WSMAN |
$PSSessionConfigurationName |
http://schemas.microsoft.com/PowerShell/microsoft.PowerShell |
$PSSessionOption |
一个哈希对象 |
$VerbosePreference |
SilentlyContinue |
$WarningPreference |
Continue |
$WhatIfPreference |
0 |
上一篇:PowerShell自动变量
下一篇:PowerShell数组
关注微信小程序
扫描二维码
程序员编程王