miércoles, 8 de marzo de 2017

WINDOWS. Quickly List server properties

One list of important computer commands.

COMMAND: systeminfo




COMMAND: net statistics workstation



With the "/find" paremeter you could queries




COMMAND: get-adcomputer MY_Computer_Name -properties *




COMMAND: Get-WmiObject -ComputerName MY_Computer_Name Win32_Keyboard





COMMAND: Get-ADComputer (Get-ADDomainController -Discover -Service "PrimaryDC").name -Property cn,name




by GoN | Published: March 8, 2017 | Last Updated:March 21, 2017

lunes, 6 de marzo de 2017

WINDOWS. PS. Printers

For list the Printers in your Windows Operating system you could use this command.


COMMAND: " Get-WmiObject -ComputerName LOCALhost Win32_Printer"

COMMAND: " Get-WmiObject -ComputerName LOCALhost Win32_Printer | format-table"


by GoN | Published: March 6, 2017 | Last Updated:

WINDOWS. PS. Network Adapter.

For list the Network Adapter in your Windows Operating system you could use this command.


COMMAND: "Get-WmiObject -ComputerName localhost Win32_NetworkAdapterConfiguration"


COMMAND: "Get-WmiObject -ComputerName localhost Win32_NetworkAdapterConfiguration | format-table Description, Index, IPAddress"



by GoN | Published: March 6, 2017 | Last Updated:

WINDOWS. PS. LogicalDisk and local shares

For list the Logical disk in your Windows Operating system you could use this command.


COMMAND: "
Get-WmiObject -ComputerName localhost Win32_LogicalDisk
"

COMMAND: "Get-WmiObject -ComputerName localhost Win32_LogicalDisk | format-table DeviceID, DriveType, VolumeNa
me, Size, Freespace"


LOCAL SHARES:

COMMAND:  "Get-wmiobject -ComputerName localhost Win32_Share"


by GoN | Published: March 6, 2017 | Last Updated: