标题: [原创教程] PowerShell 技能连载 - 用 PowerShell 来励志 [打印本页]
作者: victorwoo 时间: 2014-8-17 20:37 标题: PowerShell 技能连载 - 用 PowerShell 来励志
原始链接:PowerShell 技能连载 - 用 PowerShell 来励志
发表日期:2014-08-11
适用于所有 PowerShell 版本
编写 PowerShell 代码是十分带劲的,但是某些时候会令人感到沮丧。这是一个用 PowerShell 来励志的函数。只需要打开音箱,PowerShell 会在您执行每一条命令之后鼓励你。- function prompt
- {
- $text = 'You are great!', 'Hero!', 'What a checker you are.', 'Champ, well done!', 'Man, you are good!', 'Guru stuff I would say.', 'You are magic!'
- 'PS> '
- $host.UI.RawUI.WindowTitle = Get-Location
- (New-Object -ComObject Sapi.SpVoice).Speak(($text | Get-Random))
- }
复制代码
本文国际来源:Have PowerShell Cheer You Up!
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |