Hello Folks,
I have a kixx script in the Windows Server which will delete the drives and Mount the drives.

The Desktop is publised via appcenter. The script is called when the user logs in the Desktop and map the drives.

Problem: Sometimes we get the KIXX32.EXE Application Error once logged in to the Desktop.

May i please know the reason and how to avoid the error.

CODE
 Code:
if ingroup ("DNEU\ggDEDA1_Pre_Prod_MARVEL2_USR")
	use J: /delete /persistent
	use K: /delete /persistent
	use P: /delete /persistent
	use I: /delete /persistent
	use W: /delete /persistent
	sleep 2
	use J: "\\deda1netapp01b\SAS_PROD\SAS_DATA\GVA" /persistent:no
	use K: "\\deda1netapp01b\SAS_PROD\SAS_DATA\RCK\Stats" /persistent:no
	use P: "\\deda1netapp01b\SAS_PROD\SAS_DATA\MDA\Prod" /persistent:no
	use I: "\\deda1netapp01b\SAS_PROD\SAS_DATA\MDA\Dev" /persistent:no
	use W: "\\deda1netapp01b\MARVELhomes\%USERNAME%.%USERDOMAIN%" /persistent:no
  else
	"user NOT in group DNEU\ggDEDA1_Pre_Prod_MARVEL2_USR"
endif


Best Regards,
Thala