Jump to content

Recommended Posts

Posted

Hi Everybody

I want to start a program after my disk finish booting, and full loading user profile

How to detect when disk activity is finished ? and system fully initialized ?

Anyone can give me an example please ?

Thanks

Posted

I believe that is when normal auto-run applications gets run..

If you need to wait for a specific(not part of the os) application to load, you could use a combination of ProcessWait, and WinWait. :)

Posted

@potitpanda

You can check System Idle time for instance

$wbemFlagReturnImmediately = 0x10
$wbemFlagForwardOnly = 0x20
$colItems = ""
$strComputer = "localhost"

$Output=""
$Output = $Output & "Computer: " & $strComputer  & @CRLF
$Output = $Output & "==========================================" & @CRLF
$objWMIService = ObjGet("winmgmts:\\" & $strComputer & "\root\CIMV2")
$colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_PerfFormattedData_PerfOS_Processor", "WQL", _
                                          $wbemFlagReturnImmediately + $wbemFlagForwardOnly)

If IsObj($colItems) then
   For $objItem In $colItems

      $Output = $Output & "PercentIdleTime: " & $objItem.PercentIdleTime & @CRLF
      if ConsoleWrite($Output) = 2 then ExitLoop
      $Output=""
   Next
Else
   Msgbox(0,"WMI Output","No WMI Objects Found for class: " & "Win32_PerfFormattedData_PerfOS_Processor" )
Endif

regards

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...