<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>PowerShell.nu</title>
	<link>http://www.powershell.nu</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2010 10:09:31 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Adding Announcements to SharePoint 2010 through PowerShell</title>
		<description><![CDATA[SharePoint 2010 is on it&#8217;s way and it&#8217;s way cool. Lots of great CmdLets that simplify the SharePoint administrators life. In this post we are going to check out how to add Announcements to an Announcements list in SharePoint through PowerShell. First we&#8217;ll do it step-by-step in the &#8220;SharePoint 2010 Management Shell&#8221; (PowerShell shell that [...]]]></description>
		<link>http://www.powershell.nu/2010/01/27/adding-announcements-to-sharepoint-2010-through-powershell/</link>
			</item>
	<item>
		<title>Running Scripts with arguments in PowerShell</title>
		<description><![CDATA[Here&#8217;s a short guide on running scripts in powershell. 

The guide is divided into three parts:

Running Scripts from the Console
Running Scripts from Start/Run
Running Scripts as Backgournd Jobs in PowerShell


First, let&#8217;s look at the script examples that we want to run.

Here&#8217;s the first script:


##################
#
# Script 1
#
##################

"Arguments: $($args.count)"
$args


And here&#8217;s the second script:


##################
#
# Script 2
#
##################

param($Argument1,$Argument2)

"Argument1 is: $Argument1"
"Argument2 is: [...]]]></description>
		<link>http://www.powershell.nu/2009/12/16/running-scripts-with-arguments-in-powershell/</link>
			</item>
	<item>
		<title>#SEF09</title>
		<description><![CDATA[First of all I would like o thank all the great people that attended the SharePoint and Exchange Forum 2009 here in Stockholm, Sweden.
Special Thanks to Göran Husman, Everyone at Humandata and all sponsors. Great work!

The international Speakers included Joel Oleson, Eric Shupps, Todd Klindt, Steve Smith and Penny Coventry.
On the Swedish team we got [...]]]></description>
		<link>http://www.powershell.nu/2009/11/19/sef09/</link>
			</item>
	<item>
		<title>MOSS 2007 Script Collection</title>
		<description><![CDATA[I&#8217;ve been working with SharePoint and PowerShell for quite some time now and I would like to share a couple of Scripts that I use when scripting MOSS. Actually, it&#8217;s 44 Scripts, Loads of Coffee and alot of long nights   so I hope you enjoy them. There are Links at the bottom of [...]]]></description>
		<link>http://www.powershell.nu/2009/09/08/moss-2007-script-collection/</link>
			</item>
	<item>
		<title>Scripting PDF Documents through PowerShell</title>
		<description><![CDATA[Microsoft Office Supports Scripting possibilities through Com Objects. But what about PDF Documents ? Luckily there is a DLL available for download that let&#8217;s us Create PDF documents through .NET

First you have to Download the ITextSHarp.dll

Next, Time for some PowerShell Magic.

Step One: Load the DLL.



PS > [System.Reflection.Assembly]::LoadFrom("C:\itextsharp\itextsharp.dll")


Step Two: Create a Variable holding the iTextSharp.text.Document Object



PS [...]]]></description>
		<link>http://www.powershell.nu/2009/09/08/scripting-pdf-documents-through-powershell/</link>
			</item>
	<item>
		<title>Scripting Mp3 Tags through PowerShell</title>
		<description><![CDATA[Structuring up you Music Library can be a rather time consuming task. You can however script this rather easily through PowerShell using the taglib-sharp library.

Let&#8217;s start off by downloading the Tag-Lib Library
Next, We have to Load the Assembly from PowerShell in order to access the Classes.



PS > $TagLib = "C:\taglib\Libraries\taglib-sharp.dll"

PS > [System.Reflection.Assembly]::LoadFile($TagLib)


GAC    [...]]]></description>
		<link>http://www.powershell.nu/2009/09/04/scripting-mp3-metadata-through-powershell/</link>
			</item>
	<item>
		<title>Managing Local Groups through PowerShell</title>
		<description><![CDATA[When managing Local Groups through PowerShell, we can use the [ADSI] type adapter.
Starting off, We have to connect to the Local Group that we want to modify.



PS > $ComputerName = $env:COMPUTERNAME
PS > $Group = "Administrators"
PS > $LocalGroup = [adsi]"WinNT://$computerName/$Group,group"
PS > $LocalGroup


distinguishedName :
Path              [...]]]></description>
		<link>http://www.powershell.nu/2009/07/06/managing-local-groups-through-powershell/</link>
			</item>
	<item>
		<title>Managing Local Accounts through PowerShell</title>
		<description><![CDATA[When managing Local Accounts through PowerShell, it&#8217;s possible to use the [ADSI] type adapter.
Starting off, let&#8217;s look at how to connect to the Local Computer.



PS > $ComputerName = $env:COMPUTERNAME
PS > $Computer = [adsi]"WinNT://$ComputerName"
PS > $Computer


distinguishedName :
Path              : WinNT://Computer01


Now that we have a [...]]]></description>
		<link>http://www.powershell.nu/2009/07/06/managing-local-accounts-through-powershell/</link>
			</item>
	<item>
		<title>Get-PrinterInformation</title>
		<description><![CDATA[Gathering Printerinformation can be done through WMI. Win32_Printer contains information about printers that are used by a computer and Win32_PrinterDriver contains information about the printer drivers. We can combine these 2 WMI classes and retrieve information about both the printer and it&#8217;s drivers. This script checks for the following properties:


Computer      [...]]]></description>
		<link>http://www.powershell.nu/2009/06/18/get-printerinformation/</link>
			</item>
	<item>
		<title>Joining a Windows 7 Client to a Domain through PowerShell</title>
		<description><![CDATA[Time to join a Windows 7 client to a domain. Now that the Test Domain is up and running ( Check Previous Posts ), we can start joining clients to the domain.

Since it&#8217;s a freshly installed Windows 7 client, we dont have to bother about userprofiles and so on.. we&#8217;ll save that for later  [...]]]></description>
		<link>http://www.powershell.nu/2009/06/05/joining-a-windows-7-client-to-a-domain-through-powershell/</link>
			</item>
</channel>
</rss>
