Git Product home page Git Product logo

Comments (5)

J0rtIT avatar J0rtIT commented on August 23, 2024

The problem is that you want to get the information from a remote computer using a single script, this script would require adaptation, but in short, this would be the answer:

$username ="your domain login" #2 
$Password= "ThePassword" #domain admin pwd
$UserCredential = New-Object pscredential -ArgumentList $username, (  ConvertTo-SecureString -String $Password -AsPlainText -Force)
$computers = Get-ADComputer  -Filter * | where{ $_.Enabled -eq $true}

Invoke-Command -ComputerName $Computer -Credential $UserCredential -ScriptBlock $(Get-content .\thisscript.ps1)

from misc-powershell-scripts.

Clampco avatar Clampco commented on August 23, 2024

Thank you for your response. I'm still not sure what's wrong. when I run the script I just get a blank screen and it closes out. I hope I put your commands in the right place.

from misc-powershell-scripts.

J0rtIT avatar J0rtIT commented on August 23, 2024

Yes because the $computer var is empty

$username ="your domain login" #2 
$Password= "ThePassword" #domain admin pwd
$UserCredential = New-Object pscredential -ArgumentList $username, (  ConvertTo-SecureString -String $Password -AsPlainText -Force)
$computers = Get-ADComputer  -Filter * | where{ $_.Enabled -eq $true}

foreach($computer in $computers){
    Invoke-Command -ComputerName $Computer -Credential $UserCredential -ScriptBlock $(Get-content .\thisscript.ps1)
}

from misc-powershell-scripts.

Clampco avatar Clampco commented on August 23, 2024

I'm sorry I'm a noob with power shell. Where does $computer var go? It's very obvious where the domain login goes, but I'm unsure about the computer name.

from misc-powershell-scripts.

J0rtIT avatar J0rtIT commented on August 23, 2024

Computers are filled using the active directory cmdlet Get-adcomputer on the domain controller :)

from misc-powershell-scripts.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.