Advertisement
Guest User

Untitled

a guest
May 16th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. @echo off
  2. set VM=MEmu_
  3.  
  4. for /l %%i in (101,1,200) do (
  5.  
  6. cd "%ProgramFiles%\MEMU\Memu" & Start MemuConsole.exe create
  7.  
  8. timeout /t 15
  9.  
  10. cd "%ProgramFiles%\MEMU\MEmuHyperv" & Start MemuManage.exe modifyvm %VM%%%i --memory 512
  11.  
  12. cd "%ProgramFiles%\MEMU\MEmuHyperv" & Start MEmuManage.exe guestproperty set %VM%%%i "is_customed_resolution" "1"
  13.  
  14. cd "%ProgramFiles%\MEMU\MEmuHyperv" & Start MEmuManage.exe guestproperty set %VM%%%i "resolution_height" "768"
  15.  
  16. cd "%ProgramFiles%\MEMU\MEmuHyperv" & Start MEmuManage.exe guestproperty set %VM%%%i "resolution_width" "1024"
  17.  
  18. timeout /t 1
  19.  
  20. cd "%ProgramFiles%\MEMU\Memu" & Start MemuConsole.exe %VM%%%i
  21.  
  22. timeout /t 40
  23.  
  24. cd "%ProgramFiles%\MEMU\Memu" & Start MemuConsole.exe installapk %VM%%%i 1-program.apk
  25.  
  26. timeout /t 15
  27.  
  28. cd "%ProgramFiles%\MEMU\Memu" & Start MemuConsole.exe installapk %VM%%%i 3-game.apk
  29.  
  30. timeout /t 60
  31.  
  32. TASKKILL /f /im MEmu.exe
  33. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement