About Me

My photo
HANUMANGARH, RAJASTHAN, India

Saturday 14 May 2022

Get Installed Software Detail in remote host

 $Computers= Get-Content C:\Users\su-skumar\Desktop\servers.txt


ForEach ($Computer in $Computers){

    Get-WmiObject -Class Win32_Product -ComputerName $Computer  | where Name -eq "CrowdStrike Sensor Platform" -ErrorAction Stop |

        Select-Object -Property @{N='Computer';E={$Computer}},Name,Version |

        Export-Csv "C:\progrms.csv" -Append

}


Export contact from Justdial

  Extract Data From JustDial using Selenium Let us see how to extract data from Justdial using Selenium and Python. Justdial is a company th...