PowerShell New

法一:新建 %userprofile%\Documents\WindowsPowerShell\profile.ps1 就能让PowerShell 自动载人其中定义的内容。

法二:将.ps1文件改成.psm1文件,将其放在%userprofile%\Documents\WindowsPowerShell\Modules下,注意要为每个psm1文件件建一个同名的文件夹,然后将psm1文件放在这个文件夹中

Get-Module –listavailable        测试看能不能检测到新建的模块
Get-Command -module MyFunctions        获取对应的模块中的函数,很有用

来源:http://stackoverflow.com/questions/6016436/in-powershell-how-do-i-define-a-function-in-a-file-and-call-it-from-the-powersh

           http://msdn.microsoft.com/en-us/library/bb613488%28VS.85,loband%29.aspx

 

对Powershell和Command Prompt的字体等属性进行更改

在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont下新建“data=00,value=Consolas”的项,然后必须改变代码页为美国英语(437)才能使用这个字体,(手动在属性中更改代码页发现它不能修改,但可用命令“chcp 437”来修改)。背景色“34 40 42”前景色“192 192 192”看着不错。

 

对窗口右击后Default和Properties的区别:

1

Properties一般更有用,它可以改变shortcuts和原程序cmd.exe或powershell.exe的属性。

Defaults的作用是为cmd.exe或powershell.exe新建快捷方式时它会按照Defauls中的属性给那个快捷方式。

posted @ 2015-01-09 23:56  cnsealine  阅读(322)  评论(0编辑  收藏  举报