Wait !

You said 'Select on Workstation name' in Topic heading [Big Grin]

If you have a good naming convention differentiating between Notebooks and PC's it should be done easily with some String Manipulation :

Lets say your Notebooks start all with the Letter 'L' and your PCs with 'W'

start a script as logon script that only checks and calls specific other scripts like :

code:
select
case substr(@wksta,1,1) = "L"
run @scriptdir + '\Notebooks.kix'
case substr(@wksta,1,1) = "W"
run @scriptdir + '\Workstations.kix'
case 1
"Naming convention not fulfilled ... logging you off !" $ = shutdown("","",1,0)
endselect

_________________________