maccro


SUBMITTED BY: chanhtin

DATE: Dec. 8, 2015, 6:57 p.m.

FORMAT: Text only

SIZE: 1.9 kB

HITS: 1178

  1. //Sample Macro
  2. //disable UAC
  3. regmod => HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System => "EnableLUA" => dword => "0"
  4. //disable IE ESC
  5. regmod => HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073} => "IsInstalled" => dword => "0"
  6. regmod => HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073} => "IsInstalled" => dword => "0"
  7. //disable Windows update
  8. regmod => HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update => "AUOptions" => dword => "1"
  9. //stop windows update services
  10. winserv => "wuauserv" => stop
  11. //show all system tray icon
  12. regmod => HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer => "EnableAutoTray" => dword => "0"
  13. //taskbar small icon
  14. regmod => HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced => "TaskbarSmallIcons" => dword => "1"
  15. //desktop small icon
  16. regmod => HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop => "IconSize" => dword => "24"
  17. //turn off firewall
  18. run => cmd.exe => hidden => "/c NetSh Advfirewall set allprofiles state off"
  19. //add features .net 3.5
  20. run => powershell.exe => hidden => "Import-Module ServerManager ; Add-WindowsFeature as-net-framework"
  21. //download some file
  22. download => @root"/temp" => http://technochat.in/download/WinRAR.msi
  23. //copy winrar install file to C drive
  24. copy => @root"/temp/WinRAR.msi" => "C:/"
  25. //download and install firefox
  26. download_and_install => http://hicap.frontmotion.com.s3.amazonaws.com/Firefox/Firefox-40.0/Firefox-40.0-en-US.msi
  27. //download and unzip some file, then run exe file
  28. download_and_unzip => http://d.7-zip.org/a/7za920.zip => "7za.exe"
  29. //restart explorer.exe
  30. kill => explorer
  31. run => explorer.exe
  32. //finish and show message
  33. alert => "Well done bitch!"

comments powered by Disqus