I don't work for Qube so I hope this advice is not out of line, but I have found that creating a batch script using msiexec (so you don't have to answer all the questions) works best. I usually run it manually on each machine after that. I created a bunch of rdp files so I can quickly remote into all the machines, but you could also run the batch script through qube, as described above.
Here is an example of the batch script I use (replace "file_servername accordingly):
@echo ...
@echo Now Installing Active Perl...
@start /wait msiexec /i "\\file_server_name\qube\5.2\32bit\ActivePerl-5.8.8.820-MSWin32-x86-274739.msi" /qb!
@echo ...
@echo Now Installing the Qube Core...
@start /wait msiexec /i "\\file_server_name\qube\5.2\32bit\qube-core-5.2-1-Windows-x86.msi" /qb!
@echo ...
@echo Now Installing the Qube Worker...
@start /wait msiexec /i "\\file_server_name\qube\5.2\32bit\qube-worker-5.2-1-Windows-x86.msi" /qb!
@echo ...
@echo Now Installing the Qube Job Type Lib...
@start /wait msiexec /i "\\file_server_name\qube\5.2\32bit\qube-jobtypelib.msi" /qb!
@echo ...
@echo Now Installing the Maya Plugin...
@start /wait msiexec /i "\\file_server_name\qube\5.2\32bit\qube-mayajt.msi" /qb!
@echo ...
@echo Now Installing the 3dsMax Plugin...
@start /wait msiexec /i "\\file_server_name\qube\5.2\32bit\qube-3dsmaxjt.msi" /qb!
@echo ...
@echo Copying Utils.pm File...
@copy "\\file_server_name\qube\5.2\32bit\Utils.pm" "C:\Program Files\pfx\jobtypes\maya\Utils.pm"
@echo ...
@echo Qube Install Completed...
@pause
If you have never made an rdp file its easy. Either open remote desktop and fill out all the information and hit "save", or you can use a text editor and use the template below as a starting point (just save it out of your text editor as a .rdp file):
screen mode id:i:1
desktopwidth:i:640
desktopheight:i:480
session bpp:i:16
auto connect:i:1
full address:s:machine_name
compression:i:1
keyboardhook:i:2
audiomode:i:2
redirectdrives:i:0
redirectprinters:i:0
redirectcomports:i:0
redirectsmartcards:i:0
displayconnectionbar:i:1
username:s:your_username
domain:s:yourdomain
alternate shell:s:
shell working directory:s:
disable wallpaper:i:1
disable full window drag:i:1
disable menu anims:i:1
disable themes:i:1
bitmapcachepersistenable:i:1
Hope that helps.