-
Hi everybody, Sure during Christmas holidays some powershell user will have some great music. I find this script on a french Microsoft script center, but It need to here on forum and script library. Merry Christmas To U Sylv1 Web site link : http://forums.microsoft.com/TechNet-FR/ShowPost.aspx?PostID...
-
I'm playing with a script that parses strings to Intergers using system.int32.parse() and using the system.globalization.numbersytles enum (see http://msdn.microsoft.com/en-us/library/system.globalization.numberstyles.aspx ). With C# you can specify a FlagsAttribute atrribute to, in effect, convert...
-
In the latest version of PowerShell Plus (2.1 beta) it's not necessary to hit TAB key and a pop-up menu will show up with all static members, syntax, and links to MSDN page and Google (populated with proper keywords). That's a real time-saver.
-
Marco Shaw will be presenting a 60 minute presentation on Windows PowerShell that will show how to access the .NET Framework. He will also spend a small percentage talking about PowerShell v2. This is part of the Microsoft Tech Days Virtual Event on April 1, 2009. Read More
-
i need to render some reports from ssrs everything looks quite easy using the web service there is only one BIG problem I need to pass a null string (null in c#, nothing in vb.net) to the method LoadReport as HistoryID nothing else works, alternative is a valid datetime string but then ssrs looks for...
-
Hi, I have written a custom Cmdlet that passes the System.Collections.SortedList object to WriteObject(...) method of the base class (viz., System.Management.Automation.Cmdlet class). When run, this cmdlet write the Key-Value pair formatted as table on the Powershell Console, but, when piped and Export...
-
Welcome to this forum! Regarding .NET, think of it as a collection of hundreds of useful little bits of functionality. Should you want to deal with, for example, Japaneese calendars - there's a class for that. If you need to add very large integers - there;s a class for that. If you want to create...
-
Hi All, I am trying to run cmdlets from VB.NET. I managed to create a session to a remote session and to run either basic powershell commands or Exchange 2010 cmdlets. However I have a problem when trying to run more complex scripts, like "Get-Mailbox | Where-Object {$_.database -match "database"...
-
I'm a newbie here, so Hello Everybody, I would like to ask the following: I can use ISE only for developing. Company policy. I'm developing a script which contains a new object type, defined like that: $DefClass = @' public class PropType{ public string name1; public string name2; } '...