The Ghost Solution Suite console has a built in 'Shortcuts View' which can be helpful for quickly accessing jobs, tasks, or computers that are placed in the view. The view can be toggled on in the console by selecting 'View' > 'Shortcuts View'.
The console allows selecting or highlighting multiple objects and dragging/dropping to the Shortcuts View pane. However, if multiple items from 'Shortcuts View' need to be removed, they must be removed one at a time via right-click > 'Remove from Shortcut bar'.
If a large amount of items need to be removed from 'Shortcuts View', removing these items one at a time can be very time consuming.
GSS 3.3 (all release update versions)
Console/product limitation
Multiple items can be removed from the Shortcuts View in the database using SQL queries in SQL Management Studio.
These steps should be performed only if you have an understanding of basic SQL statements. Please backup the Ghost Solution Suite database prior to attempting this. These steps are performed at your own risk and with a user with DBO rights. Deleting items from the Shortcut View using these steps will remove the item from Shortcut View only. It will not delete the item completely from the console.
SELECT user_id FROM [eXpress].[dbo].[securityuser] WHERE name = 'username'
SELECT * FROM [eXpress].[dbo].[shortcut] WHERE user_id = 14000000
SELECT * FROM [eXpress].[dbo].[shortcut] WHERE user_id = 14000000 AND item_type = 3
DELETE FROM [eXpress].[dbo].[shortcut]
WHERE user_id = 14000000 AND item_type = 3SELECT * FROM [eXpress].[dbo].[shortcut] WHERE user_id = 14000000 AND item_type = 5
DELETE FROM [eXpress].[dbo].[shortcut]
WHERE user_id = 14000000 AND item_type = 5
SELECT * FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name LIKE '%COMP%'
DELETE FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name LIKE '%COMP%'
SELECT * FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name LIKE 'COMP%'
DELETE FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name LIKE 'COMP%'
SELECT * FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name LIKE '%COMP'
DELETE FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name LIKE '%COMP'SELECT * FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name IN ('computer1', 'computer2', 'computer3', 'computer4')
DELETE FROM [eXpress].[dbo].[shortcut]WHERE user_id = 14000000 AND item_type = 3 AND item_name IN ('computer1', 'computer2', 'computer3', 'computer4')
Queries above are given as an example only and should be modified to match specific removal needs. Please consult your DBA for further assistance.