50 How To Windows 11 + PowerShell (IT System Admin) 4.7 (12)

SISTEMA & INFO 1. Come vedere versione Windows 2. Come vedere build OS 3. Come ottenere info hardware 4. Come vedere CPU 5. Come vedere RAM UTENTI & ACCOUNT 6. Come vedere utenti locali 7. Creare utente locale 8. Aggiungere utente a gruppo admin 9. Disabilitare utente 10. Reset password utente FILE & SISTEMA FILE 11. Mostrare file nascosti 12. Cercare file 13. Eliminare file 14. Creare cartella 15. Spazio disco DISCO & STORAGE 16. Stato dischi 17. Partizioni 18.…

Toolkit PowerShell completo da sistemista Windows 11. 4.6 (12)

<#Windows 11 Admin ToolkitAuthor: System Admin ToolkitPurpose: Unified PowerShell toolkit for Windows 11 administration, troubleshooting, and inventory > region BASIC SYSTEM INFO function Get-SystemInfo {Get-ComputerInfo | Select-Object WindowsProductName, WindowsVersion, OsHardwareAbstractionLayer, CsSystemType, CsTotalPhysicalMemory} function Get-CPUInfo {Get-CimInstance Win32_Processor | Select-Object Name, NumberOfCores, NumberOfLogicalProcessors, MaxClockSpeed} function Get-RAMInfo {Get-CimInstance Win32_PhysicalMemory | Select-Object Capacity, Speed, Manufacturer} endregion region USERS MANAGEMENT function Get-LocalUsers {Get-LocalUser} function New-AdminUser {param([string]$Username)$Password = Read-Host “Enter Password” -AsSecureStringNew-LocalUser -Name $Username -Password $Password -FullName $Username -Description “Created by Admin Toolkit”Add-LocalGroupMember -Group “Administrators” -Member…

Mini Toolkit completo per Windows 11 4.3 (4)

============================== WINDOWS 11 ADMIN TOOLKIT ============================== Auto-elevazione if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] “Administrator”)) {Start-Process powershell “-ExecutionPolicy Bypass -File "$PSCommandPath“” -Verb RunAsexit} Logging $LogFile = “$env:USERPROFILE\Desktop\Toolkit_Log.txt”function Write-Log {param([string]$msg)$time = Get-Date -Format “yyyy-MM-dd HH:mm:ss”“$time – $msg” | Out-File -Append $LogFile} Write-Log “Toolkit avviato” ============================== SYSTEM INFO ============================== function Get-SystemInfo {Write-Host “=== SYSTEM INFO ===”Get-ComputerInfo | Select-Object OSName, WindowsVersion, CsName} ============================== HEALTH CHECK ============================== function Invoke-HealthCheck {Write-Host “=== HEALTH CHECK ===”sfc /scannowDISM /Online /Cleanup-Image /RestoreHealth} ============================== WINDOWS UPDATE ============================== function Invoke-WindowsUpdate {Install-Module PSWindowsUpdate -Force…

Windows 11 ad Aprile – Maggio 2026: cosa è cambiato davvero 4.9 (12)

Prefazione Se lavori ogni giorno con Windows 11, lo sai bene: gli aggiornamenti non sono mai “solo aggiornamenti”. Dietro una patch apparentemente banale si nascondono modifiche che possono migliorare la stabilità… oppure creare nuovi comportamenti da gestire. Aprile è stato uno di quei mesi in cui molti sistemisti si sono ritrovati a chiedersi: “Ma cosa è cambiato davvero?”. Non tanto per curiosità, ma per necessità. Perché quando un utente ti segnala un comportamento strano, oppure quando una policy smette improvvisamente…