PowerShell

PowerShell হচ্ছে মাইক্রোসফট এর তৈরি টাস্ক অটোমেশান ও কনফিগারেশান ফ্রেমওয়ার্ক। এটি দুটি অংশ নিয়ে গঠিত।

১। কমান্ড-লাইন শেল

২। স্ক্রিপ্টিং ল্যাংগুয়েজ

এটি ওপেন সোর্স ও ক্রসপ্লাটফর্ম হিসেবে তৈরি করা হয়েছে। অর্থাৎ এটি মাইক্রোসফট উইন্ডোজ ছাড়াও লিনাক্স, ম্যাক পিসিতে চলবে!

PowerShell এর উপর একটি টিউটোরিয়াল সিরিজ থাকবে পরবর্তীতে।

How to check the PowerShell version

open the PowerShell window and run the any one of the below command

$host
$host.Version
$PSVersionTable

To check Number of processors(core) in my computer.

wmic cpu get NumberOfCores,NumberOfLogicalProcessors