Powershell小技巧之使用Update-TypeData扩展类型系统
脚本
Update-TypeData -TypeName 'System.DateTime' -MemberName '时辰' -MemberType 'ScriptProperty' -Value { $timeAliasArray='子丑寅卯辰巳午未申酉戌亥' $hour = $this.Hour [int]$index=0 if($hour -eq 22){ $index=11 } else{ $index=[math]::Floor( ( $hour+1 ) % 23 / 2 ) } return $timeAliasArray[ $index ] + "时" }
演示
上面的命令执行后,DateTime就多了一个属性,我们来验证下:
PS> (get-date).时辰 子时 PS> $t=Get-Date -Hour 17 PS> $t.时辰 酉时
总结
Update-TypeData与Add-Member相比,前者扩展的类型,后者扩展的实例。
如何永久扩展类型,可以放在Profile文件中,也可以直接修改ETS文件。
相关推荐
waiwaiLILI 2020-01-12
xiaoxiaoCNDS 2020-01-08
ITxiaobaibai 2020-01-01
liushun 2019-12-07
pointfish 2015-08-10
kktode 2014-12-19
86570791 2013-05-09
83284753 2010-03-24
changcongying 2019-06-28
周游列国之仕子 2019-06-28
being 2012-01-04
Simbacheng 2011-05-03
smartleizi 2011-04-29
不是油条 2014-01-21
silenter00 2013-03-08
lanyou00 2011-11-10
我的梦想 2016-07-18
jsjxxx 2016-07-13