Things to know before admitting your kids to school

Here are few things that you must know or take care of before admitting your kids to school. If you are not taking care of these things, you might be putting you children to wrong school, risking life. Only irresponsible parents do this mistake who all do not love their children or one who are not serious about their children or one who are uneducated. So, let me guide you to few thins that you need to take care of before admitting your children to school. 1. See if school is registered to local registerer (respective government). 2. Check the classroom, bathroom, playground, kitchen, it needs to be clean. 3. Sit in the classroom for 5 to 10 min., see how they lecture children. 4. Check the school fee, other fee, transportation fee, see if you can afford. 5. Check the food they fed to children, how many times, they give food to children. 6. Check the school duration, start and end time, usually for children 4 to 8 hours, see for how long your student can sit in class. 7. Ask for holida...

How to Shut Down a Task or Event using PowerShell

In PowerShell, the Stop-Process cmdlet is used to stop one or more running processes on a Windows system. The syntax for the Stop-Process cmdlet is as follows:


Stop-Process [-Name] <String[]> [-Force] [-WhatIf] [-Confirm] [-PassThru] [-ErrorAction <ActionPreference>] [-WarningAction <ActionPreference>] [-InformationAction <ActionPreference>] [-ErrorVariable <String>] [-WarningVariable <String>] [-OutVariable <String>] [-OutBuffer <Int32>]


Where,

  • -Name: Specifies the name of the process or processes to be stopped. This can be a single process name or an array of process names.
  • -Force: Specifies that the process should be forcibly terminated. This can result in data loss or other issues, so use with caution.
  • -WhatIf: Specifies that the cmdlet should not actually stop any processes, but instead show what would happen if the cmdlet were to run.
  • -Confirm: Prompts the user to confirm before stopping any processes.
  • -PassThru: Specifies that the cmdlet should return an object representing the stopped process or processes.
  • -ErrorAction, -WarningAction, -InformationAction: Specifies how the cmdlet should handle error, warning, and information messages.
  • -ErrorVariable, -WarningVariable, -OutVariable: Specifies variables to which error, warning, and output messages should be redirected.
  • -OutBuffer: Specifies the number of objects to buffer before sending them to the next cmdlet. 
For example, to stop a process named "notepad.exe", the following command could be used: Stop-Process -Name notepad.exe

How to stop a process named "notepad.exe", the following command could be used: Stop-Process -Name notepad.exe


This would stop all instances of the "notepad.exe" process currently running on the system. If multiple instances of the process were running, the cmdlet would stop all of them. If the -PassThru parameter were also specified, the cmdlet would return an object representing the stopped process or processes.


Popular posts from this blog

Top international payment gateway transaction fee comparison (2024)

How to Manage Boot Configuration of Windows using CMD

What is Python Syntax and how to use?