Skip to content

Commit

Permalink
Merge pull request #24 from IGEL-Community/development
Browse files Browse the repository at this point in the history
added SSL/TLS support
casted properties of output
extended pipeline support
renamed functions to reflect change from usage of thinclient to device
reverted to Version 0.9.0 to indicated pro production state
added pester testing
removed SQL support
  • Loading branch information
falkheiland committed Mar 10, 2019
2 parents d276c74 + 8a40f69 commit 8d30b15
Show file tree
Hide file tree
Showing 178 changed files with 20,238 additions and 13,175 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/Drafts/*
/Drafts/*
.vscode/launch.json
Tests/Data/*
.favorites.json
63 changes: 0 additions & 63 deletions Docs/Get-EPFirmware.md

This file was deleted.

69 changes: 0 additions & 69 deletions Docs/Get-EPUpdateConfiguration.md

This file was deleted.

88 changes: 0 additions & 88 deletions Docs/Get-EPWifiConnection.md

This file was deleted.

73 changes: 73 additions & 0 deletions Docs/Get-OSFirmware.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
external help file: PSIGEL-help.xml
Module Name: PSIGEL
online version:
schema: 2.0.0
---

# Get-OSFirmware

## SYNOPSIS
Gets firmware from a device.

## SYNTAX

```
Get-OSFirmware [-SSHSession] <Object> [<CommonParameters>]
```

## DESCRIPTION
Gets firmware from a device via Posh-SSH.

## EXAMPLES

### Example 1

Get firmware from device with name V10-01:

```powershell
$Params = @{
ComputerName = 'V10-01'
Credential = Get-Credential
AcceptKey = $true
}
$SSHSession = New-SSHSession @Params
Get-OSFirmware -SSHSession $SSHSession
Version
-------
10.05.500.01
```

## PARAMETERS

### -SSHSession
Posh-SSH SSHSession

```yaml
Type: Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
```
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### System.Object
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS
77 changes: 77 additions & 0 deletions Docs/Get-OSUpdateConfiguration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
external help file: PSIGEL-help.xml
Module Name: PSIGEL
online version:
schema: 2.0.0
---

# Get-OSUpdateConfiguration

## SYNOPSIS
Gets firmware from a device.

## SYNTAX

```
Get-OSUpdateConfiguration [-SSHSession] <Object> [<CommonParameters>]
```

## DESCRIPTION
Gets update configuration from a device via Posh-SSH.

## EXAMPLES

### Example 1

Get update configuration from device with name V10-01:

```powershell
$Params = @{
ComputerName = 'V10-01'
Credential = Get-Credential
AcceptKey = $true
}
$SSHSession = New-SSHSession @Params
Get-OSUpdateConfiguration -SSHSession $SSHSession
Host : V10-01
Protocol : http
Hostname : igelrmserver
Port : 9080
Username : igelums
Password : 0009330f34121a177eb62d
Path : ums_filetransfer/IGEL_Universal_Desktop_LX-10.05.500
```

## PARAMETERS

### -SSHSession
Posh-SSH SSHSession

```yaml
Type: Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
```
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### System.Object
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS
Loading

0 comments on commit 8d30b15

Please sign in to comment.