Code:
	$oWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\"+@WKSTA+"\root\cimv2")
	If @ERROR Exit @ERROR EndIf
	$oWMIOutput = $oWMI.ExecQuery("Select * from Win32_UserAccount Where LocalAccount = True")
	If @ERROR Exit @ERROR EndIf
	for each $account in $oWMIOutput
		if $account.Name = @USERID
			$passwordreq = $account.PasswordRequired
		endif
	next 


This did the trick, thank you \:\)