Google Tips by Peyton Hall
At www.google.com Type Zerg Rush
Go to http://googleloco.net/ or Type Google Loco and click on the first two links
On www.google.com Type Do A Barrel Roll
On images.google.com type atari breakout
Google Tips by Peyton Hall
At www.google.com Type Zerg Rush
Go to http://googleloco.net/ or Type Google Loco and click on the first two links
On www.google.com Type Do A Barrel Roll
On images.google.com type atari breakout
Are you tired of typing in …
Add-PSSnapin Microsoft.SharePoint.PowerShell
Note that if you are using SharePoint 2013 running on Server 2012 use the following updated steps
(HINT) Get-WindowsFeature will display entire list
If ISE is not added then add by
Running powershell as local administrator
import-module servermanager
add-windowsfeature powershell-ise
Note that in this example it is already loaded.
Now you need to create a profile (this has changed)
To create a profile for the current user use:
if (!(test-path $profile ))
{new-item -type file -path $profile -force}
To edit the new profile use:
psEdit $profile
Then type the following in the ISE Scripting Pane and click Save.
add-pssnapin microsoft.sharepoint.powershell
Close/Open ISE and give it a test, now you have ISE enabled with SharePoint
To create a new “Current user, Windows PowerShell ISE” profile, run this command:
if (!(test-path $profile ))
{new-item -type file -path $profile -force}
To create a new “All users, Windows PowerShell ISE” profile, run this command:
if (!(test-path $profile.AllUsersCurrentHost))
{new-item -type file -path $profile.AllUsersCurrentHost -force}
To create a new “Current user, All Hosts” profile, run this command:
if (!(test-path $profile.CurrentUserAllHosts))
{new-item -type file -path $profile.CurrentUserAllHosts -force}
To create a new “All users, All Hosts” profile, type:
if (!(test-path $profile.AllUsersAllHosts))
{new-item -type file -path $profile.AllUsersAllHosts-force}
psEdit $profile $psISE.Options.OutputPaneBackground = 'blue' . For more information about the $psISE variable, see The ISE Scripting Object Model. $psISE.Options.FontSize =20
So you want to use the ISE with SharePoint. First add ISE feature then create a new profile by completing the following steps:
ADD ISE
Running powershell as local administrator
import-module servermanager
add-windowsfeature powershell-ise
(HINT) Get-WindowsFeature will display entire list
ADD Profile
Running powershell as sharepoint administrator
Powershell_ISE
Test-Path $profile (if true jump to Open ISO Profile step below)
New-Item $profile -ItemType file –Force
Close current untitled ps1 and open new file created
Open ISE Profile > Open > look in documents for microsoft.powershellies_profile.ps1
add-pssnapin microsoft.sharepoint.powershell
Save File and test by closing ISE and relaunch
(HINT) get-psnapin to display that have been added
(HINT) get-psnapin -registered to display all but ...
Give access to DB use the following powershell from a privileged user shell
$spcdb = get-spcontentdatabase wss_content_intranet
Add-spshelladmin -username contoso\sp_admin -database $spcdb
Reference - Scripting Wife - ISE Profiles
http://blogs.technet.com/b/heyscriptingguy/archive/2011/09/13/the-scripting-wife-creates-a-powershell-ise-profile.aspx
Installation
https://autospinstaller.com/ (new)
http://autospinstaller.codeplex.com/
Client Browser
http://autospsourcebuilder.codeplex.com/
SharePoint Client Browser for SharePoint Online and SharePoint on-premise
https://spcb.codeplex.com/
SharePoint 2013 Search Query Tool
http://sp2013searchtool.codeplex.com/
Great Tools from Scott Brickey (Fellow Cincy / Tri-State SPUG member)
http://sdssharepointlibrary.codeplex.com
Workflow Extensions
http://spdactivities.codeplex.com/
Enable Meeting Workspaces in SharePoint 2013
http://sharepointmws.codeplex.com/
So you need to display XML on your page. Using OOTB tools here is a simple method to display XML in SharePoint 2013
Using the demo xml from w3schools
http://www.w3schools.com/xml/xml_xsl.asp
<?xml version="1.0" encoding="UTF-8"?>
<breakfast_menu>
<food>
<name>Belgian Waffles</name>
<price>$5.95</price>
<description>Two of our famous Belgian Waffles with plenty of real maple syrup</description>
<calories>650</calories>
</food>
<food>
<name>Strawberry Belgian Waffles</name>
<price>$7.95</price>
<description>Light Belgian waffles covered with strawberries and whipped cream</description>
<calories>900</calories>
</food>
<food>
<name>Berry-Berry Belgian Waffles</name>
<price>$8.95</price>
<description>Light Belgian waffles covered with an assortment of fresh berries and whipped cream</description>
<calories>900</calories>
</food>
<food>
<name>French Toast</name>
<price>$4.50</price>
<description>Thick slices made from our homemade sourdough bread</description>
<calories>600</calories>
</food>
<food>
<name>Homestyle Breakfast</name>
<price>$6.95</price>
<description>Two eggs, bacon or sausage, toast, and our ever-popular hash browns</description>
<calories>950</calories>
</food>
</breakfast_menu>
<?xml version="1.0" encoding="UTF-8"?>
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<body style="font-family:Arial;font-size:12pt;background-color:#EEEEEE">
<xsl:for-each select="breakfast_menu/food">
<div style="background-color:teal;color:white;padding:4px">
<span style="font-weight:bold"><xsl:value-of select="name"/> - </span>
<xsl:value-of select="price"/>
</div>
<div style="margin-left:20px;margin-bottom:1em;font-size:10pt">
<p>
<xsl:value-of select="description"/>
<span style="font-style:italic"> (<xsl:value-of select="calories"/> calories per serving)</span>
</p>
</div>
</xsl:for-each>
</body>
</html>
Now using SharePoint upload both files to a document library
Copy the shortcut for the xml file
Using the XML Viewer Web Part
Edit the web part
and paste the URL to the XML file then do the same for the XSLT file and click ok to save your settings
Vola …
Reference from Microsoft
RMS Setup Guide
http://sp-vinod.blogspot.com/2013/08/configuring-information-rights.html
http://sp-vinod.blogspot.com/2013_08_01_archive.html
Good Article
https://social.technet.microsoft.com/Forums/en-US/df9796b5-6a1a-43c7-ac32-c77d2ec68e1c/ad-rms-2012-irm-permissions-for-sharepoint-2013-library?forum=rms
Good Video
http://channel9.msdn.com/Events/SharePoint-Conference/2012/SPC073
More Good Links
http://technet.microsoft.com/en-us/library/jj219596%28v=office.15%29.aspx
http://technet.microsoft.com/en-us/library/jj219785%28v=office.15%29.aspx
http://www.titus.com/blog/2012/11/spc12-diary-day-5-%E2%80%93-information-rights-management-in-sharepoint-2013/
2010
RMS is a complex process, first the AD team has to setup AD RMS then you turn in on in SharePoint. This is similar to the email configuration.
https://technet.microsoft.com/en-us/library/cc179103.aspx
The first part is AD RMS that your AD team needs to setup but since this depends on the server OS. Here is the 2008 setup guide https://technet.microsoft.com/en-us/library/cc753531(v=ws.10).aspx
then SharePoint RMS https://technet.microsoft.com/en-us/library/hh545607(v=office.14).aspx
Manage alerts
https://support.office.com/en-us/article/Manage-alerts-616d0941-25d5-4694-9db4-7546696dbe7b
How To Send Email Alerts From SharePoint 2013 To Distribution Lists
https://kb.intermedia.net/article/2446
Change SharePoint Alert mail body format
https://social.technet.microsoft.com/Forums/en-US/6b6c2dc5-9d24-4fbc-a9e3-1cdba3a4f547/how-to-change-sharepoint-alert-mail-body-format?forum=sharepointgeneral
SharePoint 2013 Alert Error: You do not have an email address
https://sharepointobservations.wordpress.com/2013/07/16/error-you-do-not-have-an-email-address
Troubleshooting FlowChart
http://sharepointalert.info/troubleshooting-sharepoint-alerts/
Configure outgoing email for a SharePoint 2013 farm
https://technet.microsoft.com/en-us/library/cc263462.aspx
Configure incoming email for a SharePoint 2013 farm
https://technet.microsoft.com/EN-US/library/cc262947.aspx
"You do not have an e-mail address" error when you create an alert in SharePoint Online
https://support.microsoft.com/en-us/kb/2650135
Quick Tip - change the target email address for Alerts in SharePoint Online
http://blogs.technet.com/b/lystavlen/archive/2012/08/28/spo-alerts.aspx
Change Alert Email Address
https://social.technet.microsoft.com/forums/sharepoint/en-US/77c9047e-e7e9-4ddf-a863-1c3d5782eae6/how-to-change-alert-email-address
SharePoint - Import a picture from AD for the user profile
http://blogs.technet.com/b/lukeb/archive/2013/01/04/sharepoint-import-a-picture-from-ad-for-the-user-profile.aspx
Using Exchange 2013 high-resolution photos from SharePoint Server 2013
http://blogs.technet.com/b/jenstr/archive/2012/08/17/using-exchange-2013-preview-high-resolution-photos-from-sharepoint-server-2013-preview.aspx
Options for SharePoint User Profile Properties and Photos
http://blogs.msdn.com/b/briangre/archive/2014/03/11/options-for-sharepoint-user-profile-pictures.aspx
Troubleshooting Photos in User Profile Service Application (2013 too!)
http://blogs.technet.com/b/lukeb/archive/2013/01/04/sharepoint-import-a-picture-from-ad-for-the-user-profile.aspx
Import User Pictures from AD to SP2010
http://www.sharepointdiary.com/2013/01/import-user-pictures-from-active-directory-to-sharepoint-2010-mysite.html
Using BCS to Read BLOB Data
http://sharepointpromag.com/sharepoint/using-bcs-read-blob-data
Changing Pattern of User Display Names
http://pholpar.wordpress.com/2013/08/21/importing-sharepoint-user-profile-properties-using-bcs-net-connectivity-assembly/
Photo Management in SharePoint 2010
http://blogs.msdn.com/b/spsocial/archive/2011/01/07/photo-management-in-sharepoint-2010.aspx
Troubleshooting Photos in User Profile Service Application
http://blogs.technet.com/b/lukeb/archive/2013/01/04/sharepoint-import-a-picture-from-ad-for-the-user-profile.aspx