-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_cs_script.ps1
48 lines (40 loc) · 2.07 KB
/
run_cs_script.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Set console properties
$Host.UI.RawUI.WindowTitle = "catsmoker: cs_script v1.7"
$host.UI.RawUI.ForegroundColor = "Green"
$host.UI.RawUI.BackgroundColor = "Black"
Clear-Host
# Check PowerShell version
if ($PSVersionTable.PSVersion.Major -lt 5) {
Write-Host "This script requires PowerShell 5.0 or newer." -ForegroundColor Red
Write-Host "Your current PowerShell version is $($PSVersionTable.PSVersion)."
exit 1
}
# Check OS version
$osVersion = [System.Environment]::OSVersion.Version
if ($osVersion.Major -lt 10 -or ($osVersion.Major -eq 10 -and $osVersion.Build -lt 17763)) {
Write-Host "This script is only supported on Windows 10 version 1809 (build 17763) or newer." -ForegroundColor Red
Write-Host "Your current OS version is $($osVersion.Major).$($osVersion.Minor) (Build $($osVersion.Build))."
exit 1
}
# Check for administrative privileges
if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
Write-Host "Requesting administrative privileges..." -ForegroundColor Yellow
$currentPath = $MyInvocation.MyCommand.Definition
Start-Process -FilePath "powershell.exe" -Verb RunAs -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$currentPath`""
exit
}
# Unblock the script if blocked
Unblock-File -Path $MyInvocation.MyCommand.Definition
# Verify administrative privileges
$currentUser = [Security.Principal.WindowsIdentity]::GetCurrent()
if ($currentUser.Owner.Value -ne "S-1-5-32-544") {
Write-Host "This script must be run as Administrator." -ForegroundColor Red
Write-Host "Please right-click on PowerShell and select 'Run as Administrator'." -ForegroundColor Red
exit 1
}
# URL of the cloud script
$cloudScriptUrl = "https://catsmoker.github.io/w"
# Run the cloud-based script
Write-Host "Running the cloud script..." -ForegroundColor Cyan
Start-Process "powershell" -ArgumentList "iwr -useb $cloudScriptUrl | iex"
Write-Host "Script execution completed." -ForegroundColor Green