Hello,
You can modify maximum computer password age with GPO :
Continue reading
Hello,
You can modify maximum computer password age with GPO :
Continue reading
Hello,
You can check if your computer will reboot automaticly on BSOD with that PowerShell line :
Continue reading
Hello,
As you may already know, Windows XP end of support is coming. Microsoft released a KB to warn users :
Hello,
I think you all know that, but PowerShell gives us a nice way to explore registry :
Hello,
When you need to do something in PowerShell, there are a lot of way to do that, hereunder a way of querying a remote computer registry key :
$PSExecutionPolicy=[Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey("LocalMachine","Computer1") $PSExecutionPolicyKey=$PSExecutionPolicy.OpenSubKey("SOFTWAREMicrosoftPowerShell1ShellIdsMicrosoft.PowerShell") $PSExecutionPolicyKey.GetValue("ExecutionPolicy")
This example will retrieve the PowerShell execution policy of the computer “Computer1”.