Skip to content
Omniscientgeek

Omniscientgeek

Just another WordPress site

  • Home
  • About
  • Portofolio
  • Project Details
  • Blog

Recent Posts

  • Hello world!
  • The Push for Go-Live (AKA the change we have been waiting for)
  • NP Complete in the real world
  • Best practice of commerce website
  • Compliance for e-commerce

Recent Comments

No comments to show.

Archives

  • December 2021
  • November 2019
  • November 2017
  • May 2014
  • April 2014
  • May 2013
  • February 2013
  • January 2013
  • November 2012
  • October 2012
  • July 2012
  • May 2012
  • April 2012
  • February 2012
  • November 2011
  • August 2011
  • June 2011
  • July 2009

Categories

  • Not Published
  • Published
  • Uncategorized

Debug WIX Custom Action

Set user enviroment variable called MsiBreak then restart the system.

Posted on July 3, 2012Categories UncategorizedLeave a comment on Debug WIX Custom Action

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
 
 
 

Posted on May 13, 2012Categories UncategorizedLeave a comment on RDP without the Connection Bar

Amazon EC2 Attach C Drive

Attach the drive as /dev/sda1

Posted on April 25, 2012Categories UncategorizedLeave a comment on Amazon EC2 Attach C Drive

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>
Posted on February 27, 2012Categories UncategorizedLeave a comment on Custom Error Page in ASP.NET

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");
	}
Posted on November 23, 2011Categories UncategorizedLeave a comment on Reset Admin Password

Git Merge when using bug fix branch

Use git merge from master branch using no fast forward option.

Posted on August 16, 2011Categories UncategorizedLeave a comment on Git Merge when using bug fix branch

SMTP Dummy Server (.Net)

 
 
 
 
Title: Test emails and troubleshoot
http://papercut.codeplex.com/

Posted on June 28, 2011Categories UncategorizedLeave a comment on SMTP Dummy Server (.Net)

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Posted on July 20, 2009Categories UncategorizedLeave a comment on Hello world!

Posts navigation

Previous page Page 1 Page 2 Page 3
Proudly powered by WordPress