Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpoe/wakeonlan
A Wake On LAN PowerShell cmdlet
https://github.com/bpoe/wakeonlan
Last synced: about 1 month ago
JSON representation
A Wake On LAN PowerShell cmdlet
- Host: GitHub
- URL: https://github.com/bpoe/wakeonlan
- Owner: Bpoe
- Created: 2015-06-06T00:11:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-03T01:26:59.000Z (almost 8 years ago)
- Last Synced: 2024-03-18T09:10:51.845Z (9 months ago)
- Language: C#
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WakeOnLan
This project implements a Wake On LAN C# library and PowerShell cmdlet.Sample usage:
PS> Import-Module WakeOnLanCmdlet.dll
PS> Wake-Computer -MacAddress "00-01-02-aa-ab-af"This example would send a Wake On LAN magic packet to the machine with a MAC address of 00-01-02-aa-ab-af that is on the same subnet as the machine running the cmdlet.
Another sample:
PS> Import-Module WakeOnLanCmdlet.dll
PS> Wake-Computer -MacAddress "00-01-02-aa-ab-af" -IPAddress "10.0.1.255"This example would send a Wake On LAN magic packet to the machine with a MAC address of 00-01-02-aa-ab-af that is on the subnet with a broadcast address of 10.0.1.255. This would be the case for a machine with an IP address of 10.0.0.50 and a subnet mask of 255.255.254.0.