User Ken - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T16:31:34Zhttp://stackoverflow.com/feeds/user/18836http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220146/error-1783-instsrv-exe-remove-from-win2k30Error 1783 - instsrv.exe REMOVE from Win2k3Ken2008-10-20T22:20:14Z2009-10-04T16:00:04Z
<p>My applications installer offers the user the ability to run the application as a service through use of the srvany.exe application. To remove the application on uninstall, I've been using the application "instsrv.exe" with the following command:</p>
<blockquote>
<p>instsrv "myservice" REMOVE</p>
</blockquote>
<p>On Windows Server 2003, I encounter an error 1783.</p>
<p>Any ideas what is causing this problem? Am I using the wrong approach for Win2k3?</p>
http://stackoverflow.com/questions/334163/how-can-i-abort-an-installshield-setup-depending-on-a-vbscript-custom-action-resu/334363#3343631Answer by Ken for How can I abort an InstallShield Setup depending on a vbscript custom action result?Ken2008-12-02T15:40:51Z2008-12-04T21:13:40Z<p>If you search on <a href="http://community.installshield.com" rel="nofollow">http://community.installshield.com</a> you'll find an article by Robert Dickau entitled "Exiting an MSI Installation from a Custom Action". It's at the following link:</p>
<p><a href="http://community.installshield.com/showthread.php?p=418197" rel="nofollow">http://community.installshield.com/showthread.php?p=418197</a></p>
<p>Here's the snippet of code he uses as his example:</p>
<pre><code>Function ExitSetupFromVBS( )
Const IDABORT = 3
' ...do some work...
' abort the installation
ExitSetupFromVBS = IDABORT
End Function
</code></pre>
<p>Good luck.</p>
http://stackoverflow.com/questions/105024/msi-installer-adding-multiple-properties-to-securecustomproperties1MSI installer: Adding multiple properties to SecureCustomPropertiesKen2008-09-19T19:59:30Z2008-10-22T16:08:54Z
<p>I'm looking for a way to add multiple properties to the SecureCustomProperties value in my .msi installer's property table. I've tried comma delimiting, semi-colon delimiting, and even space delimiters. None of the above seem to work.</p>
<p>Hints?</p>
http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220129#2201290Answer by Ken for Is there a faster alternative to Google Analytics?Ken2008-10-20T22:12:19Z2008-10-20T22:12:19Z<p><a href="http://www.webtrends.com" rel="nofollow">WebTrends</a> is a pretty effective "paid" service ... though I gotta say, the wiz-bang features of Google Analytics are way cooler.</p>
http://stackoverflow.com/questions/148786/how-to-shift-items-in-an-array/148830#1488304Answer by Ken for How to shift items in an array?Ken2008-09-29T14:12:03Z2008-09-29T14:12:03Z<p>Probably the easiest way to do this with an array is to use a circular index. Rather than always looking at array[n], you would reference array[cIndex] (where cIndex referrs to the item in the array being indexed (cIndex is incremented based on the arraySize (cIndex % arraySize)).</p>
<p>When you choose to drop the oldest item in the array, you would simply reference the element located at ((cIndex + (arraySize - 1)) % arraySize).</p>
<p>Alternatively, you could use a linkedList approach.</p>
http://stackoverflow.com/questions/105024/msi-installer-adding-multiple-properties-to-securecustomproperties/105047#1050474Answer by Ken for MSI installer: Adding multiple properties to SecureCustomPropertiesKen2008-09-19T20:02:24Z2008-09-19T20:02:24Z<p>Ok, so I was almost there ... <strong>semi-colon delimited with NO SPACES</strong>. This appears to do the trick.</p>
http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool/101832#1018325Answer by Ken for What is your bug/task tracking tool?Ken2008-09-19T13:31:55Z2008-09-19T13:31:55Z<p>We used to work with Bugzilla, but thought we'd give <a href="http://www.fogbugz.com" rel="nofollow">Fogbugz</a> a try ... the difference is night and day. We're way more productive with all the features built right into FogBugz (scheduling, release prediction, rss feeds), and soon we'll even be opening up a community forum and wiki to share important information with our user community.</p>
http://stackoverflow.com/questions/105024/msi-installer-adding-multiple-properties-to-securecustomproperties/105047#105047Comment by Ken on MSI installer: Adding multiple properties to SecureCustomPropertiesKen2008-10-22T16:11:12Z2008-10-22T16:11:12ZPLEASE NOTE: This solves the question mentioned above, but apparently I cannot accept my own answer as the solution (and so it remains "unsolved").http://stackoverflow.com/questions/220146/error-1783-instsrv-exe-remove-from-win2k3Comment by Ken on Error 1783 - instsrv.exe REMOVE from Win2k3Ken2008-10-22T16:06:57Z2008-10-22T16:06:57ZIt looks like the error is referencing a file "instsrv.c" which it's trying to load from the CD drive ... maybe there's a component which doesn't exist on this particular machine.
*T00z - thanks for the advice ... I'll definitely enforce a stop service before removing its registry entry