Browse by Tags
All Tags »
General »
C# (
RSS)
What is SMO? SMO, SQL Server Management Object, is a collection of objects that includes all you need to manage SQL Server from .NET applications. With SMO you can manage pretty much everything – from databases, tables, stored procedures, jobs – you name...
Yesterday, I published small application I developed called IPSWeb . This application is actually web client for Windows PowerShell. It’s very simple, to install this application you create new IIS website, copy the files to the website directory and...
Sometimes, we want to run PowerShell script from command-let that derives from PSCmdlet (If you derived from Cmdlet, you can't use this way). To do so, we just have to use this code: 1: using System.Management.Automation; 2: using System.Collections.ObjectModel;...
Someone asked me how we can set Windows PowerShell to work like in VB when you specify Option Explicit. How to disable using of variables that didn't defined in the code. In this way, you know for sure that you aren't use undefined variable and get unexpected...
Visual Studio 2008 and .NET 3.5 are already here, but some of us, sometimes, still need to use .NET 2.0. Visual Studio 2008, support in a new feature called “Multi Targeting”. You can use Visual Studio 2008 ad IDE for .NET 2.0 and .NET 3.0...
More Posts