![]() | Register | FAQ | Members | Social Groups | User Map | Calendar | Search | Today's Posts | Mark Forums Read |
| | | LinkBack | Thread Tools | Search Thread | Language |
| Sponsored Links |
| | #1 |
![]() | Ok im making a little GUI to allow easy installation of smart notebook via a VB form. This is going to be used as an autorun on a CD so i need to get the path that the exe is running from (the CD drive letter) then execute the MSI for smart notebook with a few switches. This is what i have so far. Code: Imports System.Diagnostics.Process
Public Class Form1
Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
MsgBox("Not here yet")
End Sub
Private Sub btnSmart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSmart.Click
Process.Start("SmartTools.msi /Passive NOTEBOOK_ONLY=1")
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim AppPath As String
AppPath = Application.StartupPath
lblAppPath.Text = AppPath
End Sub
End Class
Any ideas? Cheers Mike |
| |
| | #2 |
![]() Join Date: Oct 2005
Posts: 12
Thanks: 3
Thanked 3 Times in 3 Posts
Rep Power: 7 | Give the code below a try. You didn't mention what vesion of VB you're using - the code below works on 2005, .Net Framework v2. It's probably better to call msiexec.exe directly and then pass the msi file as a parameter. You can specify both a filename and parameters in the process.start method You can get the full path to the MSI by using & to concatenate the application.startuppath and the MSI filename. You'll need to wrap the whole string in " " ( chr(34) ) in case there's any spaces in the path. However, you might still have a couple of problems. Firstly, you will need to ensure that the .Net framework is installed on every machine you're going to run the CD on. Also, I've not tested running it direct from CD, but you may have problems with the default .Net Code Access Security Policy preventing the EXE file from running from the CD Drive. The default policy allows .Net EXEs to run from C: drive but not from network drives for example. I'm not sure about CDROM drives. It can be changed but it's something you'd have to do on each machine before running the CD. You'd probably be better off with a batch file or a VBScript. Code: Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myPath As String
Dim myMSI As String
myPath = Application.StartupPath & "\"
myMSI = Chr(34) & myPath & "Smarttools.msi" & Chr(34) & " /Passive NOTEBOOK_ONLY=1"
Process.Start("c:\windows\system32\msiexec.exe", " /i " & myMSI)
End Sub
End Class
|
| |
| | #3 |
![]() | Thanks i will test this later tonight. You would think it would allow exe to be run from CD as most games/apps have a little GUI then you click an install button and the msi is triggered. I will report back with the results later. Mike |
| |
| | #4 |
![]() Join Date: Feb 2008 Location: Alcester, Warwickshire
Posts: 1,078
Thanks: 58
Thanked 104 Times in 87 Posts
Rep Power: 22 | Why not make use of autorun.inf? It's a lot simpler. |
| |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Force Run .exe from a Intranet Page? | Silverman | Web Development | 2 | 02-07-2008 11:21 AM |
| Stopping .exe files from being run from a USB stick | Kyle | Windows | 13 | 02-04-2008 10:47 AM |
| SIMS .net backup path | Jawloms | MIS Systems | 2 | 26-10-2007 03:17 PM |
| Deploy/run SIMS from UNC path? | ajbritton | MIS Systems | 8 | 04-04-2007 02:25 PM |
| Run local exe from url link | alan-d | Web Development | 6 | 18-01-2007 10:34 PM |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search Thread |
|
|





