Skip to content

PowerShell module for interacting with Citrix NetScaler via the Nitro API

License

Notifications You must be signed in to change notification settings

VirtualEngine/NetScaler

 
 

Repository files navigation

Build status

NetScaler

PowerShell module for interacting with Citrix NetScaler via the Nitro API

Getting started

This script establishes a session with the Netscaler instance and sets its hostname:

    $Nsip, $Username, $Password = "1.2.3.4", "nsroot", "nsroot"
    
    $SecurePassword = ConvertTo-SecureString $Password -AsPlainText -Force
    $Credential = New-Object System.Management.Automation.PSCredential ($Username, $SecurePassword)

    $Session =  Connect-Netscaler -Hostname $Nsip -Credential $Credential -PassThru
    
    Set-NSHostname -Hostname ns01 -Force -Session $Session

About

PowerShell module for interacting with Citrix NetScaler via the Nitro API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PowerShell 100.0%