installer

FxCop 1.36 is gone [closed]

我与影子孤独终老i 提交于 2019-12-21 06:57:33
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I just wanted to download FxCop 1.36 but I can't find it in the internet. A few days ago FxCop 10 came out for Windows 7 but I need the old Version. The file is gone on the MS server and everybody linked it. Anyone has the old install routine? 回答1: I have the 1.36 installer...If you still need it, I could put it

How to determine whether a specific Windows Update package (KB*.msu) is installed using Inno Setup?

*爱你&永不变心* 提交于 2019-12-21 06:19:08
问题 I wonder how to determine whether a specific Windows Update package is installed in the target machine, lets say for example the Windows Update package with name KB2919355 . Exists a built-in feature to check that? If not, what would be the required code to determine it? Maybe messing with registry, or maybe a cleanest and/or secure way? Pseudo-Code: [Setup] ... [Files] Source: {app}\*; DestDir: {app}; Check: IsPackageInstalled('KB2919355') [Code] function IsPackageInstalled(packageName):

Detecting if SQL Server Compact Edition 3.5 SP2 x64 is installed?

与世无争的帅哥 提交于 2019-12-21 04:58:10
问题 I am building an installer and I want to bootstrap SQL Server Compact Edition 3.5 SP2. The problem is that I am looking for the registry key HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\ENU\DesktopRuntimeVersion . The reason that is a problem is that for 64-bit machines SQL CE requires that both the 32-bit and 64-bit installers are run. You can't install the 64-bit version until the 32-bit version is installed. As soon as the 32-bit version is installed the registry key

WiX, how to prevent files from uninstalling though we forgot to set Permanent=“yes”

好久不见. 提交于 2019-12-21 04:29:18
问题 We have a product installer created with Wix, containing a program package (" V1 ") and some configuration files. Now, we are going to make a major upgrade with a new product code, where the old version of the product is uninstalled and " V2 " is installed. What we want is to save one of the configuration files from uninstalling, since it is needed for the V2, too. Unfortunately, we forgot to set the Permanent="yes" option when we delivered V1 (read this question for more information). Here

Unload kext which still has instances

我们两清 提交于 2019-12-21 02:51:15
问题 I'm updating the driver of one of my devices and would like to kextunload the old driver and kextload the new one so a restart isn't required anymore. After the installation I try: sudo kextunload /System/Library/Extensions/Driver.kext The error which happens looks like this: (kernel) Can't unload kext com.driver.Driver; classes have instances: (kernel) Kext com.driver.Driver class com_driver_Driver_USBAudioDevice has 1 instance. Failed to unload com.driver.Driver - (libkern/kext) kext is in

Unload kext which still has instances

对着背影说爱祢 提交于 2019-12-21 02:51:07
问题 I'm updating the driver of one of my devices and would like to kextunload the old driver and kextload the new one so a restart isn't required anymore. After the installation I try: sudo kextunload /System/Library/Extensions/Driver.kext The error which happens looks like this: (kernel) Can't unload kext com.driver.Driver; classes have instances: (kernel) Kext com.driver.Driver class com_driver_Driver_USBAudioDevice has 1 instance. Failed to unload com.driver.Driver - (libkern/kext) kext is in

how to create installer inside another installer?

倖福魔咒の 提交于 2019-12-20 20:35:07
问题 I want to create a Windows Installer, the 1st step I want it to call another installer (will install dependent components of my application), and the 2nd step I want to install my own application. I want to do all tasks in one installation process, and I have the dependent component installation package at hand (an exe file). Any good tools or samples to refer to? I prefer to use VSTS or Microsoft or open source easy to use tools. :-) thanks in advance, George 回答1: You might want to take a

How do I enforce an expiration date for a trial install of my software?

女生的网名这么多〃 提交于 2019-12-20 18:08:43
问题 I need to offer a trial period for my custom software. I have a 64-bit C# app, which uses 64-bit, multi-processor support DLLs. Other utilities to be included are written in C++ (exes and dlls). I must be able to encrypt the C# code, key the software to run only on a particular machine, and enforce an expiration date that cannot be foiled by resetting the machine clock. I've evaluated several open source and COTS solutions: Infralution Licensing System, Protector, and ExeShield just to name a

Visual Studio 2013 RTM Setup Failed - The form specified for the subject is not one supported or known by the specified trust provider

寵の児 提交于 2019-12-20 17:38:27
问题 Visual Studio 2013 released to web! Top things web developers should know about the Visual Studio 2013 release System Requirements: Supported operating systems Windows 7 SP1 (x86 and x64) Windows 8 (x86 and x64) Windows 8.1 (x86 and x64) Windows Server 2008 R2 SP1 (x64) Windows Server 2012 (x64) Windows Server 2012 R2 (x64) Required components Internet Explorer 10 Hardware requirements 1.6 GHz or faster processor 1 GB of RAM (1.5 GB if running on a virtual machine) 10 GB of available hard

How to change the Windows service startup type in a WiX installer

筅森魡賤 提交于 2019-12-20 16:23:30
问题 We need to modify the Startup type of our Windows service from "Automatic" to "Automatic Delayed Start". How do I do this? My code is like this: <ServiceInstall Id="WinServiceInstall" Name="ServiceManager" DisplayName="ServiceManager" Type="ownProcess" Start="auto" ErrorControl="normal" Vital ='yes' Description ='Monitoring and running the jobs' Account="[SERVICEACCOUNT]" Password="[SERVICEPASSWORD]"> <util:ServiceConfig FirstFailureActionType="restart" SecondFailureActionType="restart"