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