loading...

Script.ps1 [FREE]

# script.ps1 # Simple script to greet the user and check system resources Clear-Host $CurrentTime = Get-Date -Format "HH:mm" Write-Host "Hello! It is currently $CurrentTime." -ForegroundColor Cyan Write-Host "`nTop 5 Memory-Intensive Processes:" -ForegroundColor Yellow Get-Process | Sort-Object WorkingSet64 -Descending | Select-Object -First 5 | Format-Table Name, @Label="Memory (MB)"; Expression=[math]::Round($_.WorkingSet64 / 1MB, 2) Use code with caution. Copied to clipboard

: Open a text editor like Notepad or Visual Studio Code , paste the code above, and save it as script.ps1 . script.ps1

: By default, Windows may block scripts for security. To allow them, open PowerShell as an Administrator and run: Set-ExecutionPolicy RemoteSigned # script

: Navigate to your folder in PowerShell and type: .\script.ps1 Expression=[math]::Round($_.WorkingSet64 / 1MB

Äàííûé ñàéò ñîäåðæèò ìàòåðèàëû ýðîòè÷åñêîãî õàðàêòåðà. Ïðîñìàòðèâàÿ ãîëûõ äåâóøåê, Âû ïîäòâåðæäàåòå ñâîå ñîâåðøåííîëåòèå (18+).
Âñå ôîòîãðàôèè íàõîäÿòñÿ â îòêðûòîì äîñòóïå. Âñå ïðàâà íà ôîòî è òåêñòû ïðèíàäëåæàò èõ àâòîðàì.

script.ps1