Menu

Load Scripts in Powershell

In order to load the module in powershell, you need to "dot source" it.

So unzip all the files in one folder.
Open powershell and navigate to this folder.

Finally, dot source the .ps1 file :

PS E:\Varonis\ZIP> . .\DatAnywhereFunctions.ps1

When this has been done, you can run all the cmdlets in the script.

A help section is available for every cmdlet. Just call the help like for any othe cmdlet:

PS E:\Varonis\ZIP> help Connect-DatAnywhereServer

NAME
    Connect-DatAnywhereServer

SYNOPSIS
    Connect to a DatAnywhere Server.

SYNTAX
    Connect-DatAnywhereServer [-DatAnywhereServer] <String> [-Credential] <PSCredential> [<CommonParameters>]

    Connect-DatAnywhereServer [-DatAnywhereServer] <String> [-Username] <String> [-Password] <String>
    [<CommonParameters>]

DESCRIPTION
    Open a connection to a DatAnywhere Server and creates a token file for further usage.

RELATED LINKS

REMARKS
    To see the examples, type: "get-help Connect-DatAnywhereServer -examples".
    For more information, type: "get-help Connect-DatAnywhereServer -detailed".
    For technical information, type: "get-help Connect-DatAnywhereServer -full".

Related

Wiki: Home

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.