Protected: Update AD user Properties
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
We can use PowerShell to test remote port connectivity without installing telnet and with the use of the Test-NetConnection command. To check if the remote […]
foreach($d in (get-adforest).domains){$v = Measure-Command {get-addomaincontroller -Filter * -Server $d}Write-Output “Took $($v.TotalSeconds) to Enumerate DCS in $d “}
Get Password Policy for all domains in a forest.. (Get-ADForest).domains | %{Get-ADDefaultDomainPasswordPolicy -Identity $_ } | Select-Object * | Export-Csv -Path C:\Reports\DefaultPasswordPolicy-All.csv -NoTypeInformation Having […]
How do I manually connect my Windows or Windows Server device to the KMS activation server? Right Click on the Start menu and select Command Prompt (Admin) Run […]
Create .csv file with column name “Computername” $servers = import-csv C:\Temp\servers.csv $comps = ($servers).ComputerName $comps | %{ New-Item -ItemType Directory -Force \\$PSItem\c$\Temp; Copy-Item C:\Temp\Delprof \\$PSItem\c$\Temp\Delprof […]
We need DHCP PowerShell cmdlet to be available in order to manage DHCP. By default, the DHCP module is not loaded in PowerShell. We need […]
Windows Operating System 6.5 6.0 U2 6.0 U1 6.0 5.5 U3 5.5 U2 5.5 U1 5.5 5.1 U3 5.1 U2 5.1 U1 5.1 5.0 U3 […]
Connect to Vcenter Connect-viserver vc.abc.com Stop-VM -VM (gc C:\Temp\serverlist.txt) -Confirm:$false
There is no excerpt because this is a protected post.
Copyright © 2025 | WordPress Theme by MH Themes