Search found 5 matches
- 25 Dec 2013 00:00
- Forum: DOS Batch Forum
- Topic: Batch Wake-On-Lan
- Replies: 15
- Views: 23188
Re: Batch Wake-On-Lan
So I think there is absolutely NO way to do this in native batch. To avoid compiling an executable file, a powershell 2.0 version can be found here: http://social.technet.microsoft.com/Forums/scriptcenter/en-US/51ef86e5-f3d4-459c-a08a-615c669aff2e/script-to-turn-on-wake-on-magic-packet-from-off-stat...
- 24 Dec 2013 08:18
- Forum: DOS Batch Forum
- Topic: Batch Wake-On-Lan
- Replies: 15
- Views: 23188
Re: Batch Wake-On-Lan
Maybe this is what you are searching for: http://analects.jeffharbert.com/a-vbscript-wake-on-lan-project/ . (Especially the last script at the bottom of this page.) penpen Set objShell=CreateObject(“wscript.shell”) strCommand=”C:\scripts\wol.exe” & strMAC Set objExec=objShell.Exec(strCommand) I...
- 24 Dec 2013 05:44
- Forum: DOS Batch Forum
- Topic: Batch Wake-On-Lan
- Replies: 15
- Views: 23188
Re: Batch Wake-On-Lan
To send WOL packets programmatically you need the UDP protocol and for that you need to program using a language that support the UDP packet programming. If you really cannot use any other third party software (note, vbscript is installed by default and to me not considered third party), vbscript (...
- 24 Dec 2013 05:13
- Forum: DOS Batch Forum
- Topic: Batch Wake-On-Lan
- Replies: 15
- Views: 23188
Re: Batch Wake-On-Lan
No, you misunderstood me.
Is there any way you can send WOL packets through batch without third-party software?
Is there any way you can send WOL packets through batch without third-party software?
- 24 Dec 2013 04:59
- Forum: DOS Batch Forum
- Topic: Batch Wake-On-Lan
- Replies: 15
- Views: 23188
Batch Wake-On-Lan
Is there any way to implement WOL functionality in batch without the need of third-party software?