/build/static/layout/Breadcrumb_cap_w.png

Wake On Lan

hi

I need to get wake on lan up and running on around 2000pcs, all either Dell or HP with XP SP3 to be able to deploy software updates/packages at night.

Now i've managed to turn it on in the bios using Dell's DCCU and HP's SSM but I need to enable it in device manger.

PCs are running either a broadcom or intel nics (intel's have proset installed)

I've found a couple scripts but they didnt really work that great.

Anyone able to help out??

0 Comments   [ + ] Show comments

Answers (3)

Posted by: ckought 13 years ago
Senior Yellow Belt
0
I am in the same boat with 2800 PCs. We have turned on WOL in BIOS, but haven't found a good way to enable WOL in the NIC driver. All of our computers are Dells (about 1/3 Intel - 2/3 Broadcom).

Have you found a solution to how to turn on WOL on the NIC?
Posted by: Lucid 13 years ago
Purple Belt
0
See if this VBScript code snippet helps.....

' ~$~----------------------------------------~$~
Sub SetWindowsPowerManagementForWOL
'Configuring the needed Wake-On-LAN power management settings within Microsoft Windows
Dim colWin32_NetworkAdapters, objNetworkAdapter, strNetworkAdapterID, colPowerWakeEnables, objPowerWakeEnable
Dim strDevInstanceName, colMagicPacketOnlys, objMagicPacketOnly

'Obtaining all of the MSPower_DeviceWakeEnable classes
Set colPowerWakeEnables = GetObject("WinMgmts:{impersonationLevel=impersonate}//./root/wmi").ExecQuery("SELECT * FROM MSPower_DeviceWakeEnable")

'Obtaining all of the MSNdis_DeviceWakeOnMagicPacketOnly classes
Set colMagicPacketOnlys = GetObject("WinMgmts:{impersonationLevel=impersonate}//./root/wmi").ExecQuery("SELECT * FROM MSNdis_DeviceWakeOnMagicPacketOnly")

'Obtaining all of the wired ethernet adapters (AdapterTypeID ""0"" is for Ethernet 802.3)
Set colWin32_NetworkAdapters = GetObject("WinMgmts:{impersonationLevel=impersonate}//./root/Cimv2").ExecQuery("SELECT * FROM Win32_NetworkAdapter WHERE AdapterTypeId=0")

For Each objNetworkAdapter in colWin32_NetworkAdapters
strNetworkAdapterID = UCase(objNetworkAdapter.PNPDeviceID)
For Each objPowerWakeEnable In colPowerWakeEnables
strDevInstanceName = UCase(Left(objPowerWakeEnable.InstanceName, Len(strNetworkAdapterID)))
'Comparing the PNP Device ID from the network adapter to the MSPower_DeviceEnabled instances (uses the leftmost part because MSPower_DeviceEnabled.InstanceName contains an instance suffix)
If StrComp(strDevInstanceName, strNetworkAdapterID) = 0 Then
'Setting objPowerWakeEnable.Enable to TRUE
objPowerWakeEnable.Enable = True
objPowerWakeEnable.Put_
End If
Next
For Each objMagicPacketOnly in colMagicPacketOnlys
strDevInstanceName = UCase(Left(objMagicPacketOnly.InstanceName, Len(strNetworkAdapterID)))
'Comparing the PNP Device ID from the network adapter to the MSNdis_DeviceWakeOnMagicPacketOnly instances (uses the leftmost part because MSNdis_DeviceWakeOnMagicPacketOnly.InstanceName contains an instance suffix)
If StrComp(strDevInstanceName, strNetworkAdapterID)=0 Then
'Setting objMagicPacketOnly.EnableWakeOnMagicPacketOnly to TRUE
objMagicPacketOnly.EnableWakeOnMagicPacketOnly = True
objMagicPacketOnly.Put_
End If
Next
Next
End Sub
Posted by: igorvinnykov 11 years ago
Senior White Belt
0

First of all you have to enable WOL in BIOS and NIC. As ckought said, it's a manual task to configure these settings. Once you are done, you can use any free script or tool to initiate wake up. We preffer this tool, because it's free and allows us to collect MAC addresses from remote PCs easily: http://emcosoftware.com/wake-on-lan

Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