Search found 36 matches

Go to advanced search

by Abhinay
Wed Sep 11, 2019 12:21 pm
Forum: Common Problems
Topic: How to include pre requisite software for MSI
Replies: 1
Views: 1972
 
Jump to post

How to include pre requisite software for MSI

I have used .net core runtime 2.2.6 as one of the pre-requisite software to be installed, but it is included as part of exe or works when i create an exe but not MSI, How to make it work for MSI?
by Abhinay
Tue Aug 27, 2019 9:05 am
Forum: Common Problems
Topic: How to copy files to d drive without installation
Replies: 2
Views: 5774
 
Jump to post

Re: How to copy files to d drive without installation

Thank you. I could figure it out myself.
by Abhinay
Tue Aug 27, 2019 5:20 am
Forum: Common Problems
Topic: How to copy files to d drive without installation
Replies: 2
Views: 5774
 
Jump to post

How to copy files to d drive without installation

Hi, I have around 140 files including dlls and exe's that needs to be copied to d drive without installation. How do i achieve this. I do have the powershell scripts ready, But how do i achieve a copy operation # Block for declaring the script parameters. Param($appDir) # Your code goes here. Copy-I...
by Abhinay
Mon Aug 12, 2019 1:44 pm
Forum: Common Problems
Topic: How to get the value of the checkbox
Replies: 3
Views: 7617
 
Jump to post

Re: How to get the value of the checkbox

Thank you it helped.. But i had different requirement and was able to resolve it myself.
by Abhinay
Fri Aug 09, 2019 1:44 pm
Forum: Common Problems
Topic: How to get the value of the checkbox
Replies: 3
Views: 7617
 
Jump to post

How to get the value of the checkbox

How to get the value of the chekbox. Param() # Your code goes here. Add-Type -AssemblyName PresentationFramework cd "C:\Program Files\Weir Minerals\RSP Firmware\RSP Firmware\" #Choose the Device to update Firmware $SP1 = AI_GetMsiProperty CHECKBOX_SP1 $DAQ1 = AI_GetMsiProperty CHECKBOX_DAQ...
by Abhinay
Fri Aug 09, 2019 11:45 am
Forum: Common Problems
Topic: How to display the runtime message
Replies: 4
Views: 8437
 
Jump to post

Re: How to display the runtime message

It worked... Thank you
by Abhinay
Wed Aug 07, 2019 12:08 pm
Forum: Common Problems
Topic: Before installing i need to give option or checkbox for that software to install
Replies: 4
Views: 8310
 
Jump to post

Re: Before installing i need to give option or checkbox for that software to install

Do you think this will work, Scenario is if 1st check box is checked it should install the firmware and similarly for other checkboxes, when unchecked it should do nothing, Code is written in powershell, Please suggest. Param() # Your code goes here. Add-Type -AssemblyName PresentationFramework #Cho...
by Abhinay
Wed Aug 07, 2019 11:42 am
Forum: Common Problems
Topic: How to display the runtime message
Replies: 4
Views: 8437
 
Jump to post

Re: How to display the runtime message

I have tried the code, but it does not work # Block for declaring the script parameters. Param() # Your code goes here. Add-Type -AssemblyName PresentationFramework cd "C:\Program Files\Weir Minerals\RSP Firmware\RSP Firmware\" $rspIps = "192.168.29.20","192.168.29.21",...
by Abhinay
Wed Aug 07, 2019 11:39 am
Forum: Common Problems
Topic: How to display the runtime message
Replies: 4
Views: 8437
 
Jump to post

How to display the runtime message

How to display the runtime message on the message box of the installer. PS D:\RSP Firmware Update\RSP_Firmware> $a = .\SinetProg.exe /i /a:192.168.29.20 PS D:\RSP Firmware Update\RSP_Firmware> Write-output "Your Current " $a[0] "and your current " $a[4] Your Current Device Type: ...
by Abhinay
Wed Aug 07, 2019 6:41 am
Forum: Common Problems
Topic: Before installing i need to give option or checkbox for that software to install
Replies: 4
Views: 8310
 
Jump to post

Before installing i need to give option or checkbox for that software to install

Actually user wants a checkbox to select between the devices to which he wants to install the software, based on user checks the checkbox it should install only to those devices and ignore others. i had written the below code where there are list of ips that corresponds to different devices. Now use...
by Abhinay
Fri Aug 02, 2019 10:43 am
Forum: Common Problems
Topic: Could not close the process when the process is already running in the installer
Replies: 1
Views: 2300
 
Jump to post

Could not close the process when the process is already running in the installer

I was able to execute the below code successfully in the powershell ISE window, but the same code that is the 2nd if condition does not work when i make it as part of the installer, Can you please suggest if i missed any code Param() $ProcessName = "EngineMonitor" if((get-process $ProcessN...
by Abhinay
Tue Jul 30, 2019 12:15 pm
Forum: Common Problems
Topic: Can we do firmware updates by creating via this installer
Replies: 1
Views: 2004
 
Jump to post

Can we do firmware updates by creating via this installer

Can we do firmware updates by creating via this installer
by Abhinay
Wed Jun 12, 2019 11:49 am
Forum: Common Problems
Topic: How to make registry settings as part of the installer - Getting Error while installing
Replies: 1
Views: 1623
 
Jump to post

How to make registry settings as part of the installer - Getting Error while installing

Hi I need to do the following settings in the installer 1.Go to Start > Run > and type regedit 2.Navigate to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control 3.With the control folder selected, right click in the pane on the right and select new DWORD Value 4.Name the new DWORD: ServicesPipeTime...
by Abhinay
Thu May 23, 2019 1:38 pm
Forum: Building Installers
Topic: How to install other exe to install as part of my installer
Replies: 3
Views: 2495
 
Jump to post

Re: How to install other exe to install as part of my installer

If i want to uninstall that pre requisite before installing new prerequisite from the installer, How do i do that?

Go to advanced search