<html>
<head>
<title>바탕화면에 바로가기 아이콘 만들기</title>
</head>
<script language='Javascript'>
var WshShell = new ActiveXObject("WScript.Shell");
Desktoptemp = WshShell.Specialfolders("Desktop");
var sName = WshShell.CreateShortcut(Desktoptemp + "\\VNote.url");
sName.TargetPath = "www.vnote.co.kr";
sName.Save();
</script>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
</body>
</html>
vnote
이 댓글을