바탕화면에 바로가기 아이콘 만들기

교교 2014.04.12 12:40:15

<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>