fbpx

PowerShell

In this section, you can see the training provided in Windows PowerShell. Please help us improve these tutorials by adding a comment.

PowerShell

PowerShell (Install Calculator)

PowerShell (Install Calculator) To install the Windows 10 calculator using PowerShell, you can follow these steps: Open PowerShell : Press the Windows key, type “PowerShell,” and click on “Windows PowerShell” in the search results. Make sure to run PowerShell as an administrator. Run the following command to install the Windows Calculator app from the Microsoft Store: PowerShell code: Get-AppxPackage -Name Microsoft.WindowsCalculator | Add-AppxPackage   Wait for the command to execute. It will download and install the Windows Calculator app from the Microsoft Store. Once the installation is complete, you can close PowerShell. After following these steps, you should have the…
PowerShell

PowerShell (Shutdown-Restart)

PowerShell (Shutdown-Restart) PowerShell is a platform that consists of a command line, a programming language, and a configuration manager. You can run it on Windows, Linux, and MacOS. With it, we can do the things that we do graphically in Windows with the command line. in this learning, we want to know, how we can use Shut down or Restart computer by command. let’s start PowerShell (Shutdown-Restart). First, we open it from the Start menu. This command will shut down computer as Force without any confirmation: when we use this command, system will shut down without any confirmation, this command…
PowerShell

PowerShell (DNS Record)

PowerShell (DNS Record) How to check DNS records on domain by PowerShell? To check the DNS records of a domain using PowerShell, you can use the Resolve-DnsName cmdlet. Here’s how you can do it: Open PowerShell: Launch PowerShell by searching for “PowerShell” in the Start menu or by pressing Win + X and selecting “Windows PowerShell” open “Windows PowerShell (Admin)”. Run the command: In the PowerShell window, run the following command: Powershell code: Resolve-DnsName -Name example.com Replace “example.com” with the actual domain you want to check. This command will query the DNS records for the specified domain. View the results:…
keyboard_arrow_up