//Build// Code on Weekend // Reach out if any one want to share cool FIM/MIM, IAM related Project. Mail : Any.Singha@gmail.com
Wednesday, 24 February 2016
Sunday, 14 February 2016
Learning Azure#1 Host your site [Azure].
Need to ramp up soon in Cloud, before it become an Emergency..
#Learning 1.
Excited Microsoft
Road show is round the corner and started embracing the cloud.
Note: This are
just my thought process and not be the best practice in IT, As someone say
Keep yourself updated.
Start writing what you learned.
Host your site [Azure].
1. Create VM on Azure cloud.
2. Go to Server
Mnager Dashboard
3. Add roles and feature [ Web Server ]
4. Create a End Point [Http Port 80 ]
5. If you know how to write Html, Browse
the C:\inetpub\wwwroot the default location in my Window Server 2012 R2
and modify 'iisstart'
6. The FUN... In Internet, browse the DNS name of your machine and
you will see this pages.
The page is not available now, as I had deleted my VM now [
COST FACTOR ].
Keep learning
Cloud.
Sunday, 8 November 2015
Install Tomcat on Centos
Wow.. Weeknd End with my first Shell Scripting, Its work , feeling like on Air, Time to have some Beer.
Description : Once you run it, it will download the tomcat and start the tomcat service and you will be ready to kick off the installtion of Open AM.
Note : Drop me a mail any.singha@gmail.com in case it not work,
Saturday, 11 July 2015
NewBee Post for sharepoint in Installation of FIM Portal 2010
> As a NewBee to FIM the hardest part is to configure the sharepoint for the FIM portal, The below are not the best practise.However it will give you an fair idea how to install at the first go, I have skipped the installation for FIM portal. It will only show how you have configure your sharepoint site.
> My Machine name is NewBee and domain joined.
>Install the sharepoint site from the internet.
Sunday, 24 May 2015
Sunday, 5 April 2015
Saturday, 4 April 2015
Calling Powershell from C#.
Calling Powershell from C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Management.Automation;
using System.Management.Automation.Host;
using System.Management.Automation.Provider;
using System.Management.Automation.Runspaces;
using System.Collections.ObjectModel;
namespace PowerShell_Call
{
class Program
{
public static string name(string args)
{
using (PowerShell powershell = PowerShell.Create().AddCommand("Get-Process").AddArgument(args))
{
foreach (PSObject result in powershell.Invoke())
{
return result.Members["id"].Value.ToString();
}
}
return "";
}
static void Main(string[] args)
{
string x = "apnmcp";
string v=name(x);
Console.WriteLine("The value is {0}", v);
Console.ReadLine();
}
}
}
In the solution explorer, add a project reference to the System.Management.Automation. I always found this in
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Management.Automation;
using System.Management.Automation.Host;
using System.Management.Automation.Provider;
using System.Management.Automation.Runspaces;
using System.Collections.ObjectModel;
namespace PowerShell_Call
{
class Program
{
public static string name(string args)
{
using (PowerShell powershell = PowerShell.Create().AddCommand("Get-Process").AddArgument(args))
{
foreach (PSObject result in powershell.Invoke())
{
return result.Members["id"].Value.ToString();
}
}
return "";
}
static void Main(string[] args)
{
string x = "apnmcp";
string v=name(x);
Console.WriteLine("The value is {0}", v);
Console.ReadLine();
}
}
}
Output :
Console Application
Powershell Output.
Subscribe to:
Comments (Atom)
-
Note : This series is for the Beginner and trouble shooting the Error With Sync Engine, Based on Test Lab, Highly advice do not do Full Syn...
-
Rules are the construct through which IdentityIQ allows the addition of custom business logic at specific points within the execution fl...
-
This article can be refer as reference only, how can you build your first Management Agent connect to Service Now. The samples code show...






