installation

Why doesn't FindWindowEx find all my buttons?

喜夏-厌秋 提交于 2020-07-22 08:33:34
问题 I'm supposed to write an automatic Installer. Just a programme you start and it should go through the installation wizard all by itself, without the user touching anything. The programme I'm working on at the moment is called Cygwin. And what I want to do is just click the "Next" Button over and over again until the installation is finished. I know I could use a VBS and I know I could use C# and that would make life quite a bit easier for me. But I have an example of how it could work for

Why doesn't FindWindowEx find all my buttons?

本秂侑毒 提交于 2020-07-22 08:33:14
问题 I'm supposed to write an automatic Installer. Just a programme you start and it should go through the installation wizard all by itself, without the user touching anything. The programme I'm working on at the moment is called Cygwin. And what I want to do is just click the "Next" Button over and over again until the installation is finished. I know I could use a VBS and I know I could use C# and that would make life quite a bit easier for me. But I have an example of how it could work for

Tensorflow installation problem on Windows 10

不羁的心 提交于 2020-07-22 08:03:31
问题 I'm trying to install Tensorflow on a Win 10 machine. I installed Python (3.7) successfully and then tried to followed the installation instructions on tensorflow.org. When executing pip install tensorflow I get the following error message: ERROR: Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: 'C:\Users\XXX\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\tensorboard\_vendor

Install Rtools and check if I can use it

|▌冷眼眸甩不掉的悲伤 提交于 2020-07-21 04:19:31
问题 Dear R users with awesome brains. I newly installed R, Rstudio today. After I finished download Rtools.exe file from cran and unzip it, I've got this warning message when I tried to install the package in Rstudio install.packages("Rtools") Installing package into ‘C:/Users/Ellie/Documents/R/win-library/3.4’ (as ‘lib’ is unspecified) Warning in install.packages : package ‘Rtools’ is not available (for R version 3.4.3) I cannot understand that "Rtools is not available for R version 3.4.3"

How to secure/encrypt Inno Setup from decompiling

跟風遠走 提交于 2020-07-18 06:53:25
问题 I am using an Inno Setup Tool to pack/setup all my files (dll, exe, jpg, etc). But I found that there is a software called InnoExtractor which can really open my setup and read all the scripts and also extract all the files, since I need to hide/protect my files in setup I spent a lot of time/efforts to secure my setup.exe which was generated from Inno Setup, but I found some people saying add a password to Inno Setup Script, but this is also a wrong because the client knows that password and

How to fix visual studio error “cannot find one or more components .Please re-install the application” in windows 8.1?

巧了我就是萌 提交于 2020-07-17 09:28:10
问题 As Alex suggests find devenv.exe and run it . when search for devenv.exe then I found it's there . When I run this file getting error " cannot find one or more components .Please reinstall the application " .I re-installed visual studio thrice still getting same error . How to fix this error . It's visual studio ultimate with update 3 . I don't have ISO file , file automatically downloaded by installer.It's got installed smoothly i.e. without giving any error . Edit: Initial question was How

installshield - how to let user add files to program files folder in the install

a 夏天 提交于 2020-07-10 17:46:30
问题 I am trying to create an installer that will get the project to install from my server. The project will be chosen dynamically by the user (the user has access to the server), so I can't copy the files to the installer when I create it. I want that the files will add to to ProgramFilesFolder in the installer. How can I do this? 回答1: Not entirely sure what you want to do. Do you want to automatically add files to a project that they select and then build and MSI? Installshield can be run via

installshield - how to let user add files to program files folder in the install

☆樱花仙子☆ 提交于 2020-07-10 17:46:25
问题 I am trying to create an installer that will get the project to install from my server. The project will be chosen dynamically by the user (the user has access to the server), so I can't copy the files to the installer when I create it. I want that the files will add to to ProgramFilesFolder in the installer. How can I do this? 回答1: Not entirely sure what you want to do. Do you want to automatically add files to a project that they select and then build and MSI? Installshield can be run via

Installer for Java Web Application

半城伤御伤魂 提交于 2020-07-09 13:28:06
问题 I have developed Web Application in C#, ASP.NET and SQL Server Express Edition. I have created installer (setup.exe) for the application using Visual Studio 2010. This installer checks for prerequisites software like IIS, .NET Framework and SQL Server. I have bundle all require software in installer and they get install on user machine if not installed. I will be developing Web application using Structs2, Oracle, and Tomcat etc. I want to create same installer like above for Structs2

Install TCL/TK without root

别来无恙 提交于 2020-07-09 08:44:38
问题 I'm trying to install TCL/TK as a regular user on RedHat 5: TCL_VERSION=8.6.1 BASE_PATH=/myownpath tar -xzf tcl${TCL_VERSION}-src.tar.gz cd tcl${TCL_VERSION}/unix ./configure \ --prefix=${BASE_PATH} \ --without-tzdata \ --enable-64bit make -j9 sed -e "s@^\(TCL_SRC_DIR='\).*@\1${BASE_PATH}'@" \ -e "/TCL_B/s@='\(-L\)\?.*unix@='\1${BASE_PATH}/lib@" \ -i tclConfig.sh make install make install-private-headers chmod -v 755 ${BASE_PATH}/lib/libtcl*.so So far so good: ${BASE_PATH}/include/tcl.h