|
|
Browse by Tags
All Tags » PowerShell
Showing page 1 of 34 (332 total posts)
-
This is an update of the script from my old Blog /\/\o\/\/ PowerShelled: Replace Security on existing share using MSH to PowerShell V2, I came at this post while recourcing a question about translating a SID, that I tested a lot with on my old blog see also the other posts about this here where you can find more examples.
As I was ...
-
Hi readers,
First of all, sorry for this second longer outage of my blog and the low post rate lately, especialy for the downtime.
Some explaination might be in order for that
About the outage, after the first time when my Dutch registrar went broke, this time the reason was a SQL Database that went over limit some time ago, for some ...
-
The Scripting Games are coming again, click on the 2010 Scripting games badge below for more info :
Hope to see you there !
Enjoy,
Greetings /\/\o\/\/
-
Next Month the 2nd of March there is a PowerShell scriptclub in Zurich again.
For more information or to register :
http://www.digicomp.ch/sitpug
Enjoy,
Greetings /\/\o\/\/
-
Next week I will at the Swiss IT Pro User Group Event 3.Nov 2009 Zurich - PowerShell Script Club
The first PowerShell Scriptclub in Zurich, with thanks to Desmond Lee , the Swiss IT Pro User Group and Digicomp Academy AG (Zürich)
Below the excerpt from the newsletter (the Dunglish is mine, sorry we had to be quick ) :
Swiss IT Pro ...
-
At 3 December I will be giving a PowerShell session at the Microsoft Evolution Day in Zurich, Microsoft Evolution Day Windows 7, Windows Server 2008 R2, Office Communication Server 2007 R2, Exchange 2010, Office 2010, SharePoint 2010, PowerShell 2.0 – die Evolution der Microsoft Lösungen geht rasend schnell. Am Microsoft Evolution Day vom ...
-
And another WTF Programing Praxis :Nerds, Jocks, and Lockers
function get-OpenLockers ($num){1..([math]::sqrt($num))|%{$_*$_}}
Enjoy,
Greetings /\/\o\/\/
-
And another PowerShell excersise from the WTF (Worse than Failure) contest Programming Praxis: Josephus' Circle . (for more info see original contest post)
Function get-SafeSpot ($count,$Skip) { $q = [Collections.queue](1..$count) while ($q.count -gt 1){ 1..($skip-1) |% ...
-
When you have a GUID object in PowerShell by default this gives no output, only some empty lines.
See output below :PS C:\> [GUID]$a = ''00000000-0000-0000-0000-000000000000''
PS C:\> $a ...
-
Small PowerShell exercise taken from the Programming Praxis: Russian Peasant Multiplication contest of WTF (Worse than Failure) implementing the Russian Peasant Multiplication method (for more info see original contest post)
function Invoke-RussianMultiply ([int]$a,[int]$b) { ''$a x $b'' $r = 0 ...
1 ...
|
|
|