i have tried to disable whole keyboard using javascript but windows start key is not disabled same way enter key is also not disabled using my script
<script type='text/javascript'>
document.onkeydown = function (e) {
e.preventDefault();
}
</script>