Tuesday, April 24, 2018

Powershell-Command to Copy data from one location to another

Command to Copy data from one location to another

Copy-Item \\server11\c$\temp\test.exe -Destination \\server12\c$\ -ErrorAction silentlycontinue




Regards
Bijesh

Command to get "Password last set,Last logon " Dates for a local User account

Command to get "Password last set,Last logon " Dates for a local User account

For Local System Account,

Net user <Username>

For Domain User Account ,

Net User <Username>  /Domain




Regards
Bijesh

Sunday, April 22, 2018

Command to list all drivers details in a system

Driver query is a simple Command to list all drivers details in a system.



Regards
Bijesh

Wednesday, April 18, 2018

Command to enable-ping-response-on-windows

netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow

Regards
Bijesh

Powershell -To get List of Windows servers from Active Directory

Get-ADComputer -Filter { OperatingSystem -Like '*Windows Server*' } -Properties OperatingSystem | Select Name,OperatingSystem 


Regards
Bijesh

Vmware launched VMware vSphere 6.7

https://blogs.vmware.com/vsphere/2018/04/introducing-vmware-vsphere-6-7.html

Regards
Bijesh