Site search

Search results: «PowerShell»

Found matches: 3

1️⃣ Disable Heavy Startup & Background Apps
Copy code

Powershell
taskmgr

Startup tab → Disable non-essential apps
Also:
Copy code

Powershell
Settings → Apps → Installed apps → (App) → Background app permissions → Never

2️⃣ Ultimate Performance Power Plan
Copy code

Powershell
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
Then:

Copy code

Powershell
Settings → Power & battery → Power mode → Ultimate Performance

3️⃣ Reduce Visual Effects (Huge FPS boost)
Copy code

Powershell
SystemPropertiesPerformance

Choose Adjust for best performance
(Keep Smooth fonts ON if you like)

4️⃣ Disable Core Isolation (If supported)
Copy code

Powershell
Windows Security → Device Security → Core...
🪟 WINDOWS COMMANDS CHECK – CMD & POWERSHELL CHEAT SHEET!

Master essential Windows commands for files, system checks, networking, security, performance, and more. A must-have reference for students, IT support, and system admins 💻⚙️
Create infographic with different designs from previous infographic

Windows Commands Check

📁 File & Directory Commands
Copy code
Cmd
dir # List files and folders
cd # Show current directory
cd folder # Change directory
cd .. # Go back
mkdir dir # Create folder
rmdir dir # Delete empty folder
del file # Delete file
copy a b # Copy file
move a b #...
🍎 ESSENTIAL MacOS (MacBook) TERMINAL COMMANDS

Boost your productivity and master the macOS Terminal with these key commands — from file management and system checks to networking, permissions, and PowerShell utilities 💻⚡

📁 FILE & DIRECTORY COMMANDS
Copy code
Bash
ls # List files
ls -la # Detailed + hidden files
pwd # Current directory
cd dir # Change directory
cd .. # Go back
mkdir dir # Create folder
rm file # Delete file
rm -r dir # Delete folder
cp a b # Copy file
mv a b # Move / rename

🖥️ SYSTEM CHECK COMMANDS
Copy code...