diff --git a/commons.info b/commons.info
index a7838c5..cfdb221 100644
--- a/commons.info
+++ b/commons.info
@@ -85,4 +85,11 @@ dependencies[] = commons_groups_directory
 dependencies[] = commons_group_homepages
 dependencies[] = commons_wikis_home
 dependencies[] = commons_misc
-dependencies[] = commons_location
\ No newline at end of file
+dependencies[] = commons_location
+
+; Information added by drush on 2012-12-19
+version = "7.x-3.0-beta1+5-dev"
+core = "7.x"
+project = "commons"
+datestamp = "1355952835"
+
diff --git a/commons.install b/commons.install
index c875748..17fc125 100644
--- a/commons.install
+++ b/commons.install
@@ -73,3 +73,18 @@ function commons_install() {
     drupal_set_message(t("The Commons WYSIWYG module was not enabled because your server's version of PHP is older than 5.3.0."), 'warning');
   }
 }
+
+
+/**
+ * Implements hook_install_tasks_alter().
+ */
+function commons_install_tasks_alter(&$tasks, $install_state) {
+  // Skip profile selection step.
+  $tasks['install_select_profile']['display'] = FALSE;
+
+  // Skip language selection install step.
+  $tasks['install_select_locale']['display'] = FALSE;
+  $tasks['install_select_locale']['run'] = INSTALL_TASK_SKIP;
+}
+
+
diff --git a/commons.profile b/commons.profile
index a419f65..66ba717 100644
--- a/commons.profile
+++ b/commons.profile
@@ -81,7 +81,7 @@ function commons_update_projects_alter(&$projects) {
  */
 function commons_install_tasks() {
 
-  $demo_content = variable_get('commons_install_demo_content', FALSE);
+  $demo_content = variable_get('commons_install_example_content', FALSE);
   $acquia_connector = variable_get('commons_install_acquia_connector', FALSE);
 
   return array(
@@ -242,10 +242,10 @@ function commons_anonymous_welcome_text_form() {
     '#default_value' => st('Share your thoughts, find answers to your questions.'),
   );
 
-  $form['commons_install_demo_content'] = array(
+  $form['commons_install_example_content'] = array(
     '#type' => 'checkbox',
-    '#title' => st('Install demo content'),
-    '#description' => st('Install Commons with example content so that you can get a sense of what your site will look like once it becomes more active.'),
+    '#title' => st('Install example content'),
+    '#description' => st('Install Commons with example content so that you can get a sense of what your site will look like once it becomes more active. Example content includes a group, a few users and content for that group. Example content can be modified or deleted like normal content.'),
     '#default_value' => TRUE
   );
 
@@ -264,7 +264,7 @@ function commons_anonymous_welcome_text_form() {
 function commons_anonymous_welcome_text_form_submit($form_id, &$form_state) {
   variable_set('commons_anonymous_welcome_title', $form_state['values']['commons_anonymous_welcome_title']);
   variable_set('commons_anonymous_welcome_body', $form_state['values']['commons_anonymous_welcome_body']);
-  variable_set('commons_install_demo_content', $form_state['values']['commons_install_demo_content']);
+  variable_set('commons_install_example_content', $form_state['values']['commons_install_example_content']);
 }
 
 /**
@@ -433,7 +433,7 @@ function commons_demo_content() {
 
 
   // Delete the demo content variable
-  variable_del('commons_install_demo_content');
+  variable_del('commons_install_example_content');
 }
 
 /**
