Tag Archives: Windows Powershell

Powershell: How to rename all files in a folder

Sometimes you need a fast way to rename a lot of file. With Powershell this is pretty easy. You list all files in the directory and you can use this object with a foreach loop. This script basically changes the … Continue reading

Posted in IT, Microsoft, Powershell, Software, Work | Tagged , , , , , , , , , , , , , , , | Leave a comment

How to create a Powershell v2 Module

If you need some functions a lot in different scripts you create maybe external function files. This is a good way to clean up your code. To get this functions running in your mainscript.ps1 you can call this other file … Continue reading

Posted in IT, Microsoft, Powershell, Software, Windows Server, Work | Tagged , , , , , , , , , | Leave a comment

Powershell: Count Sharepoint Sites on Sharepoint Server 2010

This is a very small line of code to count Sharepoint 2010 Site Collections with Powershell. (Get-SPSite -Limit all).Count By the way, we at Genotec AG are offering a Hosted Sharepoint 2010 solution based on Powershell automation.

Posted in Hosting, IT, Microsoft, Powershell, Sharepoint, Software, Web, Windows Server, Windows Server 2008 R2, Work | Tagged , , , , , , , , , , , , , , , , , , | 2 Comments

Powershell: Working with XML part 2

After my first post (Powershell: Parsing XML part 1) about working with XML and Powershell, I have create this second post which describes how to create a XML file, Add content to the XML file, remove content from the XML … Continue reading

Posted in IT, Microsoft, Powershell, Server Core, Software, Windows, Windows Server, Work | Tagged , , , , , , , , , , , , , , , , , | Leave a comment

Powershell: Count your Code lines

After Coding some lines in a lot of different files you wanna know how much lines you have coded. There are two (I am sure there are even more) ways to do that. The first one is to get the … Continue reading

Posted in IT, Microsoft, Powershell, Software, Windows Server, Work | Tagged , , , , , , , , , , | Leave a comment

Powershell: Simple retry logic

I am working at some larger powershell scripts right now and so I needed to create a simple retry logic for sending web request to a server.

Posted in Hosting, IT, Microsoft, Powershell, Software, Windows Server, Work | Tagged , , , , , , , , | Leave a comment