Update Naukri.com profile using Powershell
Today we are going to update naukri.com profile using Powershell .you can download from the below link #Step 1 Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser #This is set your execution policy as Unrestricted for the current user profile #Step 2 $i = Get-Process iexplore -ea silentlycontinue if ($i -ne $null) {kill $i} #The Above Script will […]