User sascha - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:39:33Z http://stackoverflow.com/feeds/user/592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864095/how-to-skip-the-features-select-screen-in-wix-generated-installer-program/1864785#1864785 1 Answer by sascha for How to skip the features select screen in WIX-generated installer program? sascha 2009-12-08T05:21:46Z 2009-12-08T05:21:46Z <p>If you only require the user to customize the installation folder, use:</p> <ul> <li>WixUI_InstallDir</li> </ul> <p>If you don't permit customization of the installation folder, use:</p> <ul> <li>WiXUI_Minimal</li> </ul> <p>Chances are you're using one of the built in libraries that <em>does</em> include the Feature Tree selction, i.e.</p> <ul> <li>WixUI_Mondo </li> <li>WixUI_FeatureTree</li> <li>WixUI_Advanced</li> </ul> http://stackoverflow.com/questions/1858434/build-nsis-script-as-a-msi-package/1863053#1863053 0 Answer by sascha for Build NSIS script as a MSI package sascha 2009-12-07T21:33:21Z 2009-12-07T21:33:21Z <p>Unfortunately, No.</p> <p><a href="http://nsis.sf.net" rel="nofollow">NSIS</a> lets you create scriptable, procedural installation packages. It's simple, easy to use and has a number of features not present in Windows Installer. </p> <p><a href="http://msdn.microsoft.com/en-us/library/cc185688%28VS.85%29.aspx" rel="nofollow">Windows Installer</a> (MSI) creates database driven, transactional installation packages. When written properly a Windows Installer package is very robust, a file gets corrupted/deleted and it will be automatically reinstalled. Windows Installer is aware of UAC and only elevates when required, basically if you're creating software for the corporate market, you will need to provide an MSI.</p> <p>Check out <a href="http://rads.stackoverflow.com/amzn/click/1590592972" rel="nofollow">The Definitive Guide to Windows Installer</a> for a good introduction to understanding MSI.</p> http://stackoverflow.com/questions/1830517/msiexechow-can-i-show-the-product-name/1837531#1837531 0 Answer by sascha for msiexec:How can I show the product name sascha 2009-12-03T03:57:56Z 2009-12-03T03:57:56Z <p>This is a Windows Installer prompt and cannot be customized. Windows installer is showing this message in order to confirm that you want to proceed with uninstall, your MSI doesn't have anything to do with how this prompt is displayed. </p> <p>For example if you install a French language MSI on English XP, the above message will still be in English even though all strings in the MSI are in French.</p> http://stackoverflow.com/questions/1819686/wix-open-web-page-when-uninstall-completes/1822692#1822692 2 Answer by sascha for Wix Open web page when uninstall completes sascha 2009-11-30T21:59:59Z 2009-11-30T21:59:59Z <p>Here's a sample of the code we use, we don't actually set the URL at compile time, but update properties in the MSI post-build so this might seem a little "over engineered". We use the WiXShellExec CA and have an additional condition so that the webpage is only displayed during uninstall, and not during a major upgrade.</p> <pre><code>&lt;Fragment&gt; &lt;Property Id="MyURL"&gt;&lt;![CDATA[http://www.blah.blah.blah/]]&gt;&lt;/Property&gt; &lt;CustomAction Id="SetOpenURL" Property="WixShellExecTarget" Value="[MyURL]" /&gt; &lt;CustomAction Id="OpenURL" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" Return="ignore" /&gt; &lt;InstallExecuteSequence&gt; &lt;!-- Launch webpage during full uninstall, but not upgrade --&gt; &lt;Custom Action="SetOpenURL" After="InstallFinalize"&gt;&lt;![CDATA[REMOVE ~= "ALL" AND NOT UPGRADINGPRODUCTCODE]]&gt;&lt;/Custom&gt; &lt;Custom Action="OpenURL" After="SetOpenURL"&gt;&lt;![CDATA[REMOVE ~= "ALL" AND NOT UPGRADINGPRODUCTCODE]]&gt;&lt;/Custom&gt; &lt;/InstallExecuteSequence&gt; &lt;/Fragment&gt; </code></pre> http://stackoverflow.com/questions/1792782/wix-how-can-i-launch-a-help-file-after-installation-wixuiexitdialogoptionalc/1794019#1794019 2 Answer by sascha for Wix: How can I launch a help file after installation? (WIXUI_EXITDIALOGOPTIONALCHECKBOX) sascha 2009-11-25T00:58:19Z 2009-11-29T22:41:56Z <p>Use <code>hh.exe</code> to launch your CHM file, rather than launching the CHM directly. (<code>hh.exe</code> is what is launched when you double click on a <code>.CHM</code> file)</p> <p>See the <a href="http://msdn.microsoft.com/en-us/library/ms669980%28VS.85%29.aspx" rel="nofollow">Microsoft HTML Help FAQ</a> for more information. </p> <p><strong>EDIT:</strong> You can rely on <code>hh.exe</code> being present for all currently supported Windows versions. Who knows about future releases, but it's in the same location on all OS's I've tested on. (Win2k right through to Win7 and 2008 R2)</p> http://stackoverflow.com/questions/1747765/avoid-proceeding-to-the-next-dialog-with-a-condition-in-a-wix-installer/1752939#1752939 2 Answer by sascha for Avoid proceeding to the next dialog with a condition in a WiX installer sascha 2009-11-18T00:55:03Z 2009-11-24T12:51:56Z <p>You'll need to set <code>Publish/@Order</code> so that everything is evaluated in the correct order.</p> <p>Something like the following should probably work:</p> <pre><code>&lt;Publish Dialog="MyDlg" Control="Next" Event="DoAction" Value="SomeAction" Order="1"&gt;1&lt;/Publish&gt; &lt;Publish Dialog="MyDlg" Control="Next" Event="SpawnDialog" Value="MyWarningDlg" Order="2"&gt;Not CONDITION&lt;/Publish&gt; &lt;Publish Dialog="MyDlg" Control="Next" Event="NewDialog" Value="MyOtherDlg" Order="3"&gt;CONDITION&lt;/Publish&gt; </code></pre> http://stackoverflow.com/questions/1754265/how-to-set-the-publisher-in-net-msi-installer/1759777#1759777 1 Answer by sascha for How to set the publisher in .Net msi installer sascha 2009-11-18T23:04:54Z 2009-11-18T23:04:54Z <p>You need a <strong><a href="http://msdn.microsoft.com/en-us/library/ms537364%28VS.85%29.aspx" rel="nofollow">Code signing</a> certificate</strong>.</p> <p><a href="http://www.comodo.com/business-security/digital-certificates/code-signing.php" rel="nofollow">Comodo</a> is the cheapest I've found at around $170/year, <a href="http://www.verisign.com/code-signing/content-signing-certificates/" rel="nofollow">Verisign</a> is much more expensive starting at $500/year for the same thing.</p> http://stackoverflow.com/questions/1757851/understanding-guids-updates-and-patches-with-windows-installer/1759741#1759741 1 Answer by sascha for Understanding GUIDS, updates, and patches with Windows-Installer sascha 2009-11-18T22:57:59Z 2009-11-18T22:57:59Z <p>Learn the <a href="http://msdn.microsoft.com/en-us/library/aa372795%28VS.85%29.aspx" rel="nofollow">Component Rules</a>. They're very easy to break and Windows Installer doesn't enforce them. However if you don't follow the rules, then weird strange voodoo happens.</p> <p>Easy solution, stick with one file per component and use <code>heat</code> with compile time GUID generation (outputs with <code>Guid="*"</code> uses a stable algorithm, it's not random). Having heat generate GUIDs is random, but GUIDs generated by <code>candle</code> at compile time will be stable (based on filename + path hash or something from memory)</p> <p>If windows installer finds a file already on disk during install, it will increment the reference count for that file assuming it's a "shared" file. Files are only removed from disk once the reference count returns to zero so if a file already existed, the count may never return to zero and you can get files left lying around even after uninstalling.</p> http://stackoverflow.com/questions/1751285/msi-install-program-as-startup/1752843#1752843 0 Answer by sascha for msi install program as startup sascha 2009-11-18T00:28:26Z 2009-11-18T00:28:26Z <p>Sure, simply use the registry <a href="http://support.microsoft.com/kb/314866" rel="nofollow">Run keys</a> to start your application. e.g.</p> <p><code>HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run</code></p> <p>There's nothing special about Windows Installer in this case, you could easily use a non-MSI setup program to accomplish the same thing.</p> http://stackoverflow.com/questions/1743589/web-setup-project-repair-to-overwrite-files/1745513#1745513 0 Answer by sascha for Web Setup Project - Repair to overwrite files sascha 2009-11-16T23:19:04Z 2009-11-16T23:19:04Z <p>Try setting the default config files each as the Key file in their own component.</p> http://stackoverflow.com/questions/1744105/upgrade-individual-feature-in-wix-feature-tree-without-uninstalling-upgrading-oth/1745379#1745379 0 Answer by sascha for Upgrade individual feature in WIX feature-tree without uninstalling/upgrading other feature(s) sascha 2009-11-16T22:51:05Z 2009-11-16T22:51:05Z <p>Sounds like you figured out the upgrade scenario, now you just need to figure out <a href="http://jpassing.wordpress.com/2007/06/16/where-to-place-removeexistingproducts-in-a-major-msi-upgrade/" rel="nofollow">Where to place RemoveExistingProducts in a major MSI upgrade</a> so that features aren't reinstalled if they haven't changed :)</p> http://stackoverflow.com/questions/1728836/visual-studiohow-to-show-a-link-after-installation-had-finished/1739161#1739161 0 Answer by sascha for Visual Studio:How to show a link after installation had finished? sascha 2009-11-15T22:51:54Z 2009-11-15T22:51:54Z <p>The <a href="http://msdn.microsoft.com/en-us/library/dd407936%28VS.85%29.aspx" rel="nofollow">Hyperlink control</a> is only supported in Windows Installer 5.0 (i.e. Windows 7, Server 2008 R2)</p> <p>To do this with older versions of Windows Installer, you'll need to create a CustomAction that launches the website, and then tie the execution of the CustomAction to a button, another common use is to create a checkbox saying "Launch blah blah..." and then tie a CustomAction to the 'Finish' button which executes based on the value of the checkbox. </p> http://stackoverflow.com/questions/1732220/how-to-allow-users-to-install-multiple-copies-of-an-msi-file/1739144#1739144 0 Answer by sascha for How to allow users to install multiple copies of an msi file sascha 2009-11-15T22:46:57Z 2009-11-15T22:46:57Z <p>Refer to the Microsoft documentation on <a href="http://msdn.microsoft.com/en-us/library/aa369523%28VS.85%29.aspx" rel="nofollow">Installing Multiple Instances of Products and Patches</a>.</p> <p>From memory there was discussion <a href="http://n2.nabble.com/wix-users-f687560.html" rel="nofollow">on the WiX list</a> last month with someone trying to do this when using WiX to install multiple websites on the same server. If you can find the relevant threads there should be some more through responses than mine there :)</p> http://stackoverflow.com/questions/1720888/how-to-hide-startup-icon-in-installshield/1725822#1725822 0 Answer by sascha for How to hide Startup icon in installshield sascha 2009-11-12T22:21:11Z 2009-11-12T22:21:11Z <p>Don't create a shortcut, use the registry <a href="http://support.microsoft.com/kb/314866" rel="nofollow">Run keys</a> to start your application instead. e.g.</p> <p><code>HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run</code></p> http://stackoverflow.com/questions/1723903/are-tables-supported-when-displaying-rtf-files-in-windows-installer/1725797#1725797 0 Answer by sascha for Are tables supported when displaying RTF files in Windows Installer sascha 2009-11-12T22:18:09Z 2009-11-12T22:18:09Z <p>The Windows Installer ScrollableText control doesn't support complex RTF, basically try to keep your RTF as simple as possible, always save in Wordpad and if it doesn't look like it's going to work.. it probably isn't.</p> http://stackoverflow.com/questions/1718373/vs-2005-setup-hkcu/1719787#1719787 1 Answer by sascha for VS 2005 Setup - HKCU sascha 2009-11-12T03:57:29Z 2009-11-12T03:57:29Z <p>There's no such thing as an "Everyone" <code>HKCU</code> key. HKCU is <em>per user</em>. Windows Installer will always try to repair, and unless everyone has access to the original MSI file then it will probably fail.</p> <p>Basically the rule of thumb I always follow is to never write to <code>HKCU</code> during install, instead I write to <code>HKLM</code> during installation, and the first time the application runs then I create the relevant <code>HKCU</code> keys. </p> <p>See my answer on the SO question <a href="http://stackoverflow.com/questions/1344574/launching-a-program-in-different-creds-or-hkcu-and-installers">Launching a program in different creds or HKCU and installers</a> and check out <a href="http://www.etlengineering.com/installer/activesetup.txt" rel="nofollow">ActiveSetup</a> as a viable alternative for writing the relevant <code>HKCU</code> configuration.</p> http://stackoverflow.com/questions/1715470/building-an-installer-that-can-install-the-same-package-multiple-times-to-differ/1718237#1718237 1 Answer by sascha for Building an installer that can install the same package multiple times (to different folders) with multiple configurations sascha 2009-11-11T21:33:16Z 2009-11-11T21:33:16Z <p>Refer to the Microsoft documentation on <a href="http://msdn.microsoft.com/en-us/library/aa369523%28VS.85%29.aspx" rel="nofollow">Installing Multiple Instances of Products and Patches</a>.</p> <p>Basically, you can't do this at runtime "inside" the MSI (without breaking other core functionality of Windows Installer, in which case you might as well just use a non-MSI solution such as NSIS instead)</p> <p>If you want to create a truly dynamic system, where multiple instances can be defined by the end-user at runtime you'll need to create a bootstrapper that prompts the user for information, generates an MST on the fly and then launches the MSI with the required parameters. Alternatively, create the MST's yourself on a per-customer basis (it's fairly trivial to script.. check out the samples provided in the Windows SDK)</p> <p>From memory there was discussion <a href="http://n2.nabble.com/wix-users-f687560.html" rel="nofollow">on the WiX list</a> last month with someone trying to do this when using WiX to install multiple websites on the same server. If you can find the relevant threads there should be some more through responses than mine there :)</p> http://stackoverflow.com/questions/1700525/is-it-possible-for-32-bit-nsis-to-launch-a-64-bit-program/1704944#1704944 2 Answer by sascha for Is it possible for 32 bit NSIS to launch a 64 bit program? sascha 2009-11-10T00:39:47Z 2009-11-10T00:39:47Z <p>Sure you can, NSIS doesn't impose any restrictions and what's really nifty about NSIS is if you have both 32 and 64 bit versions of your app, you can do a combined installer, and install the required files on a per-architecture basis. e.g.</p> <pre><code>!include "x64.nsh" ${If} ${RunningX64} File ..\x64\blah.exe ${Else} File ..\x86\blah.exe ${EndIf} </code></pre> http://stackoverflow.com/questions/1682252/wix-define-a-file-component-that-may-not-exist/1684607#1684607 1 Answer by sascha for WiX: Define a File component that may not exist sascha 2009-11-06T00:24:01Z 2009-11-06T00:29:14Z <p>As iwo said, <a href="http://wix.sourceforge.net/manual-wix3/preprocessor.htm" rel="nofollow">preprocessor variables</a> are your friend! However the example from iwo can (and will) violate component rules, as the component isn't 'stable'. Better to condition an entire component (or component group)...</p> <pre><code>&lt;?if $(var.releasetype)=full ?&gt; &lt;ComponentRef Id="Somefile.dll" /&gt; &lt;?elseif $(var.releasetype)=enterprise ?&gt; &lt;ComponentGroupRef Id="SomethingElse" /&gt; &lt;?endif?&gt; </code></pre> <p>And then include the <code>Component</code> and <code>ComponentGroup</code>s in separate <code>Fragment</code> tags so that they will only be compiled when referenced :)</p> <pre><code>&lt;Fragment&gt; &lt;Component Id="Somefile.dll" Guid="*"&gt; &lt;File Id="Somefile.dll" KeyPath="yes" Source="SourceDir\Somefile.dll" /&gt; &lt;/Component&gt; &lt;/Fragment&gt; &lt;Fragment&gt; &lt;ComponentGroup Id="SomethingElse"&gt; &lt;ComponentRef Id="Somefile.dll" /&gt; &lt;Component Id="AnotherFile.dll&gt; &lt;File Id="AnotherFile.dll" KeyPath="yes" Source="SourceDir\AnotherFile.dll" /&gt; &lt;/Component&gt; &lt;/ComponentGroup&gt; &lt;/Fragment&gt; </code></pre> <p>Personally I use <a href="http://nant.sourceforge.net/" rel="nofollow">nant</a> to call <code>candle</code> and <code>light</code> targets, defining different variables for various different builds and products, effective use of fragments and preprocessor variables provides a great opportunity for code re-use between projects, or various releases of the same project.</p> <p>In your case, to check if a file exists... then you'd just use the internal functions to define, or redefine a variable that is later passed to WiX. e.g.:</p> <pre><code>&lt;if test="${not file::exists('something.dll')}"&gt; &lt;property name="releasetype" value="blahblahblah" /&gt; &lt;/if&gt; </code></pre> http://stackoverflow.com/questions/1683620/getting-started-with-cronjobs-on-a-mac/1684383#1684383 0 Answer by sascha for Getting started with cronjobs on a Mac. sascha 2009-11-05T23:26:41Z 2009-11-05T23:26:41Z <p>To get started with launchd (instead of cron) you'll want to first create an empty <code>.plist</code> file, for example <code>local.mytask.plist</code> and put it somewhere. <code>~/Library/LaunchAgents</code> is probably a good place. Open that in text editor and copy in the code below</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;KeepAlive&lt;/key&gt; &lt;false/&gt; &lt;key&gt;Label&lt;/key&gt; &lt;string&gt;local.mytask&lt;/string&gt; &lt;key&gt;ProgramArguments&lt;/key&gt; &lt;array&gt; &lt;string&gt;/opt/local/bin/wget&lt;/string&gt; &lt;string&gt;http://someserver/somepage.php&lt;/string&gt; &lt;/array&gt; &lt;key&gt;StartInterval&lt;/key&gt; &lt;integer&gt;300&lt;/integer&gt; &lt;key&gt;RunAtLoad&lt;/key&gt; &lt;true /&gt; &lt;key&gt;StandardErrorPath&lt;/key&gt; &lt;string&gt;/dev/null&lt;/string&gt; &lt;key&gt;StandardOutPath&lt;/key&gt; &lt;string&gt;/dev/null&lt;/string&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre> <p>Then "activate" the file from the command line:</p> <pre><code>sudo launchctl load /Users/my_username/Library/LaunchAgents/local.mytask.plist </code></pre> <p>To make it load automatically, create a <code>~/.launchd.conf</code> file with the same line (minus <code>sudo launch</code>)</p> <pre><code>load /Users/my_username/Library/LaunchAgents/local.mytask.plist </code></pre> <p><em>The above instructions above have been copied from <a href="http://www.davidlanier.com/story/cron-and-launchctl-on-mac-os-x-105-leopard" rel="nofollow">www.davidlanier.com</a> and reposted here for your reference.</em></p> http://stackoverflow.com/questions/1682462/wix-customaction-session-log-not-working/1683872#1683872 1 Answer by sascha for Wix CustomAction session.Log not working sascha 2009-11-05T21:45:37Z 2009-11-05T21:45:37Z <p>It would help if you stated what language you are using... </p> <p>If you're using managed code... be wary of the limitations (below quoted from the WiX documentation)</p> <blockquote> <p>Before choosing to write a custom action in managed code instead of traditional native C++ code, you should carefully consider the following:</p> <ul> <li><p>Obviously, it introduces a dependency on the .NET Framework. Your MSI package should probably have a LaunchCondition to check for the presence of the correct version of the .NET Framework before anything else happens.</p></li> <li><p>If the custom action runs at uninstall time, then even the uninstall of your product may fail if the .NET Framework is not present. This means a user could run into a problem if they uninstall the .NET Framework before your product.</p></li> <li><p>A managed custom action should be configured to run against a specific version of the .NET Framework, and that version should match the version your actual product runs against. Allowing the version to "float" to the latest installed .NET Framework is likely to lead to compatibility problems with future versions. The .NET Framework provides side-by-side functionality for good reason -- use it.</p></li> </ul> </blockquote> <p>Additionally, you should also read why <a href="http://blogs.msdn.com/robmen/archive/2004/05/20/136530.aspx" rel="nofollow">VBScript (and JScript) MSI CustomActions suck</a></p> <p>Anyway, ignoring all that... here's some sample C++ code that I found somewhere a long time ago that I use for logging. You might be able to figure out the correct functions that should be called in your chosen language.</p> <pre><code>#define _USE_RTM_VERSION void LogString(MSIHANDLE hInstall, TCHAR* szString) { PMSIHANDLE newHandle = ::MsiCreateRecord(2); TCHAR szTemp[MAX_PATH * 2]; sprintf_s(szTemp, MAX_PATH * 2, "-- MSI_LOGGING -- %s", szString); MsiRecordSetString(newHandle, 0, szTemp); MsiProcessMessage(hInstall, INSTALLMESSAGE(INSTALLMESSAGE_INFO), newHandle); } UINT __stdcall MyCustomAction ( MSIHANDLE hModule ) { LogString(hModule, "Whoa! I am a custom action.."); return ERROR_SUCCESS; } </code></pre> http://stackoverflow.com/questions/1625520/theme-for-my-wix-installer/1678212#1678212 0 Answer by sascha for Theme for my WiX Installer sascha 2009-11-05T03:44:13Z 2009-11-05T03:44:13Z <p>See <a href="http://blogs.msdn.com/windows_installer_team/archive/2005/07/23/442584.aspx" rel="nofollow">http://blogs.msdn.com/windows_installer_team/archive/2005/07/23/442584.aspx</a> - if you want to do advanced UI stuff you'll need to build an external UI. The internal/standard Windows Installer UI is pretty limited.</p> http://stackoverflow.com/questions/1611996/problem-with-z-index-of-the-controls-in-wixuiproblem-of-overlapping/1635215#1635215 0 Answer by sascha for Problem with Z-index of the controls in WIXUI(Problem of overlapping) sascha 2009-10-28T04:32:27Z 2009-11-04T21:06:02Z <p>Have a look at the dialogs included in the UI extension, you should be able to examine similar dialogs and work backwards to figure out what's going on. There's a background bitmap on the welcome dialog for example.</p> <p><a href="http://wix.cvs.sourceforge.net/viewvc/wix/wix/src/ext/UIExtension/wixlib/" rel="nofollow">http://wix.cvs.sourceforge.net/viewvc/wix/wix/src/ext/UIExtension/wixlib/</a></p> <p><strong>Edit:</strong> In response to the comment about the Office 2007 installation experience, Office uses an external UI, not the built in stuff that Windows Installer provides. The setup is in WiX, but the UI isn't - there's more than 20 MSI files on the Office 2007 Ultimate disk, the external UI hides all of this from you to make it appear as a single installation package when in reality it's actually a whole lot more complicated.</p> <p><strong>Edit 2:</strong> See <a href="http://blogs.msdn.com/windows_installer_team/archive/2005/07/23/442584.aspx" rel="nofollow">http://blogs.msdn.com/windows_installer_team/archive/2005/07/23/442584.aspx</a> for a good starting point on implementing non-native Windows Installer UI</p> http://stackoverflow.com/questions/1647624/how-to-embedded-msi-into-a-setup-exe-and-execute-it-silently/1648259#1648259 0 Answer by sascha for How to embedded msi into a setup.exe and execute it silently? sascha 2009-10-30T06:07:33Z 2009-11-04T21:05:21Z <p>You'll need to impliment an external UI handler.</p> <p>You might find some of the links on <a href="http://blogs.msdn.com/windows_installer_team/archive/2005/07/23/442584.aspx" rel="nofollow">http://blogs.msdn.com/windows_installer_team/archive/2005/07/23/442584.aspx</a> as a helpful starting point.</p> http://stackoverflow.com/questions/1634805/is-it-ok-to-run-an-msi-from-the-temp-directory/1635081#1635081 2 Answer by sascha for Is it OK to run an MSI from the Temp directory? sascha 2009-10-28T03:42:22Z 2009-10-29T05:47:10Z <p>Well, yes it does make a copy... but any embedded CABs in the MSI are stripped before the MSI is cached. Otherwise every install you make, would require double the disk space - once for the installed files, once for the cached ones.</p> <p>A number of bootstrappers will make a copy of the original MSI in <code>"%Windir%\Downloaded Installations"</code> (or similar) and run the installer from there - ensuring that any embedded CAB files are still available should you later need to run a repair, or embedded files are required by particular CA's during uninstall. </p> <p>So while you <em>might</em> be able to get away with running the MSI from the temp folder, you can still run into problems. I've experienced this myself when downloading an MSI to the desktop and deleting it on completion of install. </p> <p>The best way I find to think about it is in the context of network deployments, say you've got a really large compressed MSI file with embedded CAB files that is being deployed across your network - it doesn't make sense to cache both the MSI <em>and</em> the entire source files (doubling the disk space required for installation) when Windows Installer can strip the CAB files, leaving a much smaller amount of local data cached on each PC.</p> <p>Depending on the way your install is authored, you might be able to uninstall without the original source, but you might not. Rather than assume the worst case Windows Installer only caches what is needed and assumes that it can access the original source (CD, network share, downloaded file, etc) if the original CABs are ever required for a repair or uninstall.</p> <p>Basically, put the MSI somewhere, install it, delete it, and try to uninstall. If you succeed, you'll have no problems. If you get asked for the source file, then you've run into the issues that Phil is describing :)</p> <p><strong>Edit:</strong> As Michael points out in the comments below, it's also worth trying to repair with the MSI deleted/not available as well.</p> http://stackoverflow.com/questions/1613471/using-package-transformations-mst/1635204#1635204 0 Answer by sascha for Using Package Transformations (MST) sascha 2009-10-28T04:30:02Z 2009-10-28T04:30:02Z <p>When deploying a package via Active Directory, you can't specify command line properties... so you'll need to use an MST.</p> <p>Additionally if you want to add/change new files (either uncompressed, or in a CAB) then you'll also need an MST.</p> http://stackoverflow.com/questions/1624858/installer-automatic-repair-feature/1635152#1635152 1 Answer by sascha for Installer automatic repair feature sascha 2009-10-28T04:11:12Z 2009-10-28T04:11:12Z <p>You're launching the application from an "Advertised Shortcut" which will trigger the repair functionality.</p> <p>Solution 1 - install sample files as read-only and then copy them to a per-user location when they're being used (so that Windows Installer doesn't even know about the user copies)</p> <p>Solution 2 - Set the <a href="http://msdn.microsoft.com/en-us/library/aa368297%28VS.85%29.aspx" rel="nofollow">DISABLEADVTSHORTCUTS</a> property to create "standard" rather than "advertised" shortcuts during installation. </p> <p>You really should redesign your application so that installed files are never modified, but if you're after a quick and dirty fix solution 2 above should do the trick.</p> http://stackoverflow.com/questions/1625600/can-windows-installer-msi-make-the-user-full-trust/1635138#1635138 0 Answer by sascha for Can Windows installer msi make the user full trust sascha 2009-10-28T04:06:23Z 2009-10-28T04:06:23Z <p>You'll need to add the correct manifest to your application, in this case it seems you will need <code>requireAdministrator</code></p> <p>See <a href="http://msdn.microsoft.com/en-us/library/bb756929.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb756929.aspx</a></p> http://stackoverflow.com/questions/1628089/wix-3-using-heat-exe-to-add-bulk-files-to-a-new-wix-project-heat5150/1635135#1635135 0 Answer by sascha for WiX 3: Using heat.exe to add bulk files to a new WiX project: HEAT5150 sascha 2009-10-28T04:03:53Z 2009-10-28T04:03:53Z <p>Are you trying to extract data from x64 DLL's? That doesn't really work...</p> http://stackoverflow.com/questions/1629475/vmware-workstation-7-vs-vmware-player-3-features/1635109#1635109 0 Answer by sascha for VMware Workstation 7 vs. VMware Player 3 features? sascha 2009-10-28T03:57:06Z 2009-10-28T03:57:06Z <p>Basically you get multiple snapshots, clones, record and replay and a bunch of other advanced features.</p> <p>If you're an end user just looking to virtualize an OS, then you won't gain any benefit and there are plenty of free products that will meet your need. Virtualization has become a commodity product (Virtual PC, Virtualbox, VMware Player, and so on) - VMware is just keeping up with the other free offerings. </p> <p>However, if you're doing software development, QA, etc. then you'll take advantage of the additional features found in VMware Workstation - Put it this way... ask your boss... <em>"want me to wait around and waste time for a few hours a week, or will you shell out $190 for a Workstation license?"</em></p> http://stackoverflow.com/questions/1852960/orca-transform-a-few-questions Comment by sascha on Orca Transform, a few questions sascha 2009-12-06T22:25:50Z 2009-12-06T22:25:50Z Can you provide a more detailed explanation of (1)? http://stackoverflow.com/questions/1811035/spaces-in-my-wix-source-path/1816762#1816762 Comment by sascha on spaces in my wix source path sascha 2009-11-29T22:47:37Z 2009-11-29T22:47:37Z +1, makes everything much less complex. Unfortunately the WiX documentation doesn't appear to explain the link between using -b for light and using &quot;SourceDir&quot; in File/@Source. http://stackoverflow.com/questions/1757851/understanding-guids-updates-and-patches-with-windows-installer/1759741#1759741 Comment by sascha on Understanding GUIDS, updates, and patches with Windows-Installer sascha 2009-11-20T03:38:20Z 2009-11-20T03:38:20Z True, if you violate component rules then all bets are off ;) http://stackoverflow.com/questions/923384/is-there-any-definitive-documentation-on-writing-software-installers/923780#923780 Comment by sascha on Is there any definitive documentation on writing software installers? sascha 2009-11-18T00:30:52Z 2009-11-18T00:30:52Z Unfortunately you're going to need to take the Windows Installer route if you're writing business software - most Corporate customers won't even consider purchasing unless you can provide them with an MSI for deployment. http://stackoverflow.com/questions/1751285/msi-install-program-as-startup/1751323#1751323 Comment by sascha on msi install program as startup sascha 2009-11-18T00:29:26Z 2009-11-18T00:29:26Z I think he's talking about installing a startup program using MSI, not installing an MSI at startup http://stackoverflow.com/questions/1683620/getting-started-with-cronjobs-on-a-mac/1683657#1683657 Comment by sascha on Getting started with cronjobs on a Mac. sascha 2009-11-05T23:30:00Z 2009-11-05T23:30:00Z cron isn't running by default on 10.4 and above, you'll have to enable it first. From memory the crond manpage shows how to do this. http://stackoverflow.com/questions/1611996/problem-with-z-index-of-the-controls-in-wixuiproblem-of-overlapping/1635215#1635215 Comment by sascha on Problem with Z-index of the controls in WIXUI(Problem of overlapping) sascha 2009-10-30T06:06:07Z 2009-10-30T06:06:07Z As mentioned in my response, there is a background bitmap on the Welcome dialog. So it is possible - <a href="http://wix.cvs.sourceforge.net/viewvc/" rel="nofollow">wix.cvs.sourceforge.net/viewvc</a>*checkout*/wix/wix/src/ext/UIExtension/wixlib/WelcomeDlg.wxs?revision=1.5 http://stackoverflow.com/questions/1624858/installer-automatic-repair-feature/1633373#1633373 Comment by sascha on Installer automatic repair feature sascha 2009-10-29T05:55:56Z 2009-10-29T05:55:56Z You could easily script it, an MSI is just a database and the Windows SDK includes a bunch of sample VB scripts including one that lets you execute arbitrary SQL against any MSI database. http://stackoverflow.com/questions/1628089/wix-3-using-heat-exe-to-add-bulk-files-to-a-new-wix-project-heat5150/1628099#1628099 Comment by sascha on WiX 3: Using heat.exe to add bulk files to a new WiX project: HEAT5150 sascha 2009-10-28T04:04:50Z 2009-10-28T04:04:50Z just open the wxs in VS... it's just XML, nothing fancy. http://stackoverflow.com/questions/1609250/how-do-i-add-update-a-property-inside-an-msi-from-the-command-line/1610269#1610269 Comment by sascha on How do I add/update a property inside an MSI from the command-line? sascha 2009-10-23T23:47:41Z 2009-10-23T23:47:41Z I've only found that I need to update the Summary Information when creating transforms, any reason why you need to update for all changes? http://stackoverflow.com/questions/1602831/wix-components-files/1602875#1602875 Comment by sascha on Wix Components / Files ? sascha 2009-10-22T00:27:28Z 2009-10-22T00:27:28Z You lose resiliency checking, and can create problems down the line. You can't add/remove files from a component during a later build as this violates component rules. http://stackoverflow.com/questions/458857/how-to-make-better-use-of-msi-files/459726#459726 Comment by sascha on How to make better use of MSI files. sascha 2009-10-05T03:17:59Z 2009-10-05T03:17:59Z On an MSI development note, you need to ensure that properties are PUBLIC and SECURE if you want them to be passed thru to the elevated UAC context - <a href="http://msdn.microsoft.com/en-au/library/aa371571(VS.85).aspx" rel="nofollow">msdn.microsoft.com/en-au/library/&hellip;</a> http://stackoverflow.com/questions/759110/licensing-question-when-running-windows-xp-under-windows-xp-using-vmware/766358#766358 Comment by sascha on Licensing question when running Windows XP under Windows XP (using vmware) sascha 2009-08-30T22:17:26Z 2009-08-30T22:17:26Z Thanks Roddy, that seems to differ from what Microsoft Australia told me over the phone. I've updated my answer anyway. Developers will usually need MSDN to access development tools anyway. http://stackoverflow.com/questions/1344574/launching-a-program-in-different-creds-or-hkcu-and-installers/1344923#1344923 Comment by sascha on Launching a program in different creds or HKCU and installers sascha 2009-08-30T22:13:11Z 2009-08-30T22:13:11Z Just make sure you open the keys for &quot;Read&quot; access only and you should be OK :) http://stackoverflow.com/questions/1327203/in-wix-how-do-i-test-for-the-existence-of-a-registry-key-not-value-for-oracle-o/1327790#1327790 Comment by sascha on In WiX how do I test for the existence of a registry key (not value) for Oracle ODP.Net sascha 2009-08-27T05:44:54Z 2009-08-27T05:44:54Z I think you'll need to look for a different registry key in that case...