Deploying a single snapin to a group
-
Greetings!
In version .28, I was able to add the functionality to get a single snapin to a group. With version .32, I was thinking that if I added the following code to tasks.advanced.include.php, it would work again:
[PHP]
<tr>
<td class=“c”><a href=“?node=tasks&type=group&direction=onesnap&noconfirm=<?php print $groupid; ?>”><img src=“./images/snap.png” /><p><?php print _(‘Deploy Single Snapin’); ?></p></a></td>
<td><p><?php print _(‘This option allows you to send a single snapin to a group without imaging the computers. (Requires FOG Service to be installed on client)’); ?></p></td>
</tr>[/PHP]This didn’t work. I have scoured the tasks.confirm.include.php looking for the reason why this isn’t working without any success. Does anyone have any thoughts?
-Tim
[email]tim@doze.net[/email] -
This code worked for me.
<tr>
<td class=“c”><a href=“?node=tasks&type=group&direction=onesnap&noconfirm=<?php print $groupid; ?>”><img src=“./images/snap.png” /><p><?php print _(‘Deploy Single Snapin’); ?></p></a></td>
<td><p><?php print _(‘This option allows you to send a single snapin to a host. (Requires FOG Service to be installed on client)’); ?></p></td>
</tr>