-
Server Error in ‘/’ Application (de)
AfraIT Shorty, du bist dran: Sieht die Fehlermeldung so aus? Wieder mal ein Server Error? Dann versuche die folgenden Punkte: Als erstes alle benötigten Server anpingen von einem Client aus (Active Directory Server, SQL Server, SharePoint Frontend, SharePoint Backend (Applikationsserver), sowie alle die mit der Farm zu tun haben). Danach alle Server durchgehen und prüfen ob die benötigten Services laufen. (DNS, SQL-Server Dienst, SP Timer (alle Dienste die mit “sp” Konten laufen). Es ist mir auch schon passiert, dass die Server an Ihrer Leistungsgrenze waren. Bedeutet zu wenig Arbeitsspeicher oder eine zu hohe CPU Auslastung. Wenn du virtuelle Maschinen betreibst
-
Hide field with Powershell (en)
You created a list with a bunch of columns. Great! Now you want to hide some of them in the NewForm or EditForm. Not so great. You can do it the quick and dirty way, open the form in SharePoint Designer, edit the form and delete the columns you don’t want to have in those forms. Well, there is a much better way of doing this. With Powershell. It is easier, faster and more comfortable if you want to see the columns you added after that in the form. With SharePoint Designer your form has to be finished. If you
-
Colored Calendar weekend (de)
Und wieder mal ein AfraIT Shorty. Hier zeige ich wie du das Wochenende des Kalenders einfärben kannst. Eine schöne und einfache Idee, die auch den Usern gefällt. Wie so oft beginnen wir ganz am Anfang. Gehe zur Seite auf der du einen Kalender haben möchtest, klicke auf die Websiteinhalte und dann auf “App hinzufügen”. Unter der Überschrift “Apps, die Sie hinzufügen können” wähle den Kalender aus. Vergib einen Namen (Ich habe hier einfach “Testkalender” gewählt) und klicke auf “Erstellen”. Du wirst nun wieder zu der App-Übersicht geleitet. Klicke nun auf den Titel oder die Kachel des soeben erstellten Kalenders. Nun
-
Colored Calendar weekend (en)
It is SHORTY-TIME! In this blog post I want to show you how you can modify you weekend in the calender view to make it more user friendly. Therefore we will make the weekend background grey. As most of the time we will start at the very first steps. Go to the site where you want to add your calender, click on Site Contents and then click on “add an app”. Under the heading “Apps you can add” select the Calendar. Give your calendar a name (I choose “Test Calendar”) and click on “Create”. Now you get redirected to your
-
Powershellscript to display all Checked Out Files (en)
With the following script you can display all your checked out files in your web. Just save the script below as e.g. “DisplayAllCheckedOutFiles.ps1” and execute it within the SharePoint Management Shell (open it as Administrator is always a good idea). At the end of the script you can also specify if you want to save the results in a file. Here a brief overview over my output: Hope you like it and as always, don’t be afraIT to ask or comment. # enter your site URL $spWeb = Get-SPWeb “http://sp13” function GetCheckedItems($spWeb) { Write-Host “Scanning Site: $($spWeb.Url)” foreach ($list
-
Powershellscript to display all Checked Out Files (de)
Shorty-Time! Mit dem folgenden Skript kannst du dir alle ausgecheckten Dateien in deiner SharePoint Umgebung anzeigen lassen. Speicher einfach das Skript und speicher es z.B. mit dem Namen “showAllCheckedOutItems.ps1” und führe es in der SharePoint Verwaltungsshell aus. (Als Administrator diese zu öffnen ist immer öfters eine gute Idee). Am Ende des Skripts kannst du auch festlegen, ob der Output in eine Datei gespeichert werden soll. Hier etwas von meinem Output: Hoffe, dass dir das Skript vielleicht etwas die Arbeit erleichtert. Wie immer gilt, don’t be afraIT bei Fragen oder Kommentaren. # enter your site URL $spWeb = Get-SPWeb
-
Get site template names (de / en)
I’ll pick you afraIT Shorty! Let’s go! 🙂 DE: Öffne eine SharePoint2013 Verwaltungsshell und gib ein: EN: Open the SharePoint Management Shell and type in: get-spwebtemplate DE: Das ist schon alles. Es sollte ein ähnlicher Output wie unten im Bild angezeigt werden. EN: That’s it. You should get a similar output like below.