Get-Cluster
-----------
get-clusternetwork
get-clustergroup
get-clusterresource
get-clusternode
Note: for Win 2008 the ps module is not present. Run:
import-module failoverclusters
GENERATE CLUSTER LOGS
----------------------
In CMD run:
cluster log /g
Generate logs in \windows\cluster\reports in each node.
In PoweShell run:
get-clusterlog
Local users and groups - management:
lusrmgr.msc
Computer Management:
compmgmt.msc
Editor de polĂticas de grupo (gpedit):
gpedit.msc
RUN Active Directory Users and Computers (ADUC):
DSA.MSC
Event Viewer:
eventvwr.msc
SFC
----
sfc /scannow
It will scan all protected system files and replace corrupted files with a cached copy.
DISM
----
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
Online /Cleanup-Image /RestoreHealth
DISM MOUNTING WINDOWS ISO
-------------------------
DISM /Online /Cleanup-Image /RestoreHealth /Source:E:\Sources\install.wim
Steps:
https://www.windowscentral.com/how-use-dism-command-line-utility-repair-windows-10-image
systeminfo
Get-ComputerInfo (PowerShell)
ComputerInfo -Property "bios*"
change PROPERTIES-NAME for the details you want to review.
This example shows everything regarding the BIOS information:
Get-ComputerInfo -Property "bios*"
Quick note:
The asterisk (*) in the command is a wildcard to match every property that starts with BIOS.