Category - deutsch

SharePoint ToolBox 81 – Fussball WM 2014 Tippspiel App für SharePoint

 

Ein SharePoint Toolbox Special zur Fußball WM 2014

Die novaCapta in Köln stellt zur Fußball Weltmeisterschaft 2014 eine kostenlose SharePoint Tipp-App für das Intranet zur Verfügung. Mit der App kann man:

  • Kollegen zum Tippen einladen
  • Tipps direkt auf der SharePoint Pinnwand veröffentlichen
  • Den kompletten Spielplan und alle bisherigen Ergebnisse einsehen
  • Tipps bis kurz vor Spielende abgeben und ändern
  • Alle eigenen Tipps und Punkte ansehen
  • Das Tipp-Ranking aufrufen – auch als Webpart über beliebige SharePoint-Seiten

Die WM Tippspiel-App kann über den Microsoft SharePoint AppStore hier   heruntergeladen werden, ist mobilfähig und kostenlos. Die App ist zur Zeit lauffähig auf Office 365/SharePoint Online.

Ausführliche Info bei novaCapta

 

 

 

 

SharePoint ToolBox 80

Office 365 Drive Mapping for Enterprise Desktops

Office 365 Drive Mapping for use with Enterprise Desktops. Allows users to utilize the technology known as SharePoint Online for folder redirection. This project is to enable the use of Office 365 as redirected folders in Microsoft. Specifically, this script and method can be used on a Windows 7 desktop (or higher) with Citrix and roaming profiles (or any persistent profile method). What makes this unique is that no local storage is used (unless you can’t connect to office 365 and then it’s only temporary).

Sharepoint 2013- language toggle

In SharePoint 2013 the language switcher drop down is removed … So we have tried to implement our own switcher with same concept in SharePoint 2010. Reference the Changing the Display Language – But trying to add the JavaScript was useless.

LDAP/AD Claims Provider For SharePoint 2013

In SAML authentication mode, SharePoint does not try to resolve user input in the people picker, and anything users type is validated without any check.
This claims provider implements lookup against Active Directory or any other LDAP, and comes with 2 administration pages (available under Central administration / Security) to customize many settings to fit most of the organization needs:

SharePoint ToolBox 79

Office Web Widgets – Experimental 0.1.0

UI Widgets to build apps for Office and SharePoint. This experimental release contains the PeoplePicker and the ListView widgets. Consult the project web page for documentation.

New Open Source Office 365 SDK for Android

With the Office 365 SDK for Android Preview, it’s now possible to use data stored in Microsoft Office 365 from your Android Apps. This means, you can access SharePoint lists, folders or Exchange calendar, contacts and emails from within your Android-based applications.

OFFICE APP MODEL SAMPLES

Office App Model Samples (AMS) are code examples and scenarions developed by the community for the community.

SHAREPOINT 2013 WEB ANALYTICS DATA EXPORT TO CSV USING POWERSHELL

The analytics engine in SharePoint 2013 has been completely re-built. This provides new capability and analytics in the form of Popularity Trends.

SharePoint ToolBox 78 Wetter-Webpart im SharePoint bereitstellen

Wer einen Wetter-Webpart im eigenen SharePoint bereitstellen will, kann das heute so schnell tun, dass man darüber kaum mehr nachdenken muss. Hier liefere ich eine kurze Anleitung zum Ziel:

Folgende Werkzeuge werden benötigt:

  • Standard XML-Viewer Webpart
  • Wetter-API
  • Ansprechende Wetter-Icons

Und so geht’s:

Um Wetterdaten anzeigen zu können, muss eine API mit entsprechenden Informationen zur Verfügung stehen. Wetter-APIs werden von vielen Anbietern bereitgestellt. Ruft man eine API über einen Browser auf, sind die darin befindlichen Daten im Detail ersichtlich. Dies ist vor allem dazu notwendig, um später die XSL-Struktur nach eigenen Wünschen beschreiben zu können.

Die zur Verfügung stehenden Wetterdaten meiner API-Schnittstelle sehen wie folgt aus:

[code language=“css“]
<current>
<city id="2950159" name="Berlin">
<coord lon="13.41" lat="52.52"/>
<country>DE</country>
<sun rise="2014-02-19T06:13:11" set="2014-02-19T16:27:04"/>
</city>
<temperature value="5.27" min="4" max="6.3" unit="celsius"/>
<humidity value="63" unit="%"/>
<pressure value="1010.2" unit="hPa"/>
<wind>
<speed value="2.9" name="Light breeze"/>
<direction value="230" code="SW" name="Southwest"/>
</wind>
<clouds value="64" name="broken clouds"/>
<precipitation mode="no"/>
<weather number="500" value="leichter Regen" icon="10d"/>
<lastupdate value="2014-02-19T08:44:55"/>
</current>

[/code]

Jeder Knoten liefert verschiede Informationen, welche auch ineinander geschachtelt sein können. Mein Wetter-Webpart soll in einer bereits festgelegten Ansicht dargestellt werden:

