Last active
August 29, 2015 14:15
-
-
Save Depicus/e25664255c459ee39713 to your computer and use it in GitHub Desktop.
Wake on Lan code for use in an ASP application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
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