Autorun removable drive

点点圈 提交于 2019-12-09 02:05:22

问题


Autorun was disabled in Windows. I am looking for an alternative. I got this AutoIt script :

 $DBT_DEVICEARRIVAL = "0x00008000"
 $WM_DEVICECHANGE = 0x0219

 GUICreate("")
 GUIRegisterMsg($WM_DEVICECHANGE , "MyFunc")

 Func MyFunc($hWndGUI, $MsgID, $WParam, $LParam)
      If $WParam == $DBT_DEVICEARRIVAL Then
           MsgBox(4096, "Info", "My Drive has been Inserted, Backup My Files!")
      EndIf
 EndFunc

 While 1
      $GuiMsg = GUIGetMsg()
 WEnd

Soon as plugged in, the message box appeared. Now, to run a file I replaced

MsgBox(4096, "Info", "My Drive has been Inserted, Backup My Files!")

by

Run ("F:\path\to\my\file.cmd")

But what to change so file.cmd can be run on computers that assign a drive letter different than F:?


回答1:


I searched for some WAVE-files on a Removable Device (SD-Card) with this code:

#include <Array.au3>

; Register search function
Global $DBT_DEVICEARRIVAL = "0x00008000"
Global $WM_DEVICECHANGE = 0x0219
Global $drives = DriveGetDrive("REMOVABLE")
GUIRegisterMsg($WM_DEVICECHANGE, "searchOnSD")

; check all already known removable devices
If UBound($drives) > 0 Then
    For $drive In $drives
        If StringRegExp($drive, "^[[:alpha:]]:$") Then check($drive)
    Next
EndIf

; search for WAV-file on SD-Card
Func searchOnSD($hWndGUI, $MsgID, $WParam, $LParam)
    If $WParam == $DBT_DEVICEARRIVAL Then
        $newDrives = DriveGetDrive("REMOVABLE")
        $drive = $newDrives
        For $i = 0 To UBound($drives) - 2
            _ArrayDelete($drive, 0)
        Next
        If UBound($drive) > 0 Then
            $drive = $drive[0]
            If StringRegExp($drive, "^[[:alpha:]]:$") Then
                ConsoleWrite("new removable (" & $drive & ") found." & @CR)
                check($drive)
            EndIf
        EndIf
    EndIf
    $drives = DriveGetDrive("REMOVABLE")
EndFunc   ;==>searchOnSD

In the check($drive) function I then performed something with the WAVE file after evaluating DriveStatus($drive) == "READY" And FileExists($wavFile).



来源:https://stackoverflow.com/questions/35251858/autorun-removable-drive

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!