User CheGueVerra - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T15:19:28Zhttp://stackoverflow.com/feeds/user/17787http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1439442/how-to-determine-if-a-registry-key-exists-in-wix/1439518#14395181Answer by CheGueVerra for How to determine if a registry key exists in WixCheGueVerra2009-09-17T15:16:06Z2009-09-17T15:16:06Z<p>Have a look at the <a href="http://www.wixwiki.com/index.php?title=RegistrySearch%5FElement" rel="nofollow">RegistrySearch</a></p>
<p>Sample of use:</p>
<pre><code> <Property Id="MYRegSearch" Value="AVaLue" Secure="yes">
<RegistrySearch Id="RegSearch" Root="HKLM" Key="Software\!(wix.Manufacturer)\!(wix.ShortProduct)" Name="Values" Type="raw"/>
</Property>
</code></pre>
http://stackoverflow.com/questions/1375216/iis-7-applications-and-asp-net-newbie-question/1375239#13752390Answer by CheGueVerra for IIS 7 Applications and asp.net - newbie questionCheGueVerra2009-09-03T18:50:03Z2009-09-03T18:50:03Z<p>Here's some links that helped me with understanding IIS 7.0</p>
<p><a href="http://www.iis.net/configreference" rel="nofollow">Configuration reference</a>
<a href="http://technet.microsoft.com/en-us/library/cc732976%28WS.10%29.aspx" rel="nofollow">Operation Guide</a></p>
http://stackoverflow.com/questions/1312920/i-have-a-problem-in-dll/1312939#13129390Answer by CheGueVerra for I have a problem in dll?CheGueVerra2009-08-21T16:26:39Z2009-08-22T22:39:56Z<p>As well you should have a look here, it might help if your trouble is elsewhere ..
<a href="http://www.link-rank.com/dll.htm" rel="nofollow">Forms in dll</a></p>
http://stackoverflow.com/questions/1295539/using-wix-to-package-an-installer-with-many-files/1295648#12956482Answer by CheGueVerra for Using WiX to package an installer with many filesCheGueVerra2009-08-18T18:23:58Z2009-08-18T19:09:28Z<p>Try this command</p>
<pre><code>heat dir "Your_Directory" -gg -ke -template:Product -out "Files.wxs"
</code></pre>
<p>It will create this structure in the generated wxs file {Files.wxs}:</p>
<pre><code><Fragment>
<DirectoryRef Id="Files">
<Component Id="Test.ico" Guid="{YOUR_GUID}">
<File Id="Test.ico" Name="Test.ico" KeyPath="yes" Source="..[path to file]\Test.ico" />
</Component>
</DirectoryRef>
</Fragment>
</code></pre>
<p>You should get one for each file, that was in the directory that you ran heat against. Once that is done, you just have to add the wxs file to your project, make sure you have the directory that the directoryref points to is created.</p>
http://stackoverflow.com/questions/1251904/folder-within-program-menu-folder-for-wix-3/1295527#12955272Answer by CheGueVerra for Folder within Program Menu Folder for WiX 3CheGueVerra2009-08-18T18:01:34Z2009-08-18T18:01:34Z<p>This is a sample test I did, when I was asked to do the same thing</p>
<pre><code><Package InstallerVersion="200" Compressed="yes" />
<WixVariable Id="Manufacturer" Value="StackOverFlowHelper"/>
<WixVariable Id="ShortProduct" Value="ShortCuts"/>
<Media Id="1" Cabinet="WixShortCut.cab" EmbedCab="yes" />
<Icon Id="ShortCutIcon" SourceFile="YOUR.ico"/>
<!-- The icon that appears in Add & Remove Programs. -->
<Property Id="ARPPRODUCTICON" Value="ShortCutIcon" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="ManufacturerFolder" Name="!(wix.Manufacturer)">
<Directory Id="INSTALLLOCATION" Name="!(wix.ShortProduct)">
<Component Id="ProductComponent" Guid="{YOUR_GUID}" KeyPath="yes">
<CreateFolder/>
</Component>
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder">
<Directory Id="ProgramMenuManufacturer" Name="!(wix.ShortProduct)" />
</Directory>
</Directory>
</Directory>
<DirectoryRef Id="ProgramFilesFolder">
<Component Id="ProgramMenuShortcuts" Guid="{YOUR_GUID}">
<CreateFolder Directory="ProgramMenuManufacturer"/>
<RemoveFolder Id="RemoveMenuShortcuts" Directory="ProgramMenuManufacturer" On="uninstall" />
<RegistryValue Root="HKCU" Key="Software\!(wix.Manufacturer)\!(wix.ShortProduct)" Name="InstalledStartMenuShortcuts" Type="integer" Value="1" />
</Component>
</DirectoryRef>
<DirectoryRef Id="INSTALLLOCATION" FileSource="Files">
<Component Id="WixShortCut" Guid="{YOUR_GUID}">
<File Id="Test.ShortCut" Vital="yes" Name="A_DOC.pdf" />
<CreateFolder />
<RegistryKey Root="HKCU" Key="Software\!(wix.Manufacturer)\!(wix.ShortProduct)" Action="createAndRemoveOnUninstall">
<RegistryValue Name="ShortCut" Value="1" Type="integer" KeyPath="yes"/>
</RegistryKey>
<!-- Shortcut in Start menu. -->
<Shortcut Id="ProgramMenuApplicationShortcut" Name="!(wix.ShortProduct)" Target="[#Test.ShortCut]"
Directory="ProgramMenuManufacturer" Show="normal" Icon="ShortCutIcon"/>
</Component>
</DirectoryRef>
<Feature Id="ProductFeature" Title="WixShortCuts" Level="1">
<ComponentRef Id="ProductComponent"/>
<ComponentRef Id="ProgramMenuShortcuts"/>
<ComponentRef Id="WixShortCut"/>
</Feature>
</code></pre>
<p></p>
http://stackoverflow.com/questions/1255761/how-to-get-a-installdirdlg-after-featuresdlg1How to get a InstallDirDlg after FeaturesDlgCheGueVerra2009-08-10T16:05:11Z2009-08-12T15:42:13Z
<p>I've been trying to get a InstallDirDlg to show after the FeaturesDlg, but for some reason I get the Install progress Dialog. So, I created this simple test project that has 4 features (each installs a file)...</p>
<p>Here's the code, thanks for the help...</p>
<pre><code><Fragment>
<UI Id="UserInterface">
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
<TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
<TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="9" Bold="yes" />
<TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
<DialogRef Id="BrowseDlg" />
<DialogRef Id="DiskCostDlg" />
<DialogRef Id="ErrorDlg" />
<DialogRef Id="FatalError" />
<DialogRef Id="FilesInUse" />
<DialogRef Id="MsiRMFilesInUse" />
<DialogRef Id="PrepareDlg" />
<DialogRef Id="ProgressDlg" />
<DialogRef Id="ResumeDlg" />
<DialogRef Id="UserExit" />
<DialogRef Id="SetupTypeDlg" />
<DialogRef Id="FeaturesDlg"/>
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="SetupTypeDlg">1</Publish>
<Publish Dialog="SetupTypeDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
<!-- Typical install: add all features except web service. -->
<Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="AddLocal" Value="ALL" Order="10"></Publish>
<Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="Remove" Value="FEATUREB" Order="20"></Publish>
<Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="Remove" Value="FEATUREC" Order="30"></Publish>
<Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="Remove" Value="FEATURED" Order="40"></Publish>
<Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="NewDialog" Value="InstallDirDlg" Order="50">1</Publish>
<!-- Custom install: display feature tree. -->
<Publish Dialog="SetupTypeDlg" Control="CustomButton" Event="NewDialog" Value="FeaturesDlg" Order="10">1</Publish>
<!-- Complete install: all features. Errors out if IIS is absent. -->
<Publish Dialog="SetupTypeDlg" Control="CompleteButton" Event="AddLocal" Value="ALL" Order="10"></Publish>
<Publish Dialog="SetupTypeDlg" Control="CompleteButton" Event="NewDialog" Value="InstallDirDlg" Order="30">1</Publish>
<Publish Dialog="FeaturesDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg">1</Publish>
<Publish Dialog="FeaturesDlg" Control="Install" Event="DoAction" Value="MissingFeature" Order="10">
<![CDATA[(NOT(&FEATUREA=3) AND NOT(&FEATUREB=3) AND NOT(&FEATUREC=3) AND NOT(&FEATURED=3))]]>
</Publish>
<Publish Dialog="FeaturesDlg" Control="Install" Event="NewDialog" Value="InstallDirDlg" Order="20">1</Publish>
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg"></Publish>
<Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="10">1</Publish>
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="20">1</Publish>
<Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="10">1</Publish>
<Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="20">1</Publish>
<Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
<!-- Back button declaration so no error on build -->
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg"></Publish>
</UI>
<UIRef Id="WixUI_Common" />
<UIRef Id="WixUI_ErrorProgressText" />
</Fragment>
</code></pre>
http://stackoverflow.com/questions/1255761/how-to-get-a-installdirdlg-after-featuresdlg/1267015#12670150Answer by CheGueVerra for How to get a InstallDirDlg after FeaturesDlgCheGueVerra2009-08-12T15:42:13Z2009-08-12T15:42:13Z<p>After doing some tests, I found out that without this line:</p>
<pre><code><Property Id="ALLUSERS" Value="1"/>
</code></pre>
<p>That sets the installer for a per-machine install the sequence given above will fail everytime no matter what dialog you put after the FeaturesDlg. If anyone else finds an other solution I would like to see it.</p>
http://stackoverflow.com/questions/1255878/why-does-windows-installer-display-a-popup-for-each-user-at-first-login/1255900#12559001Answer by CheGueVerra for Why does Windows Installer display a popup for each user at first login?CheGueVerra2009-08-10T16:34:01Z2009-08-10T16:34:01Z<p>We had this problem, it was solved by removing the Advertise property in the shortcuts that are created in the installation process.</p>
<p>That might be your issue...</p>
http://stackoverflow.com/questions/1167331/how-to-change-default-culture-settings-in-a-net-web-application/1167399#11673990Answer by CheGueVerra for how to change default culture settings in a .net web application?CheGueVerra2009-07-22T18:52:28Z2009-07-22T18:52:28Z<p>I would create a User Settings for the application, that would hold the CultureInfo for each user, and create a form to allow each user to edit the property ....</p>
http://stackoverflow.com/questions/1112485/how-do-i-register-a-net-assembly-to-the-gac-and-register-it-for-com-in-wix-re/1166247#11662470Answer by CheGueVerra for How do I register a .NET assembly to the GAC and register it for COM in WIX? (Regasm)CheGueVerra2009-07-22T15:47:58Z2009-07-22T15:47:58Z<p>Here's the <a href="http://stackoverflow.com/questions/205188/whats-the-correct-way-of-registering-installing-an-assembly-to-the-gac/205243#205243">link</a> to my answer to that ...</p>
http://stackoverflow.com/questions/912198/iis7-add-new-website-host-header-asp-net-web-form/912251#9122511Answer by CheGueVerra for IIS7 Add New Website / Host Header ASP.NET Web FormCheGueVerra2009-05-26T19:24:13Z2009-05-26T19:24:13Z<p>You mean <a href="http://msdn.microsoft.com/en-us/library/bb763174.aspx" rel="nofollow">Here</a> and <a href="http://learn.iis.net/page.aspx/103/creating-a-web-site-on-iis-70/" rel="nofollow">here</a> ... </p>
<p>Anything else, edit your question to be more specific.</p>
http://stackoverflow.com/questions/904100/how-to-detect-media-services-are-installed-on-windows-server-20030How to detect Media Services are installed on Windows server 2003?CheGueVerra2009-05-24T16:23:07Z2009-05-24T17:07:22Z
<p>I've been trying to find some information on this. So far I've been using the version Key presence to do it, is there a better way ? </p>
http://stackoverflow.com/questions/254718/how-do-you-use-fonts-after-installing-xna1How do you use fonts after installing xnaCheGueVerra2008-10-31T19:49:39Z2009-05-18T13:19:58Z
<p>I've downloaded a tutorial that had fonts included in the source. When I try to build the project, I always get the following error message:</p>
<blockquote>
<p>Error 1 The font family "Joystick"
could not be found. Please ensure the
requested font is installed, and is a
TrueType or OpenType font.</p>
</blockquote>
<p>The font was added via the control panel, and is a TrueType font.</p>
http://stackoverflow.com/questions/858923/wix-condition-properties-passed-from-command-line-dont-work/859879#8598790Answer by CheGueVerra for WiX condition properties passed from command line don't work?CheGueVerra2009-05-13T19:21:27Z2009-05-14T15:58:31Z<p>If IIRC Advertise has to bet set at Yes</p>
<p>You have seen this example from MindCapers <a href="http://wix.mindcapers.com/wiki/Shortcuts%5Fin%5FWiX" rel="nofollow">here</a>, I had trouble with the Shorcuts until I created the registry entry.</p>
http://stackoverflow.com/questions/860119/delphi-custom-message-handlers/860144#8601441Answer by CheGueVerra for Delphi custom message handlersCheGueVerra2009-05-13T20:10:26Z2009-05-13T20:10:26Z<p>You might try and change the end of the declaration to match the message you are trying to send.</p>
<pre><code>procedure OnRefreshRequest(var Msg: TMessage); message WM_CEA_REFRESH;
</code></pre>
<p>Should be this</p>
<pre><code>procedure OnRefreshRequest(var Msg: TMessage); message WM_REFRESH_MSG;
</code></pre>
http://stackoverflow.com/questions/854462/windows-smtp-server-with-server-2008-and-php/854481#8544810Answer by CheGueVerra for Windows SMTP Server with Server 2008 and PHPCheGueVerra2009-05-12T19:37:12Z2009-05-12T19:37:12Z<p>That test only applies to 2000, at least that what the papers says.
You should try <a href="http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-%5F2800%5FRC1%5F2900%5F.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/819722/remove-repair-option-screen-from-msi-installer/821292#8212921Answer by CheGueVerra for Remove repair option screen from MSI installerCheGueVerra2009-05-04T18:25:18Z2009-05-04T18:25:18Z<p>Have a look at this documentation from MSDN for: </p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa367590%28VS.85%29.aspx" rel="nofollow">ARPNOMODIFY</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa367592%28VS.85%29.aspx" rel="nofollow">ARPNOREPAIR</a></p>
http://stackoverflow.com/questions/798194/wix-3-0-list-of-available-ui-dialogs/798764#7987642Answer by CheGueVerra for WiX 3.0: List of available UI DialogsCheGueVerra2009-04-28T16:23:04Z2009-04-28T16:23:04Z<p>If you download the latest source for WIX, you'll find the declaration for WixUI_Common, in the Common.wxs file:</p>
<pre><code><UI Id="WixUI_Common">
<!-- ui text -->
<UIText Id="AbsentPath" />
<UIText Id="bytes">!(loc.UITextbytes)</UIText>
<UIText Id="GB">!(loc.UITextGB)</UIText>
<UIText Id="KB">!(loc.UITextKB)</UIText>
<UIText Id="MB">!(loc.UITextMB)</UIText>
<UIText Id="MenuAbsent">!(loc.UITextMenuAbsent)</UIText>
<UIText Id="MenuAdvertise">!(loc.UITextMenuAdvertise)</UIText>
<UIText Id="MenuAllCD">!(loc.UITextMenuAllCD)</UIText>
<UIText Id="MenuAllLocal">!(loc.UITextMenuAllLocal)</UIText>
<UIText Id="MenuAllNetwork">!(loc.UITextMenuAllNetwork)</UIText>
<UIText Id="MenuCD">!(loc.UITextMenuCD)</UIText>
<UIText Id="MenuLocal">!(loc.UITextMenuLocal)</UIText>
<UIText Id="MenuNetwork">!(loc.UITextMenuNetwork)</UIText>
<UIText Id="NewFolder">!(loc.UITextNewFolder)</UIText>
<UIText Id="ScriptInProgress">!(loc.UITextScriptInProgress)</UIText>
<UIText Id="SelAbsentAbsent">!(loc.UITextSelAbsentAbsent)</UIText>
<UIText Id="SelAbsentAdvertise">!(loc.UITextSelAbsentAdvertise)</UIText>
<UIText Id="SelAbsentCD">!(loc.UITextSelAbsentCD)</UIText>
<UIText Id="SelAbsentLocal">!(loc.UITextSelAbsentLocal)</UIText>
<UIText Id="SelAbsentNetwork">!(loc.UITextSelAbsentNetwork)</UIText>
<UIText Id="SelAdvertiseAbsent">!(loc.UITextSelAdvertiseAbsent)</UIText>
<UIText Id="SelAdvertiseAdvertise">!(loc.UITextSelAdvertiseAdvertise)</UIText>
<UIText Id="SelAdvertiseCD">!(loc.UITextSelAdvertiseCD)</UIText>
<UIText Id="SelAdvertiseLocal">!(loc.UITextSelAdvertiseLocal)</UIText>
<UIText Id="SelAdvertiseNetwork">!(loc.UITextSelAdvertiseNetwork)</UIText>
<UIText Id="SelCDAbsent">!(loc.UITextSelCDAbsent)</UIText>
<UIText Id="SelCDAdvertise">!(loc.UITextSelCDAdvertise)</UIText>
<UIText Id="SelCDCD">!(loc.UITextSelCDCD)</UIText>
<UIText Id="SelCDLocal">!(loc.UITextSelCDLocal)</UIText>
<UIText Id="SelChildCostNeg">!(loc.UITextSelChildCostNeg)</UIText>
<UIText Id="SelChildCostPos">!(loc.UITextSelChildCostPos)</UIText>
<UIText Id="SelCostPending">!(loc.UITextSelCostPending)</UIText>
<UIText Id="SelLocalAbsent">!(loc.UITextSelLocalAbsent)</UIText>
<UIText Id="SelLocalAdvertise">!(loc.UITextSelLocalAdvertise)</UIText>
<UIText Id="SelLocalCD">!(loc.UITextSelLocalCD)</UIText>
<UIText Id="SelLocalLocal">!(loc.UITextSelLocalLocal)</UIText>
<UIText Id="SelLocalNetwork">!(loc.UITextSelLocalNetwork)</UIText>
<UIText Id="SelNetworkAbsent">!(loc.UITextSelNetworkAbsent)</UIText>
<UIText Id="SelNetworkAdvertise">!(loc.UITextSelNetworkAdvertise)</UIText>
<UIText Id="SelNetworkLocal">!(loc.UITextSelNetworkLocal)</UIText>
<UIText Id="SelNetworkNetwork">!(loc.UITextSelNetworkNetwork)</UIText>
<UIText Id="SelParentCostNegNeg">!(loc.UITextSelParentCostNegNeg)</UIText>
<UIText Id="SelParentCostNegPos">!(loc.UITextSelParentCostNegPos)</UIText>
<UIText Id="SelParentCostPosNeg">!(loc.UITextSelParentCostPosNeg)</UIText>
<UIText Id="SelParentCostPosPos">!(loc.UITextSelParentCostPosPos)</UIText>
<UIText Id="TimeRemaining">!(loc.UITextTimeRemaining)</UIText>
<UIText Id="VolumeCostAvailable">!(loc.UITextVolumeCostAvailable)</UIText>
<UIText Id="VolumeCostDifference">!(loc.UITextVolumeCostDifference)</UIText>
<UIText Id="VolumeCostRequired">!(loc.UITextVolumeCostRequired)</UIText>
<UIText Id="VolumeCostSize">!(loc.UITextVolumeCostSize)</UIText>
<UIText Id="VolumeCostVolume">!(loc.UITextVolumeCostVolume)</UIText>
</UI>
</code></pre>
<p>This is from the 3.0.5217.0 source.</p>
http://stackoverflow.com/questions/796090/iis7-creating-virtual-directory-to-files-on-another-server/796101#7961011Answer by CheGueVerra for IIS7 Creating Virtual Directory to files on another serverCheGueVerra2009-04-28T03:22:56Z2009-04-28T05:20:10Z<p>Did you have a look at this <a href="http://learn.iis.net/page.aspx/372/serving-new-content/" rel="nofollow">video</a> and this <a href="http://stackoverflow.com/questions/647484/how-to-create-a-virtual-directory-in-iis7-for-asp-net">post</a></p>
<p>EDIT:</p>
<p><a href="http://www.eggheadcafe.com/conversation.aspx?messageid=29246375&threadid=29246375" rel="nofollow">This</a> and if that doesn't work try doing <a href="http://blogs.iis.net/rakkimk/archive/2008/10/15/iis7-how-to-set-up-logging-to-a-remote-unc-share.aspx" rel="nofollow">This</a> </p>
http://stackoverflow.com/questions/794956/dreamweaver-javascript-debugger/794980#7949800Answer by CheGueVerra for Dreamweaver Javascript DebuggerCheGueVerra2009-04-27T19:40:55Z2009-04-27T19:40:55Z<p>I solved most javascript problems using the Error Console in FireFox, I never got that to work :P</p>
http://stackoverflow.com/questions/794647/why-is-the-user-information-stored-in-two-different-tables-in-asp-nets-default-m/794816#7948160Answer by CheGueVerra for Why is the User information stored in two different tables in ASP.NET's default Membership Provider?CheGueVerra2009-04-27T18:56:02Z2009-04-27T18:56:02Z<p>I found this explination from this <a href="http://aspnet.4guysfromrolla.com/articles/120705-1.aspx" rel="nofollow">page</a>:</p>
<p>The SqlMembershipProvider stores user account information in two related tables: </p>
<ul>
<li><p>aspnet_Users - has a record for each user account, storing the bare essentials. The UserId column uniquely identifies each user in the system, and is stored as a uniqueidentifier (a GUID).</p></li>
<li><p>aspnet_Membership - has a UserId column that ties each record back to a particular record in aspnet_Users. The aspnet_Membership table stores core data associated with every user account: Email, Password, the security question and answer, and so on.</p></li>
</ul>
http://stackoverflow.com/questions/787811/how-do-i-create-a-custom-dialog-in-wix-for-user-input/788666#7886661Answer by CheGueVerra for How do I create a custom dialog in WiX for user input?CheGueVerra2009-04-25T10:30:55Z2009-04-25T10:30:55Z<p>This <a href="http://www.wixwiki.com/index.php?title=UiExtension" rel="nofollow">WIX WIKI</a> helped me when creating my custom dialogs for WIX.</p>
http://stackoverflow.com/questions/787354/how-to-detect-exact-length-in-regex1How to detect exact length in regexCheGueVerra2009-04-24T20:02:50Z2009-04-25T08:31:11Z
<p>I have two regular expressions that validate the values entered.</p>
<p>One that allows any length of Alpha-Numeric value:</p>
<pre><code>@"^\s*(?<ALPHA>[A-Z0-9]+)\s*"
</code></pre>
<p>And the other only allows numerical values:</p>
<pre><code>@"^\s*(?<NUM>[0-9]{10})"
</code></pre>
<p>How can I get a numerical string of the length of 11 not to be catched by the <code>NUM</code> regex.</p>
http://stackoverflow.com/questions/782938/wix-installed-property/782953#7829530Answer by CheGueVerra for WIX Installed propertyCheGueVerra2009-04-23T18:30:23Z2009-04-23T18:30:23Z<p>Did you set your WIX project to be able to detect it's an Upgrade ?
Have a look at the <a href="http://www.tramontana.co.hu/wix/lesson4.php" rel="nofollow">upgrade part</a> of the basic <a href="http://www.tramontana.co.hu/wix/" rel="nofollow">WIX Tutorials</a></p>
http://stackoverflow.com/questions/778210/wix-trying-to-figure-out-install-sequences/778358#7783581Answer by CheGueVerra for WiX - trying to figure out install sequencesCheGueVerra2009-04-22T17:34:30Z2009-04-22T19:30:16Z<p>Try getting a log file of the Installation, and look for the sequence order in there and the value of the condition to perform the Custom Action</p>
<p>Use this in the command line:
msiexec /i [msiname] /l*v [filename]</p>
<p>EDIT: After reading your comment have a look at this page <a href="http://msdn.microsoft.com/en-us/library/aa368561%28VS.85%29.aspx" rel="nofollow">here</a> you could try to add NOT INSTALLED in the condition</p>
<p>EDIT2: I found this <a href="http://www.installsite.org/pages/en/bugs%5Fmsi.htm" rel="nofollow">page</a> Search for your error Number 1631</p>
http://stackoverflow.com/questions/769064/code-to-create-iis-website/769099#7690990Answer by CheGueVerra for Code to create IIS WebsiteCheGueVerra2009-04-20T16:41:54Z2009-04-20T16:41:54Z<p>The best place for information on IIS 7, that I found so far is <a href="http://learn.iis.net/" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/226399#2263990Answer by CheGueVerra for Favorite Visual Studio keyboard shortcutsCheGueVerra2008-10-22T15:50:09Z2009-03-11T02:20:43Z<p>Here's a link to a <a href="http://www.wwwcoder.com/Weblogs/tabid/283/EntryID/774/Default.aspx" rel="nofollow">list</a> of Shortcuts I find usefull (VS2003) but some still apply,</p>
<p>My favorite being <kbd>F12</kbd> and <kbd>Ctrl</kbd>+<kbd>-</kbd> to navigate to the declaration and back</p>
http://stackoverflow.com/questions/591516/simple-regex-php/591532#5915322Answer by CheGueVerra for Simple RegEx PHPCheGueVerra2009-02-26T17:25:22Z2009-02-26T17:33:20Z<p>I found <a href="http://www.iowacomputergurus.com/free-products/regular-expression-tester.aspx" rel="nofollow">this regular expression tester</a> to be helpful.</p>
http://stackoverflow.com/questions/554164/how-can-i-make-simple-online-multi-player-games/554191#5541910Answer by CheGueVerra for How can I make simple online multi-player games?CheGueVerra2009-02-16T18:56:11Z2009-02-16T18:56:11Z<p>I would start by creating the game in the platform you are used to use, then pick a web platform that you want to try out, and try to recreate the game. </p>
http://stackoverflow.com/questions/543995/replicating-visual-studio-com-registration-with-a-wix-installer/546363#5463633Answer by CheGueVerra for Replicating Visual Studio COM registration with a WiX InstallerCheGueVerra2009-02-13T15:30:42Z2009-02-13T17:08:21Z<p>You should use Heat (WIX 3.0) located in the bin directory of the version you are using.
Have a look at this <a href="http://installing.blogspot.com/2006/04/heatexe-making-setup-easier.html" rel="nofollow">blog</a>, we use it here to register all our COM objects, by creating a wix fragment...</p>
<p>something like</p>
<p>heat file MyComExposedLibrary.dll -out MyComExposedLibrary.wxs</p>
<p>After, reading your edit, I would create a basic msi with wix that installs the com object only, see if that works ... then you'll know which battlefield to attack ...</p>
http://stackoverflow.com/questions/1439442/how-to-determine-if-a-registry-key-exists-in-wix/1439518#1439518Comment by CheGueVerra on How to determine if a registry key exists in WixCheGueVerra2009-09-18T17:27:45Z2009-09-18T17:27:45ZIf the key exists the value will change, otherwise it will stay the same.http://stackoverflow.com/questions/1439442/how-to-determine-if-a-registry-key-exists-in-wix/1439518#1439518Comment by CheGueVerra on How to determine if a registry key exists in WixCheGueVerra2009-09-17T17:11:58Z2009-09-17T17:11:58ZI would put a flag value to the property like -1, then you can check in a condition that the property is different than -1http://stackoverflow.com/questions/1435099/is-there-a-way-to-speed-up-wix-builds/1436803#1436803Comment by CheGueVerra on Is there a way to speed up WiX builds?CheGueVerra2009-09-17T15:16:48Z2009-09-17T15:16:48ZThanks for the linkhttp://stackoverflow.com/questions/1347958/what-would-you-do-when-you-see-a-co-programmer-is-running-into-an-alcohol-problemComment by CheGueVerra on What would you do when you see a co-programmer is running into an alcohol problem?CheGueVerra2009-08-28T16:07:38Z2009-08-28T16:07:38ZShit, I Never got that memo :Phttp://stackoverflow.com/questions/1312877/programmer-nerd-pick-up-linesComment by CheGueVerra on Programmer/Nerd Pick Up LinesCheGueVerra2009-08-21T16:21:19Z2009-08-21T16:21:19ZOur I/O interfaces are ompatible ;)http://stackoverflow.com/questions/1306391/does-the-wix-heat-utility-work-with-visual-c-projectsComment by CheGueVerra on Does the WIX heat utility work with Visual C++ projects?CheGueVerra2009-08-20T20:29:10Z2009-08-20T20:29:10ZCan your VS C++ project be built using MSBuild ?http://stackoverflow.com/questions/1295539/using-wix-to-package-an-installer-with-many-files/1295648#1295648Comment by CheGueVerra on Using WiX to package an installer with many filesCheGueVerra2009-08-18T19:39:55Z2009-08-18T19:39:55ZThe power of SO ;)http://stackoverflow.com/questions/1255878/why-does-windows-installer-display-a-popup-for-each-user-at-first-login/1255900#1255900Comment by CheGueVerra on Why does Windows Installer display a popup for each user at first login?CheGueVerra2009-08-11T14:01:41Z2009-08-11T14:01:41ZI use WIX, so I can't help you with the tool you are using ... MSDN search might help you out there.http://stackoverflow.com/questions/1255878/why-does-windows-installer-display-a-popup-for-each-user-at-first-login/1255900#1255900Comment by CheGueVerra on Why does Windows Installer display a popup for each user at first login?CheGueVerra2009-08-11T13:14:11Z2009-08-11T13:14:11ZI forgot about that since most of our products are per-machine ...http://stackoverflow.com/questions/1147836/unable-to-connect-to-so-from-workComment by CheGueVerra on Unable to connect to SO from workCheGueVerra2009-07-18T15:42:09Z2009-07-18T15:42:09ZEven if I was told no ??http://stackoverflow.com/questions/819722/remove-repair-option-screen-from-msi-installer/821292#821292Comment by CheGueVerra on Remove repair option screen from MSI installerCheGueVerra2009-05-05T16:05:45Z2009-05-05T16:05:45ZWhat do you want when the end user clicks opn your MSI, when it's installed ?http://stackoverflow.com/questions/686190/how-do-i-install-an-asp-net-mvc-application-on-iis-7-using-wix/689037#689037Comment by CheGueVerra on How do I install an ASP.Net MVC application on IIS 7 using Wix?CheGueVerra2009-04-30T15:42:07Z2009-04-30T15:42:07ZWhen uninstalling how do you take the entry out ?http://stackoverflow.com/questions/246329/wix-how-to-select-features-from-command-line/463875#463875Comment by CheGueVerra on WIX: How to Select Features From Command LineCheGueVerra2009-04-30T13:58:26Z2009-04-30T13:58:26ZThe msiexec command that I put was for the question asked, but I agree that you can have multiple features from the command linehttp://stackoverflow.com/questions/624918/using-wix-to-create-an-iis-virtual-directory/624949#624949Comment by CheGueVerra on Using WiX to create an IIS virtual directoryCheGueVerra2009-04-28T23:52:10Z2009-04-28T23:52:10ZWow, nice blog entry 1+http://stackoverflow.com/questions/787354/how-to-detect-exact-length-in-regex/787378#787378Comment by CheGueVerra on How to detect exact length in regexCheGueVerra2009-04-27T15:52:21Z2009-04-27T15:52:21ZThanks that's what I was looking for ...