Skip to content

Instantly share code, notes, and snippets.

@Depicus
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Depicus/e25664255c459ee39713 to your computer and use it in GitHub Desktop.
Save Depicus/e25664255c459ee39713 to your computer and use it in GitHub Desktop.
Wake on Lan code for use in an ASP application
<%
set WakeOnLan = server.createobject("DigitalWol.Wol")
WakeOnLan.TheMacAddress('009027a322fc')
WakeOnLan.TheIpNumber('217.204.255.61')
WakeOnLan.TheSubnetMask('255.255.255.255')
WakeOnLan.ThePortNumber('4343')
WakeOnLan.WakeMeUp
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment