Set user enviroment variable called MsiBreak then restart the system.
Author: justin@omniscientgeek.com
RDP without the Connection Bar
Uncheck “Display the connection bar when in full screen mode”.
To get out of the remote desktop use a second monitor or use CTRL+ALT+Break. This will window the RDC. To go back to full screen use CTRL+ALT+Break again.
http://superuser.com/questions/214233/is-there-any-way-i-can-make-the-connection-bar-more-difficult-to-display-using
Amazon EC2 Attach C Drive
Attach the drive as /dev/sda1
Custom Error Page in ASP.NET
If you are having issue with the custom error page display check to make sure the following exists.
<system.webServer>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
Reset Admin Password
The following code will reset the admin user password to B. This is helpful when needing to get access in the developement enviroment
MembershipUser user = Membership.GetUser("sitecore\\admin"); string password = user.ResetPassword(); if (!user.ChangePassword(password, "b")) { throw new Exception("Failed to set password"); }
Git Merge when using bug fix branch
Use git merge from master branch using no fast forward option.
SMTP Dummy Server (.Net)
Title: Test emails and troubleshoot
http://papercut.codeplex.com/
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!