Distribution Message
Hi Guys,
Does anyone know of a way to get a message to pop up on a users PC that would warn them that we are distributing and not to switch off their PC's?
This is esp. for Laptop users who have a tendency to plug and run [:o]
Does anyone know of a way to get a message to pop up on a users PC that would warn them that we are distributing and not to switch off their PC's?
This is esp. for Laptop users who have a tendency to plug and run [:o]
0 Comments
[ + ] Show comments
Answers (4)
Please log in to answer
Posted by:
bkelly
21 years ago
Posted by:
BarryB
21 years ago
Posted by:
bkelly
21 years ago
I'm not that familiar with Tivoli, but Windows Installer supports a simple progress bar using the switch /qb add a explanation point /qb! and the cancel button becomes disabled. This will let them see progress and what is being installed.
If you are calling packages from a script, you could display a message and then shell out to the package. That way the script showing the message would close when the package you shelled out to completed. KiXtart and VBS offer some better ways to show do this, but for simplicities sake:
echo Standby, Installing Software...
start /wait \\server\share\directory\package.exe
exit
If you are calling packages from a script, you could display a message and then shell out to the package. That way the script showing the message would close when the package you shelled out to completed. KiXtart and VBS offer some better ways to show do this, but for simplicities sake:
echo Standby, Installing Software...
start /wait \\server\share\directory\package.exe
exit
Posted by:
martinc
20 years ago
There are a couple of ways of doing this.
The simplest is to use the net send command within the package (execute program) that would run the command "net send %computername% <msg>"
The other way is to use the wrunuiep command. I have used this within a package to launch Internet Explorer with a html page as an arguement.
The simplest is to use the net send command within the package (execute program) that would run the command "net send %computername% <msg>"
The other way is to use the wrunuiep command. I have used this within a package to launch Internet Explorer with a html page as an arguement.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.