With Powershell you can easily start or stop specific windows services depending on current status. An example is starting the VMWare Services only if they are currently stopped. The command get-service list all windows service with their status, short – and display name. Create a new File startVMWare.ps1 and paste the following foreach ($svc in [...]
Continue reading about Start and stop windows services with powershell scripts
Windows command line scripts was for a long time the only way for scripting windows. With the Windows PowerShell you have can write scripts more like an program in object oriented way. Starting with Windows 7 it is preinstalled with version 2.0 but can as well installed under Windows XP or Vista. Windows 8 will [...]
Continue reading about Howto run self signed powershell scripts