Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 79585)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp	(revision 79586)
@@ -889,4 +889,13 @@
                         m_pSettingsLayout2->addWidget(m_pMachineLabel, 2, 0);
                     }
+                    /* Create Export Then Ask button: */
+                    m_pRadioExportThenAsk = new QRadioButton;
+                    if (m_pRadioExportThenAsk)
+                    {
+                        m_pRadioExportThenAsk->setEnabled(false);
+
+                        /* Add into layout: */
+                        m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 2, 1);
+                    }
                     /* Create Ask Then Export button: */
                     m_pRadioAskThenExport = new QRadioButton;
@@ -895,13 +904,4 @@
                         /* Add into layout: */
                         m_pSettingsLayout2->addWidget(m_pRadioAskThenExport, 3, 1);
-                    }
-                    /* Create Export Then Ask button: */
-                    m_pRadioExportThenAsk = new QRadioButton;
-                    if (m_pRadioExportThenAsk)
-                    {
-                        m_pRadioExportThenAsk->setEnabled(false);
-
-                        /* Add into layout: */
-                        m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 2, 1);
                     }
                     /* Create Do Not Ask button: */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 79585)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h	(revision 79586)
@@ -234,8 +234,8 @@
     /** Holds the machine label instance. */
     QLabel       *m_pMachineLabel;
+    /** Holds the export then ask radio button instance. */
+    QRadioButton *m_pRadioExportThenAsk;
     /** Holds the ask then export radio button instance. */
     QRadioButton *m_pRadioAskThenExport;
-    /** Holds the export then ask radio button instance. */
-    QRadioButton *m_pRadioExportThenAsk;
     /** Holds the don't ask radio button instance. */
     QRadioButton *m_pRadioDoNotAsk;
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 79585)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp	(revision 79586)
@@ -359,5 +359,5 @@
                                 const int iTotalWidth = 50 * iFontWidth;
                                 const int iFontHeight = fm.height();
-                                const int iTotalHeight = 4 * iFontHeight;
+                                const int iTotalHeight = 8 * iFontHeight;
                                 m_pAccountPropertyTable->setMinimumSize(QSize(iTotalWidth, iTotalHeight));
                                 m_pAccountPropertyTable->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
@@ -369,4 +369,39 @@
                                 /* Add into layout: */
                                 m_pSettingsLayout2->addWidget(m_pAccountPropertyTable, 1, 1);
+                            }
+
+                            /* Create account label: */
+                            m_pMachineLabel = new QLabel;
+                            if (m_pMachineLabel)
+                            {
+                                m_pMachineLabel->setAlignment(Qt::AlignRight | Qt::AlignTrailing | Qt::AlignVCenter);
+
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pMachineLabel, 2, 0);
+                            }
+                            /* Create Export Then Ask button: */
+                            m_pRadioExportThenAsk = new QRadioButton;
+                            if (m_pRadioExportThenAsk)
+                            {
+                                m_pRadioExportThenAsk->setEnabled(false);
+
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pRadioExportThenAsk, 2, 1);
+                            }
+                            /* Create Ask Then Export button: */
+                            m_pRadioAskThenExport = new QRadioButton;
+                            if (m_pRadioAskThenExport)
+                            {
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pRadioAskThenExport, 3, 1);
+                            }
+                            /* Create Do Not Ask button: */
+                            m_pRadioDoNotAsk = new QRadioButton;
+                            if (m_pRadioDoNotAsk)
+                            {
+                                m_pRadioDoNotAsk->setEnabled(false);
+
+                                /* Add into layout: */
+                                m_pSettingsLayout2->addWidget(m_pRadioDoNotAsk, 4, 1);
                             }
                         }
@@ -507,4 +542,10 @@
     m_pAccountLabel->setText(UIWizardExportApp::tr("&Account:"));
 
+    /* Translate option label: */
+    m_pMachineLabel->setText(UIWizardExportApp::tr("Machine Creation:"));
+    m_pRadioExportThenAsk->setText(UIWizardExportApp::tr("Ask me about it &after exporting disk as custom image"));
+    m_pRadioAskThenExport->setText(UIWizardExportApp::tr("Ask me about it &before exporting disk as custom image"));
+    m_pRadioDoNotAsk->setText(UIWizardExportApp::tr("Do &not ask me about it, leave custom image for future usage"));
+
     /* Adjust label widths: */
     QList<QWidget*> labels;
@@ -514,4 +555,5 @@
     labels << m_pAdditionalLabel;
     labels << m_pAccountLabel;
+    labels << m_pMachineLabel;
     int iMaxWidth = 0;
     foreach (QWidget *pLabel, labels)
@@ -540,4 +582,7 @@
     /* Translate page: */
     retranslateUi();
+
+    /* Choose default cloud export option: */
+    m_pRadioAskThenExport->setChecked(true);
 }
 
