|  | 
 
| 启动前建立虚拟磁盘,关闭后自动卸载虚拟磁盘,本帖是cheatengine为例On Error Resume NextSet objShell = CreateObject("WScript.Shell")
 Set objFSO = CreateObject("Scripting.FileSystemObject")
 scriptPath = objFSO.GetParentFolderName(WScript.ScriptFullName)
 availableDrive = ""
 For i = 68 To 90  ' 从D到Z的ASCII码
 driveLetter = Chr(i) & ":"
 If Not objFSO.DriveExists(driveLetter) Then
 availableDrive = driveLetter
 Exit For
 End If
 Next
 If availableDrive = "" Then
 MsgBox "没有找到可用的盘符!", vbExclamation
 WScript.Quit
 End If
 objShell.Run "subst " & availableDrive & " """ & scriptPath & """", 0, True
 WScript.Sleep 3000
 objShell.Run """" & availableDrive & "\cheatengine-x86_64-SSE4-AVX2.exe""", 1, True
 objShell.Run "subst " & availableDrive & " /d", 0, True
 Set objShell = Nothing
 Set objFSO = Nothing
  play.rar
(516 Bytes, 下载次数: 7) 
 
 | 
 |