
How to Kill a Windows Process Remotely using PowerShell?
You may want to kill a Windows Process on a remote computer for many reasons. Thanks to PowerShell, this task can be performed easily using Read More
You may want to kill a Windows Process on a remote computer for many reasons. Thanks to PowerShell, this task can be performed easily using Read More
When you deploy a new KMS server in order to replace your existing KMS server, you will need to update the “_VLMCS” DNS record. But you Read More
PowerShell can help you to protect against Petya Ransomware by creating the perfc file automatically.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
PS > New-Item C:\Windows\perfc -Type File -Force Directory: C:\Windows Mode LastWriteTime Length Name ---- ------------- ------ ---- -a---- 07/02/2017 15:31 0 perfc PS > "Do not remove this file" | Out-File -Append "C:\Windows\perfc" PS > Set-ItemProperty C:\Windows\perfc -name IsReadOnly -value $true |
Output: Please perform the same steps for Read More
You are building an application with PowerShell Studio, and this App has many textboxes in your form. Now, when you press “TAB”, you notice that Read More
Windows stores the commands that you have executed from the Run window in the registry. It means that you can easily clear this history. Click Read More
Have you ever desperately looked for a PowerShell command that you typed and not saved… Well great news! PowerShell has a big memory and it Read More
If you often work with PowerShell Studio from SAPIEN, you will create some GUI with PowerShell. You will probably get the following issue: You have Read More
The PSReadline module contains cmdlets that let you customize the command-line editing environment in Windows PowerShell. The module is a part of PowerShell 5. PSReadLine Read More
Since Windows PowerShell version 5, Microsoft has implemented a new way to directly manage your virtual machines without network connectivity. PowerShell Direct has been introduced Read More
The Start-Process cmdlet starts one or more processes on the local computer. So I can easily open a text file using the following command:
1 |
PS > Start-Process notepad.exe C:\Temp\TextFile.txt |