Die Informationen, welche ich also für die Anzeige meines Wetter-Webparts benötige sind folgende:

  • „icon“ aus dem Knoten „weather“ (hier mit dem Wert „10d“)
  • „name“ aus dem Knoten „city“ (hier mit dem Wert „Berlin“)
  • „value“ aus dem Knoten „temperature“ (hier mit dem Wert „5.27“)
  • „value“ aus dem Knoten „weather“ (hier mit dem Wert „leichter Regen“)

Diese Informationen muss ich nun in meine XSL-Struktur verpacken, damit später mein gewünschtes Ergebnis zu sehen ist.
Mein XSL hat folgende Struktur:

[code language=“css“]
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="html" indent="yes" encoding="utf-8" />
<xsl:template match="/">
<html>
<body>
<table class="WeatherWP" cellpadding="0" cellspacing="0">
<tr>
<td>
<xsl:call-template name="weatherIcon"/>
</td>
<td>
<xsl:apply-templates/>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>

<xsl:template name="weatherIcon">
<xsl:variable name="weather">
<xsl:value-of select="@value"></xsl:value-of>
</xsl:variable>
<xsl:variable name="icon">
<xsl:value-of select="//current/weather/@icon"></xsl:value-of>
</xsl:variable>
<div class="icon{$icon}">
<img src="/_layouts/15/images/blank.gif" alt="{$weather}" title="{$weather}" />
</div>
</xsl:template>

<xsl:template match="city">
<div class="City">
<xsl:value-of select="@name"/>
</div>
</xsl:template>

<xsl:template match="temperature ">
<div class="Temperature">
<xsl:value-of select=’format-number(@value, "0")’/>
<xsl:text>&#x2103;</xsl:text>
</div>
</xsl:template>

<xsl:template match="weather">
<div class="Weather">
<xsl:value-of select="@value"/>
</div>
</xsl:template>
</xsl:stylesheet>
[/code]

Im oberen Bereich der Tabelle übergebe ich im ersten TD das XSL-Template mit dem Namen „weatherIcon“, im zweiten TD alle anderen Templates. Wenn man sich das XSL und die in der API bereitstehenden Knoten in Ruhe anschaut, erklärt sich die Zusammensetzung fast von selbst. Wenn hierzu weitere Informationen benötigt werden, gehe ich nach einem entsprechenden Hinweis gern noch einmal im Detail darauf ein.

Die daraus entstehende HTML-Struktur, welche mir im Browser angezeigt wird, sieht wie folgt aus:

[code language=“css“]</pre>
<table class="WeatherWP" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div class="icon10d">
<img title="" alt="" src="/_layouts/15/images/blank.gif" />
</div>
</td>
<td>
<div class="City">Berlin</div>
<div class="Temperature">5℃</div>
<div class="Weather">leichter Regen</div>
</td>
</tr>
</tbody>
</table>
[/code]

CSS-Anpassungen können dann beliebig vorgenommen werden. Ich übergebe für jedes Icon ein entsprechendes Bild per CSS, welches sich an einer Klasse orientiert, die aus dem Begriff „icon“  und dem jeweilig gelieferten Wert aus der API zusammengesetzt ist und verschiebe die Informationen an die von mir gewünschten Stellen.

Um schließlich alles im SharePoint anzeigen lassen zu können, muss im ersten Schritt der Standard XML-Viewer Webpart einer beliebigen Webpartzone hinzugefügt werden. Dann auf „Webpart bearbeiten“ klicken und in die Konfiguration des Webparts übergehen.  Im Feld „XML-Verknüpfung“ wird nun die API-URL eingefügt. Sie dient an dieser Stelle als Lieferant der entsprechenden Daten und verknüpft den Webpart mit diesen.
Über den Button „XSL-Editor“ öffnet sich ein kleines Fenster, in welches nun die XSL-Struktur übertragen wird.  Auf „übernehmen“ und anschließend auf „OK“ klicken und schon ist der Wetter-Webpart wie gewünscht sichtbar.

SharePoint ToolBox 67

SharePoint Solution Deployer

A highly configurable but easy to use PowerShell script to deploy WSPs to SharePoint 2010/2013. It performs important prerequisite checks, post deployment actions and allows to „hook“ in your custom PowerShell actions. Can be also used for staging environments.

Visio Stencils for Microsoft Dynamics CRM 2011

A set of Microsoft Visio Stencils that enable the design of Microsoft CRM application screens without the need for development resources or access to professional IT Consultants.

Download and Install SharePoint 2013 Prerequisites on Windows Server 2012

These PowerShell scripts will automate downloading and installing the SharePoint 2013 Prerequisites on Windows Server 2012. The scripts will assist those who need to install SharePoint 2013 ‚offline‘ or wish to manually install its Prerequisites on Windows Server 2012.

Modern UI – SharePoint 2010 Master Page

Modern UI Master Page and Styles for SharePoint 2010. This will give the Metro/Modern UI styling of SharePoint 2013 to your SharePoint 2010 team sites. Features include quick launch styling, global nav and drop-down styling, search box styling and layout change, web part header styling and  Segoe UI font.

 

