Kace agent automatically install on the K2000 as a post install task when new updates come out
Wouldn't it be great if when a new agent update came out on the K1000 that you wouldn't have to manually update your post install task for the agent on the K2000.

We’re looking into extending the linking and integration abilities between a K1 and K2 and this would be one of the features we’d implement when that time comes.
-
Chris Breuer commented
you can already do this
save this as a bat file
set KBOX_SERVER=k1000
net use \\%KBOX_SERVER%\client
pushd \\%KBOX_SERVER%\client\agent_provisioning\windows_platform\
for /r %%i in (*.msi) do (
start /wait msiexec.exe /qn /l*v %temp%\ampmsi.log /i %%i HOST=%KBOX_SERVER%
)
popd