all of w_powershell
Posted on August 19th, 2008 in w_powershell, w_vmware, windows
Now it’s easy to automate repetitive tasks in your VMware virtual environment. With the VMware Virtual Infrastructure Toolkit (for Windows), you benefit from an easy-to-use scripting tool that provides a familiar Microsoft PowerShell interface. This new toolkit takes advantage of the existing VMware Infrastructure SDK and translates it into a PowerShell interface. This way, you [...]
Read Full Post |
Make a Comment ( Comments Off so far )
Posted on January 8th, 2008 in e_sharepoint, ecm, w_powershell, windows
wie werden eigentlich die informationen aus dem bdc auf feld-ebene gespeichert? schauen wir uns das anhand eines beispieles an:
nehmen wir an, wir haben folgenden bdc:
application: QueryDemoData
entity: Demo_Entity_ID
systeminstance: Demo_LobSystemInstance
dieser bdc wird in einem blog bei den posts verwendet – und zwar in der column namens “DemoID”. primär wird das gleichnamige bdc feld “DemoID” angezeigt, weiters noch [...]
Read Full Post |
Make a Comment ( Comments Off so far )
Posted on January 5th, 2008 in e_sharepoint, ecm, w_powershell, windows
will man mit der powershell in einer wiki ein dokument hinzufügen, so kann man dies nicht Microsoft.SharePoint.SPListItem Add() erledigen, weil es sich bei der wiki ja um eine document library handelt (die wiki seiten sind nichts anderes als aspx dokumente!) – daher schlägt folgendes fehl:
# vars
$SiteName = “http://mosstest/”
$WebName = “/Wiki/”
$ListName = “Wiki Pages”
# connect to [...]
Read Full Post |
Make a Comment ( 1 so far )
Posted on January 4th, 2008 in e_sharepoint, ecm, w_powershell, windows
um die powershell verwenden zu können, sind folgende vorbereitungen notwendig:
- download und installieren der powershell auf einem server, auf dem auch moss installiert ist
- öffnen der powershell und absetzen des folgenden befehls:
set-executionpolicy RemoteSigned
dies ist optional und bewirkt, dass lokale scripts nicht signiert sein müssen
- absetzen der beiden folgenden befehle:
[System.Reflection.Assembly]::Load(”Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”)
[System.Reflection.Assembly]::Load(”Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, [...]
Read Full Post |
Make a Comment ( 1 so far )