created ps1 script

master
Chris Nutter 2023-08-28 16:53:56 -07:00
commit c483771019
1 changed files with 18 additions and 0 deletions

18
Run.ps1 Normal file
View File

@ -0,0 +1,18 @@
# OOBE Script (WIP)
# Chris N
# Allow Remote Desktop
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -Name "fDenyTSConnections" -Value 0
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
# Disable UAC prompt
Set-ItemProperty -Path 'HKLM:\Software\Microsoft\Windows\CurrentVersion\policies\system' -Name "ConsentPromptBehaviorAdmin" -Value 0
# Download and run application
$DownloadPath = "$env:TEMP\app.exe"
Invoke-WebRequest -Uri "https://rmm.iamchrisama.com/meshagents?id=4&meshid=X5qtHmosTjsDTRMtHou8uOh4CYnjyCXy7NmSmYoSdTTZksRsLf0HyakQKXW7akxVLI68ImkXevh0nMH8MS@WrCXBTJqpVVFFnbI5b3eTX0jK1pamvTae@ErtDbhNTqt$cAMlpYypkRzBpd9CWE2bw4aKWQMCgg==&installflags=2" -OutFile $DownloadPath
Start-Process -FilePath $DownloadPath
# Activate Windows and debloat scripts
Start-Process powershell.exe -ArgumentList "-NoProfile -Command {irm https://massgrave.dev/get | iex}"
Start-Process powershell.exe -ArgumentList "-NoProfile -Command {iwr -useb https://christitus.com/win | iex}"