
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2012 09:35 PM
Okay Everyone,
I have been tinkering all day and I am ready to ask for help.
HELP!
I have an .msi file in the actions folder for Adobe Flash named:
install_flash_player_11_active_x_32bit.msi
I have a custom action:
cmd.exe /k {actionpath}psexec.exe \\{computer} "C:\Windows\System32\msiexec.exe /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi /qn"
When I am logged on to the web console on the server I am getting the error: PsExec could not start C:\Windows\System32\msiexec.exe /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi /qn on COMPUTERNAME: The system cannot find the path specified.
However, if I click on the custom action to run it on my own computer it works just fine.
The client is Windows 7 x86 SP1 (fully updated).
Has any one successfuly pushed an .MSI file to a Windows 7 client?
I have been tinkering all day and I am ready to ask for help.
HELP!
I have an .msi file in the actions folder for Adobe Flash named:
install_flash_player_11_active_x_32bit.msi
I have a custom action:
cmd.exe /k {actionpath}psexec.exe \\{computer} "C:\Windows\System32\msiexec.exe /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi /qn"
When I am logged on to the web console on the server I am getting the error: PsExec could not start C:\Windows\System32\msiexec.exe /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi /qn on COMPUTERNAME: The system cannot find the path specified.
However, if I click on the custom action to run it on my own computer it works just fine.
The client is Windows 7 x86 SP1 (fully updated).
Has any one successfuly pushed an .MSI file to a Windows 7 client?
Labels:
- Labels:
-
Custom Actions
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2012 01:43 PM
Try this:
cmd.exe /k {actionpath}psexec.exe \\{computer} -u domain\administrator msiexec /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi" /q
cmd.exe /k {actionpath}psexec.exe \\{computer} -u domain\administrator msiexec /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi" /q

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2012 11:24 PM
jacobsenm wrote:
Try this:
cmd.exe /k {actionpath}psexec.exe \\{computer} -u domain\administrator msiexec /i \\SERVERNAME\LanSweeper$\install_flash_player_11_active_x_32bit.msi" /q
Where you have this , do you also need to specify a password as well?
-u domain\administrator
Thanks.
