Filter By

Package Types

Operating System

Categories

Trust Information

By: | 259 downloads | Last Updated: 11/21/2023 | Latest Version: 0.2.0

Apteco PS Modules - Framework This module allows Apteco, partners and customers to develop their own integrations. This framework brings lots of useful features with it like - Logging + Send information to Orbit UI - Standardised settings management saved in json files - Update upward compatibility when there are new features and setting pos... More info

By: | 279 downloads | Last Updated: 8/22/2023 | Latest Version: 0.9.8

Apteco PS Modules - PowerShell logging script Execute commands like Write-Log -message "Hello World" Write-Log -message "Hello World" -severity ([LogSeverity]::ERROR) "Hello World" | Write-Log The logfile getting written looks like 20210217134552 a6f3eda5-1b50-4841-861e-010174784e8c INFO Hello World 20210217134617 a6f3eda5-1b50-4841-... More info

By: | 191 downloads | Last Updated: 11/3/2022 | Latest Version: 0.9.0

Apteco PS Modules - PowerShell functions extension This function helps to gather all parameters that a function/cmdlet has except the common parameters like -verbose etc. This can be used to extend existing functions/cmdlets with more scripting and possibly additional parameters. So in this example you see how it works ```PowerShell ... More info

By: | 156 downloads | Last Updated: 10/5/2023 | Latest Version: 0.1.0

Apteco PS Modules - PowerShell security encryption module Execute commands like "Hello World" | Convert-PlaintextToSecure to get a string like 76492d1116743f0423413b16050a5345MgB8AEEAYQBmAEEAOABPAEEAYQBmAEYAKwBuAGQAegBxACsASQBRAGIAaQA0AEEAPQA9AHwANAAxAGEAYQBhADAAYwA3ADQAYwBiADkAYwAzADEAZgBkAGUAZQBkADQAOABhADIAMgA5AGUAMAAyADkANwBiADcAMQA... More info

By: | 97 downloads | Last Updated: 11/2/2022 | Latest Version: 0.0.1

Apteco PS Modules - PowerShell unix timestamp conversion Converts a [DateTime] into a numeric unix timestamp as [UInt64] and vice versa. To get a unix timestamp from a [DateTime]::Now or (Get-Date) just do it like in these examples Get-Unixtime Get-Unixtime -InMilliseconds Get-Unixtime -InMilliseconds -Timestamp ( Get-Date ).AddDays(-2) ... More info

By: | 87 downloads | Last Updated: 10/13/2023 | Latest Version: 0.0.7

Apteco PS Modules - PowerShell oAuth Support of oAuth v2 in PowerShell! This module allows the oAuth flow to create your first api token for Microsoft Dynamics, Salesforce, CleverReach and much more... We support redirect urls to local urls `http://localhost:54321` and app urls (handled via registry) `apttoken://localhost`. The local url is ins... More info

By: | 87 downloads | Last Updated: 10/30/2023 | Latest Version: 0.9.1

Apteco PS Modules - PowerShell file rows count Just use Measure-Rows -Path "C:\Temp\Example.csv" or "C:\Temp\Example.csv" | Measure-Rows -SkipFirstRow or Measure-Rows -Path "C:\Temp\Example.csv" -Encoding UTF8 or even "C:\Users\Florian\Downloads\adressen.csv", "C:\Users\Florian\Downloads\italian.csv" | Measure-Rows -SkipFirs... More info

By: | 86 downloads | Last Updated: 8/18/2023 | Latest Version: 0.0.3

Apteco PS Modules - PowerShell merge Hashtable This module merges two hashtables into one. It is able to handle nested structures like hashtables, arrays and PSCustomObjects. Please see the examples below. Just use ```PowerShell $left = [hashtable]@{ "firstname" = "Florian" "lastname" = "Friedrichs" "address" = [hashtable]@... More info

By: | 76 downloads | Last Updated: 8/18/2023 | Latest Version: 0.0.2

Apteco PS Modules - PowerShell merge PSCustomObject This module merges two PSCustomObjects into one. It is able to handle nested structures like hashtables, arrays and PSCustomObjects. Please see the examples below. Just use ```PowerShell $left = [PSCustomObject]@{ "firstname" = "Florian" "lastname" = "Friedrichs" "address"... More info

By: | 75 downloads | Last Updated: 11/24/2023 | Latest Version: 0.0.7

Apteco PS Modules - PowerShell Notify This module allows you to trigger messages via email, Telegram, Slack and Teams. You can use the channels separated from each other or combined as a group, when you want to inform via multiple different channels.

By: | 72 downloads | Last Updated: 11/9/2023 | Latest Version: 0.0.3

Apteco PS Modules - PowerShell String Conversion Multiple functions to convert strings, e.g. to change the encoding or to hash a string - Replace-Tokens - Get-StringHash - Convert-StringEncoding - Get-RandomString Please have a look at the help of the functions for more information or the github repository

By: | 55 downloads | Last Updated: 11/22/2023 | Latest Version: 0.2.1

This script is used to switch off or switch on some data sources in FastStats Designer to allow a build with only a few tables (like customer data) and then later do a bigger build with customer and transactional data. This example just changes the behaviour of the extract options and saves it in the same xml SyncExtractOptions -DesignFile "C:\Ap... More info

By: | 53 downloads | Last Updated: 11/14/2023 | Latest Version: 0.0.6

Apteco PS Modules - Wrapper for SimplySQL

By: | 37 downloads | Last Updated: 11/16/2023 | Latest Version: 0.0.5

Apteco PS Modules - OpenStreetMaps Geocoding - Geocode your addresses through OpenStreetMaps - Much more to follow... Your help is appreciated. Just contact me.

By: | 28 downloads | Last Updated: 10/5/2023 | Latest Version: 0.0.1

Apteco PS Modules - PowerShell Credentials Test This module tests your credentials like # Interactive mode -> this one requests your user and password, uses the current user as default Test-Credential # Define User and password beforehand $c = Get-Credential Test-Credential -Credentials $c OR $c = Get-Credential Test-Credential -... More info

By: | 19 downloads | Last Updated: 8/24/2023 | Latest Version: 0.0.1

Apteco PS Modules - PowerShell WebRequest UTF8 Helpful function for APIs, that return UTF8 encoded content, but PowerShell does not recognize it as UTF8 encoded. So it reads the content and converts it from the [Console]::OutputEncoding.HeaderName to UTF8.