简介
简单来说pash就是bash+powershell
在linux中编译powershell脚本运行环境。在linux,mono中运行powershell脚本(*.ps1)
分类:
其他好文 时间:
2014-09-15 17:38:49
阅读次数:
338
Powershell配置SharePoint环境1. 设置outgoing email:1) Powershell:$loadasm =[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")$SPGlobal...
分类:
其他好文 时间:
2014-09-14 21:57:57
阅读次数:
198
Powershell配置SharePoint环境...
分类:
其他好文 时间:
2014-09-14 10:10:26
阅读次数:
211
Powershell配置SharePoint环境...
分类:
其他好文 时间:
2014-09-13 10:40:05
阅读次数:
153
官方:Applies To: Windows 8, Windows 8.1For a Windows Server®2012 core installation that is not connected to the Internet, you can use Windows PowerShell...
使用远程命令行管理程序,可以连接到运行 Microsoft Exchange Server 2010 的远程服务器来执行管理,无须在本地计算机上安装任何 Exchange 管理工具。远程命令行管理程序使用 Windows PowerShell 2.0 和 Windows 远程管理 (WinRM) 2...
分类:
其他好文 时间:
2014-09-05 19:40:11
阅读次数:
209
#加载.net的winform模块[Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")$app=[System.Windows.Forms.Application]$myForm=new-object System.Wi...
分类:
数据库 时间:
2014-09-05 18:06:31
阅读次数:
333
最近有点功夫安装测试了下XenServer6.2,这个版本及之后开始开源了,未许可版本和许可版本的最大区别是许可版本可通过Xencenter来自动化补丁安装。总之,xencenter的很多特点符合我的要求:1.免费版本、功能基本很全(HA、支持USBforwardtoVM、模板、快照)2.windows下xencente..
分类:
其他好文 时间:
2014-09-05 16:24:32
阅读次数:
204
既然我们配置了两台CAS服务器,那么为的就是让这两台服务器能够提供负载均衡的服务,在Exchange2013里配置负载均衡非常简单,因为没有了CASArray的概念,在Exchange2013里配置负载均衡完全是在图形化界面里完成的,而在Exchange2010里可能还需要用Powershell来实现。好的,下边..
分类:
其他好文 时间:
2014-09-04 19:17:50
阅读次数:
267
#加载winapi
$ini = Add-Type -memberDefinition @"
[DllImport("Kernel32")]
public static extern long WritePrivateProfileString (
string section ,
string key ,
string val ,
string filePath );
[DllImport(...