?"checking if the user is part of the oracle group."
If InGroup("oracle")
?"The user is part of the oracle group."
?"Start mapping the O drive."
Use o: /delete /persistent
Use o: "\\porcl\oracle"
Else
?"The user is not a memeber of the oracle group."
EndIf
?"checking if the user is part of the hs622_printers group."
If InGroup("hs622_printers")
?"The user is a member of the hs622_printers group."
?"Start adding printers."
$rc = AddPrinterConnection("\\srvprn01\hs622hp4")
If $rc <> "0"
?"There was an error adding the hs622hp4 printer."
?"Error: " $rc
Else
?"Printer hs622hp4 succesfully added."
EndIf
$rc = AddPrinterConnection("\\srvprn01\hs622lj4000")
If $rc <> "0"
?"There was an error adding the hs622lj4000 printer."
?"Error: " $rc
Else
?"Printer hs622lj4000 succesfully added."
EndIf
$rc = SetDefaultPrinter("\\srvprn01\hs622lj4000")
If $rc <> "0"
?"There was an error setting the hs622lj4000 printer as default printer."
?"Error: " $rc
Else
?"Printer hs622lj4000 succesfully set as default."
EndIf
Else
?"The user is not a member of the hs622_printers group."
EndIf
Sleep 10