SharePoint ToolBox 65

Auf dem ShareCamp 2013 in München hat Max Melcher einen Vortrag

SharePoint 2013 – Best Tools (v3)
Automatisierte SharePoint 2013 Installation

gehalten und Tools hier aus der Toolbox, aber auch andere Addons vorgestellt:

Die Slides zum Vortrag gibt es auf Slideshare:

SharePoint ToolBox #014 Chocolatey Nuget

// von Maximilian Melcher – jetzt auch mit Webcam 🙂

Chocolatey Nuget ist ein Paket Manager für Windows, vergleichbar mit apt-get für Linux-Systeme. Mit anderen Worten: Man kann damit Software und Tools automatisiert mit PowerShell installieren.

Chocolatey ist kostenfrei verfügbar: http://chocolatey.org

Die zwei MyGet feeds aus dem Webcast sind hier erreichbar:

Diese SharePoint Toolbox gibt es auch in Englisch.

SharePoint ToolBox #012 AutoSPSourceBuilder

// von Maximilian Melcher

AutoSPSourceBuilder: ein mächtiges PowerShell Script mit dem es möglich ist, Sharepoint 2010/2013 Installations-Pakete zu erstellen. Diese können mit den PreRequisites, Service Packs, Language Packs und kumulativen Updates kombiniert werden, eine nachträgliche Installation von z. B. Updates ist dann nicht nötig.

Kostenloser Download: http://autospsourcebuilder.codeplex.com/

English Version available!

SharePoint ToolBox 64

SharePoint Metro Grid Web Part

The SharePoint 2010/2013 „Metro Grid“ web part displays links in Metro Tile Grid format. A flexible SharePoint web part that provides clickable links in the shape of square tiles.  Super easy to configure and customize, just add the web part to a page and click „Add link“ to get started.  All interaction is AJAXed provided by jQuery and jQuery UI plugins. Compatible with all current versions of SharePoint including 2007, 2010, and 2013.  Plus, it doesn’t require the paid versions so those of you using the WSS or Foundation versions can take advantage of this web part.  Inspired by the new Windows 8 UI and also the SharePoint 2013 Team Site template, this modern tile style is catching on and is a great way to present linked content.  It comes with 251 icons available as an optional site collection feature, or use your own images.

SharePoint 2013 BI & ECM Demo Builds with SQL 2012 SP1

Through the use of Content Pack Concept for SelfService BI, ECM, Search and BigData,  we hope to bring you the ability to use the same demos we have built based with examples like Contoso Medical, Great White Gears, Contoso Schools, AdventureWorks Camping Supplies, TailSpinToys,  Contoso Casino, and more. We have extended the Content Pack Concept to include SQL and AD-DS OUs, Users, and Groups so that we can now install SQL 2012 SP1 and SharePoint 2013 in the same configuration as our environment, that allows us to give you these demos.

The following Demo installations are available for download now.

SharePoint 2013 Service Account Creator

This project consists of a  PowerShell script, some XML input files,  which together provide a fully automated creation of the Service Accounts required for SharePoint Server 2013.

The project comes with three different sets of Service Accounts for both SQL and SharePoint. You have the low, medium and high security option. The Higher Security, the more accounts you have in order to better achieve the Least Privilege Service Accounts.  However, there is also an XML file you can define and create what users you want!

SharePoint ToolBox #010 SharePoint 2010 BlobCache Manager

// von Maximilian Melcher

In dieser Toolbox stellt Maximilian den SharePoint 2010 BlobCache Manager vor. Mit ihm können die Einstellungen des BlobCaches direkt in der Zentraladministration vorgenommen werden.

SharePoint 2010 BlobCache Manager
(http://sp2010blobcachemgr.codeplex.com/)

Update: Es gibt ein ähnliches Tool auf CodePlex von Trevor Seward http://blobcache.codeplex.com/

Es gibt auch eine englische Version dieses Reviews

SharePoint ToolBox #006 Tools für FAST Search for SharePoint 2010

// von Maximilian Melcher

Diese Toolbox dreht sich  rund um FAST Search for SharePoint 2010 (FS4SP): Es werden zwei Tools und eine Solution für FAST vorgestellt.

FAST Search for Sharepoint MOSS 2010 Query Tool (http://fastforsharepoint.codeplex.com/)

Tool mit dem man sehr leicht Such-Queries abschicken kann und und dabei sehr viele FAST-spezifischen Such-Eigenschaften unterstützt.

FAST Search for Sharepoint 2010 Query Logger (http://fs4splogger.codeplex.com/)

Mit diesem Tool kann man die Suchtreffer bezüglich Ranking auswerten und sich ansehen was im FAST-Backend als Suchanfrage ankam.

SharePoint Search Parts
(http://spsearchparts.codeplex.com/)

Ein WebPart mit dem es möglich ist FQL-Suchanfragen über die Suchbox abzuschicken.