Browse by Tags
All Tags »
Powershell (
RSS)
Here's a quick script for enumerating all of the available site definitions, their configurations, and any site templates installed on a SharePoint Server. If you're creating sites programmatically, this comes in handy as you'll likely rely on these values...
Here's a quick little PowerShell script you can use in conjunction with Out-Zip to zip up a folder on your hard drive and email it: $sender = sender@host.com $recipient = recipient@host.com $server = mail.host.com $targetFolder = c:\MyFolder $file = c...
I came across this Powershell blog post about adding folders and files to a zip archive, but it wasn't exactly 100% usable out of the box. Here's a slight re-work of the script that will have you zipping files from a prompt all day and all night: ########################################################...