Activate PS ISE:
Server Manager > Features > Add Features > Windows PowerShell Integrated Scripting Environment (PS ISE)
Open PS ISE:
Start > All Programs > Accessories > Windows PowerShell > Windows PowerShell ISE
Create a basic SP2010 Script:
Add-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
get-spfarm
Tuesday, November 24, 2009
Friday, November 20, 2009
Friday, November 13, 2009
Silverlight 3 - Basic HyperlinkButton with Image
<HyperlinkButton NavigateUri="http://www.google.com" TargetName="_parent" Width="151" Height="67">
<HyperlinkButton.Background>
<ImageBrush ImageSource="images/logo.jpg" />
</HyperlinkButton.Background>
</HyperlinkButton>
<HyperlinkButton.Background>
<ImageBrush ImageSource="images/logo.jpg" />
</HyperlinkButton.Background>
</HyperlinkButton>
PerformancePoint 2007 - Report Server URLs
Server Mode: SharePoint Integrated
Report Server URL: http://<servername>/<report Server Instance Name>
Tip: Reporting Services Configuration Manager (2008) > Web Service URL > Report Server Web Service URLs
Report URL: http://<servername>:<port>/<sharepoint Site Name>/<document Library Name>/<folder Name>/<report Name>.rdl
Tip: Go to the Report Server URL in ie and browse to the <folder Name>. Copy the path at the top of the page. Copy the report name.
Report Server URL: http://<servername>/<report Server Instance Name>
Tip: Reporting Services Configuration Manager (2008) > Web Service URL > Report Server Web Service URLs
Report URL: http://<servername>:<port>/<sharepoint Site Name>/<document Library Name>/<folder Name>/<report Name>.rdl
Tip: Go to the Report Server URL in ie and browse to the <folder Name>. Copy the path at the top of the page. Copy the report name.
Thursday, November 12, 2009
Silverlight 3 - Basic Linear Gradient Fill
<grid>
<grid.background>
<lineargradientbrush endpoint="0.5,1" startpoint="0.5,0">
<gradientstop color="#B5B0AC" offset="0">
<gradientstop color="White" offset="0.5">
<gradientstop color="#B5B0AC" offset="1">
</lineargradientbrush>
</grid.background>
</grid>
<grid.background>
<lineargradientbrush endpoint="0.5,1" startpoint="0.5,0">
<gradientstop color="#B5B0AC" offset="0">
<gradientstop color="White" offset="0.5">
<gradientstop color="#B5B0AC" offset="1">
</lineargradientbrush>
</grid.background>
</grid>
Subscribe to:
Posts (Atom)