Jump to content

Recommended Posts

Posted (edited)

@all

this can all be achieved by a simple WMI script.

dim $osObj, $osColl 
    const $nLogOff=0 
    const $nReboot=2 
    const $nForceLogOff=4 
    const $nForceReboot=6 
    const $nPowerDown=8 
    const $nForcePowerDown=12 

$osColl = Objget("winmgmts:{(Shutdown)}").ExecQuery("Select * from Win32_OperatingSystem") 

    For $osObj in $osColl
        $osObj.Win32Shutdown($nForcePowerDown$)
    Next

so when you add this to a scan script to see which PC 's are still online, you can fuly automate the procedure and schedule it,

without the need of any remote tools.

PS : RPC port has to be open port 135 in XP firewall !!

Enjoy !!

Regards

ptrex

Edited by ptrex

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...