Moving to AD FS it is wise to prepare to lab to test the whole infrastructure and then move to the production. One of the most frustrating things you will have to do is the claim transformation rules that you will have to setup between all Claims Providers and the Relying parties. Fortunately instead of using the UI and adding the rules one by one, you can setup only one and the export and import the claims rules to the rest of the parties.
Tuesday, November 20, 2012
Friday, November 9, 2012
Create self signed certificate
makecert -r -pe -n "CN=name.domain.com" -e 01/01/2020 -ss my -sr localMachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12Note that this will store the certificate in your local machine certificate store but it’s marked as “private key exportable” (-pe) so you can export it from there.
I have also created a .bat file in order to automate the localhost certificate generation. Don't forget to export the ca.localhost certificate and add it as a trusteed root certificate authority.
Friday, November 2, 2012
Migrating from eSXi to Hyper-V
In order to transfer a virtual machine from vmware’s eSXI server to Hyper-V we used disk-2-vhd to clone the disk in a vhd. If you are planning to do such a task, make sure you remove the vmware tools *before* you clone the disk cause otherwise the installer will not do it afterwards.
Wednesday, October 17, 2012
Running webinos widget browser with custom sources
So here's the process.
Wednesday, October 3, 2012
Building openSSL on windows
In order to build openSSL from the source code you will need to install a couple of third party free software. In this post I describe what I did on a virgin windows pc in order to build openSSL 1.0.1c.
Windows Autologin
Friday, September 21, 2012
Unable to create a site based on the “Enterprise Search Center” template
Thursday, September 13, 2012
Modifying devices and drivers on windows
Sunday, August 5, 2012
MySQL drop all tables that follow a pattern
mysql -u your_user -D your_database_name -e "show tables" -s |
egrep "^Whatever_" |
xargs -I "@@" echo mysql -u your_user -D your_database_name -e "DROP TABLE @@"
This will print out all the shell commands to drop the tables beginning with "Whatever_" (note the ^ regex notation). If you want it to actually execute those commands, remove the word "echo".
“Request for the permission of type 'System.Web.AspNetHostingPermission’” fix
" System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."
Thursday, July 5, 2012
Setup sharepoint server 2010 on an sql server 2012 using local account
Wednesday, June 6, 2012
Compile git on iPad
Having gcc up and running on an iPad, you should make a symbolic link so that cc points to gcc in /usr/bin (ln /usr/bin/gcc /usr/bin/cc) .
Download and extract the latest source from gitHub
curl –O -k https://nodeload.github.com/git/git/tarball/master
tar xvf master
Build by issuing the following command in the extracted source dir (which I renamed to git):
make NO_PERL=1 NO_TCLTK=1 NO_GETTEXT=1
Sign the app:
ldid –S git
And you are ready to use git to clone the webinos repository
iPad:~/git root# ./git clone git://github.com/webinos/Webinos-Platform.git ../webinos
Cloning into '../webinos'...
warning: templates not found /var/root/share/git-core/templates
remote: Counting objects: 4297, done.
remote: Compressing objects: 100% (2384/2384), done.
remote: Total 4297 (delta 1827), reused 3944 (delta 1647)
Receiving objects: 100% (4297/4297), 46.08 MiB | 275 KiB/s, done.
Resolving deltas: 100% (1827/1827), done.
Checking out files: 100% (1682/1682), done.