Hi there,
Im working on trying to exclude one computer from getting a file to run when a user logs onto it. I cant seem to figure out how to properly create a function to do this. What am I missing to get the .exe to not run if a user signs into a specific computer?
Func testfunction()
if (@ComputerName <> "computer1") Then
Run(@ComSpec & " /c " & "\\server\directory\program.exe","", @SW_HIDE)
ElseIf (@ComputerName = "computer1") then Exit
EndIf
EndFunc